/* ============================================================
   GLOBAL PLATINUM REALTY — DESIGN SYSTEM
   Global Platinum Realty Inc., Brokerage · Cambridge, Ontario

   Single source of truth for the site's visual language.
   Load once, site-wide. Do not redefine tokens in page CSS.

   Brand blue #016FD1 sampled directly from GPR_Main_logo.png.
   Neutrals are tuned cool to sit with that blue — do not
   substitute warm greys or creams, they fight it.
   ============================================================ */

/* ---------- 1. TOKENS ------------------------------------- */
:root {
  /* Brand */
  --gpr-blue:        #016FD1;   /* logo blue — primary action, accent */
  --gpr-blue-dk:     #01528F;   /* hover / pressed */
  --gpr-blue-lt:     #3E93E0;   /* accents on dark backgrounds */
  --gpr-blue-wash:   #EAF3FC;   /* callouts, tint fills */

  /* Neutrals — cool, tuned to the blue */
  --ink:             #0C1319;   /* darkest surface, body text */
  --slate:           #16242F;   /* secondary dark surface */
  --steel:           #33495A;   /* tertiary surface, muted text */
  --mist:            #DCE3E9;   /* text on dark, light surface */
  --paper:           #F7F8FA;   /* page background */
  --white:           #FFFFFF;

  /* Lines */
  --line:            rgba(12, 19, 25, .13);   /* on light */
  --line-dk:         rgba(220, 227, 233, .16); /* on dark */

  /* Type families */
  --font-display: "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
  --font-body:    "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Type scale — fluid, clamped */
  --fs-h1:     clamp(2.2rem, 5.4vw, 4.4rem);
  --fs-h2:     clamp(1.75rem, 3.6vw, 2.9rem);
  --fs-h3:     1.14rem;
  --fs-lede:   clamp(1.04rem, 1.4vw, 1.24rem);
  --fs-body:   1.0625rem;   /* 17px */
  --fs-small:  .9rem;
  --fs-micro:  .82rem;
  --fs-label:  10.5px;      /* mono labels / eyebrows */

  /* Spacing */
  --pad:       clamp(20px, 5vw, 72px);   /* page gutter */
  --sec-y:     clamp(56px, 7vw, 112px);  /* section rhythm */
  --gap:       14px;                     /* panel gap */
  --max:       1320px;

  /* Motion */
  --t-fast: .18s;
  --t-med:  .28s;
}

/* ---------- 2. RESET / BASE ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

/* Visible focus is a floor requirement, not an option */
:focus-visible {
  outline: 2px solid var(--gpr-blue);
  outline-offset: 3px;
}

/* Skip link for keyboard and screen-reader users */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gpr-blue); color: #fff; padding: .8rem 1.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  text-decoration: none;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 3. TYPOGRAPHY -------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.028em;
  margin: 0;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -.01em; line-height: 1.22; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* Eyebrow — mono, uppercase. Labels a section. Never decorative. */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gpr-blue);
  margin: 0;
}
.on-dark .eyebrow, .u-dark .eyebrow { color: var(--gpr-blue-lt); }

.lede { font-size: var(--fs-lede); line-height: 1.55; font-weight: 300; }
.small { font-size: var(--fs-small); }
.micro { font-size: var(--fs-micro); }

/* Pull quote — the one typographic flourish. Use once per page, max. */
.pull {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.24;
  letter-spacing: -.02em;
  border-left: 3px solid var(--gpr-blue);
  padding-left: 1.25rem;
  margin: 1.8rem 0;
  max-width: 34ch;
}

/* Signature line — attribution under prose */
.sig {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .6;
}

/* ---------- 4. LAYOUT ------------------------------------ */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec-y); }
.section--flush { padding-block: 0; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.u-dark .rule { background: var(--line-dk); }

/* Surface modifiers — set background + text together, never separately */
.u-paper { background: var(--paper); color: var(--ink); }
.u-mist  { background: var(--mist);  color: var(--ink); }
.u-steel { background: var(--steel); color: var(--mist); }
.u-slate { background: var(--slate); color: var(--mist); }
.u-ink   { background: var(--ink);   color: var(--mist); }
.u-blue  { background: var(--gpr-blue); color: #fff; }

/* Section header. .hdr--wide puts an action button on the right. */
.hdr { max-width: 56ch; margin-bottom: clamp(26px, 3.2vw, 48px); }
.hdr h2 { margin: .55rem 0 .85rem; }
.hdr--wide {
  max-width: none; display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem; flex-wrap: wrap;
}
.hdr--wide > div { max-width: 56ch; }

/* Two-column split */
.split { display: grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap: clamp(28px, 4vw, 68px); align-items: start; }
.split--wide-left  { grid-template-columns:minmax(0,1.35fr) minmax(0,.65fr); }
.split--wide-right { grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); }
@media (max-width: 860px) {
  .split, .split--wide-left, .split--wide-right { grid-template-columns:minmax(0,1fr); }
}

/* Auto-fill grids. Set --min to change card width. */
.grid { display: grid; gap: clamp(14px, 1.8vw, 24px); grid-template-columns: repeat(auto-fill, minmax(var(--min, 260px), 1fr)); }
.grid--tight { gap: clamp(12px, 1.5vw, 20px); }

/* Hairline panel grid — 1px gaps read as rules, not gutters */
.panels { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.u-dark .panels, .panels--dark { background: var(--line-dk); border-color: var(--line-dk); }
.panels > * { background: var(--paper); padding: clamp(20px, 2.6vw, 32px); }
.panels--dark > * { background: var(--ink); }

/* ---------- 5. LOGO LOCKUP ------------------------------- */
/* Replace .logo__gpr with the real SVG once the dark variant exists.
   The blue square mirrors the mark in GPR_Main_logo.png. */
.logo { display: inline-block; text-decoration: none; line-height: .85; }
.logo__gpr {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);   /* masthead scale — reads as a brand, not a label */
  letter-spacing: -.035em; line-height: .95;
}
.logo__sq {
  width: 13px; height: 13px; background: var(--gpr-blue);
  display: inline-block; margin-left: .5rem;
}
.logo__tag {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gpr-blue); font-weight: 500; margin-top: 7px;
}
.u-dark .logo__tag { color: var(--gpr-blue-lt); }

/* ---------- 6. PLAQUE ------------------------------------ */
/* Signature device. Carries the registered brokerage name and RECO
   registration — turns a TRESA disclosure requirement into brand texture.
   Inherits currentColor so it works on any surface. */
.plaque {
  display: inline-block;
  border: 1px solid currentColor;
  padding: .65rem .9rem;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.85;
}
.plaque b { font-weight: 500; display: block; }
.plaque span { opacity: .62; display: block; }

/* ---------- 7. BUTTONS ----------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  padding: .86rem 1.55rem;
  text-decoration: none;
  border: 1.5px solid var(--gpr-blue);
  background: var(--gpr-blue);
  color: #fff;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn:hover { background: var(--gpr-blue-dk); border-color: var(--gpr-blue-dk); }

.btn--ghost { background: transparent; color: var(--gpr-blue); }
.btn--ghost:hover { background: var(--gpr-blue); color: #fff; }

/* On dark surfaces */
.btn--onDark { border-color: var(--mist); background: transparent; color: var(--mist); }
.btn--onDark:hover { background: var(--mist); color: var(--ink); }

/* On the blue surface */
.btn--onBlue { border-color: #fff; background: #fff; color: var(--gpr-blue); }
.btn--onBlue:hover { background: transparent; color: #fff; }

.btn--sm { padding: .62rem 1.1rem; font-size: .82rem; }
.btn-row { display: flex; gap: .7rem; flex-wrap: wrap; }

/* ---------- 8. NAVIGATION -------------------------------- */
/* Legal bar. Carries the registered name at the top of every page. */
.legalbar {
  background: var(--ink); color: var(--mist);
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .13em; text-transform: uppercase;
}
.legalbar .wrap {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  justify-content: space-between; padding-block: .8rem;
}
.legalbar a { text-decoration: none; opacity: .72; }
.legalbar a:hover { opacity: 1; }
.legalbar__hiring { color: var(--gpr-blue-lt); opacity: 1; }

.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 250, .94);
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(8px);
}
.nav .wrap { display: flex; align-items: center; gap: 2rem; padding-block: 1.35rem; }
.nav__links {
  display: flex; gap: 1.4rem; margin-left: auto;
  list-style: none; padding: 0; margin-block: 0; align-items: center;
}
.nav__links a {
  text-decoration: none; font-family: var(--font-display);
  font-weight: 600; font-size: .95rem;
  padding-bottom: 2px; border-bottom: 1.5px solid transparent;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { border-color: var(--gpr-blue); }
.nav__cta a {
  border: 1.5px solid var(--gpr-blue); padding: .5rem 1rem;
  background: var(--gpr-blue); color: #fff;
}
.nav__cta a:hover { background: var(--gpr-blue-dk); border-color: var(--gpr-blue-dk); }

/* Mobile menu toggle — hidden on desktop */
.nav__toggle { display: none; margin-left: auto; background: none; border: 1.5px solid var(--line);
  padding: .55rem .8rem; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer; color: var(--ink); }
@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1.2rem var(--pad); gap: 1rem; margin-left: 0;
  }
}

.crumbs {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .13em;
  text-transform: uppercase; opacity: .55; padding-block: 1rem 0;
}
.crumbs a { text-decoration: none; }

/* ---------- 9. MEDIA / PLACEHOLDERS --------------------- */
/* .ph is a build-time placeholder. data-shot names the required shot,
   so the markup doubles as the photography brief.
   DELETE the ::before rule before launch — the QA checklist covers it. */
.media { position: relative; overflow: hidden; background: var(--mist); }
.media > img { width: 100%; height: 100%; object-fit: cover; }

.ph {
  position: relative; overflow: hidden; max-width: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(1,111,209,.07) 0 12px, transparent 12px 24px),
    var(--mist);
  border: 1px solid var(--line);
}
.ph::before {
  content: attr(data-shot);
  position: absolute; inset: auto 0 0 0; padding: .68rem .82rem;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--steel);
  background: rgba(247,248,250,.92); border-top: 1px solid var(--line);
  line-height: 1.5;
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(62,147,224,.09) 0 12px, transparent 12px 24px),
    #18242E;
  border-color: var(--line-dk);
}
.ph--dark::before { color: var(--mist); background: rgba(12,19,25,.85); border-top-color: var(--line-dk); }

/* IDX feed region — marks where vendor output is injected */
.feed {
  border: 1.5px dashed var(--gpr-blue);
  background: rgba(1,111,209,.05);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1.4rem;
}
.feed p {
  margin: 0; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gpr-blue-dk); line-height: 1.8; max-width: 36ch;
}

/* Aspect ratios */
.ar-hero   { aspect-ratio: 16 / 8.2; min-height: 460px; }
.ar-wide   { aspect-ratio: 21 / 9; }
.ar-land   { aspect-ratio: 16 / 10; }
.ar-video  { aspect-ratio: 16 / 9; }
.ar-listing{ aspect-ratio: 4 / 3; }
.ar-port   { aspect-ratio: 4 / 5; }
.ar-tall   { aspect-ratio: 3 / 4; }
@media (max-width: 760px) {
  /* aspect-ratio + min-height fight on narrow screens: min-height wins and pushes width past
     the viewport. Use an explicit height on mobile instead. */
  .ar-hero { aspect-ratio: auto; height: 560px; min-height: 0; width: 100%; }
  .ar-wide { aspect-ratio: 4 / 3; }
}

/* Video play affordance */
.play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.play span {
  width: 60px; height: 60px; border: 1.5px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px;
}

/* ---------- 10. HERO ------------------------------------- */
.hero { position: relative; padding: 0; background: var(--ink); color: var(--mist); }
.hero__media { border: 0; }
.hero__copy {
  position: absolute; inset: auto 0 0 0; padding: var(--pad);
  background: linear-gradient(to top, rgba(12,19,25,.95) 0%, rgba(12,19,25,.7) 58%, transparent 100%);
}
.hero__inner { max-width: var(--max); margin: 0 auto; }
.hero h1 { max-width: 20ch; margin: .75rem 0 1.05rem; }
.hero .lede { max-width: 50ch; opacity: .88; margin: 0 0 1.6rem; }
.hero .btn-row { margin-bottom: 1.6rem; }
.hero .plaque { opacity: .84; }

/* ---------- 11. STAT BAR -------------------------------- */
/* Values are CMS/feed driven. Never hardcode a headcount in copy —
   {{team_count}} counts published Agent records. */
.stats { }
.stats .wrap {
  display: grid; grid-template-columns:repeat(var(--cols, 4), 1fr);
  gap: 1px; padding-inline: 0; max-width: none; background: var(--line-dk);
}
.stats__cell { padding: clamp(20px, 2.8vw, 36px) clamp(18px, 2.8vw, 38px); background: inherit; }
.stats .u-slate .stats__cell, .stats__cell { background: var(--slate); }
.stats__cell b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -.035em;
  line-height: 1; margin-bottom: .42rem;
}
.stats__cell:first-child b { color: var(--gpr-blue-lt); }
.stats__cell span {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em;
  text-transform: uppercase; opacity: .62; display: block; line-height: 1.6;
}
.stats__stamp {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .11em;
  text-transform: uppercase; opacity: .5; padding-block: .9rem;
  text-align: center; margin: 0;
}
@media (max-width: 860px) { .stats .wrap { grid-template-columns:minmax(0,1fr) minmax(0,1fr); } }


/* ---------- 11b. THE NUMBER — signature component -------- */
/* A figure and its provenance. RECO requires every published statistic to be
   substantiable; the brand thesis is that a number should be defensible.
   The caption is not a disclaimer, it is the point. Never ship .num without
   a fully populated .num__src. */
.num { display: block; }
.num__fig {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  letter-spacing: -.042em; line-height: .92;
}
.num__fig sup { font-size: .42em; letter-spacing: 0; vertical-align: super; opacity: .7; }
.num__rule { width: 38px; height: 1px; background: currentColor; opacity: .38; margin: .72rem 0; border: 0; }
.num__src {
  display: block; font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .13em; text-transform: uppercase;
  opacity: .58; line-height: 1.8; max-width: 30ch;
}
.num--lg .num__fig { font-size: clamp(2.6rem, 6vw, 5.2rem); }
.num--sm .num__fig { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.num--sm .num__rule { width: 28px; margin: .5rem 0; }
.num--accent .num__fig { color: var(--gpr-blue); }
.u-dark .num--accent .num__fig, .num--accent.on-dark .num__fig { color: var(--gpr-blue-lt); }
.numrow { display: grid; gap: clamp(24px, 3vw, 44px); grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

/* ---------- 11c. STATEMENT — single-sentence section ------ */
/* The page needs one moment of quiet. No image, no cards, no CTA.
   Do not add anything to this section. Its emptiness is the function. */
.statement { padding-block: clamp(80px, 12vw, 190px); }
.statement p {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.03em;
  max-width: 30ch; margin: 0;
}
.statement p em { font-style: normal; color: var(--gpr-blue); }
.statement .attrib {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; opacity: .5; margin-top: clamp(24px, 3vw, 40px);
  display: block; font-weight: 400;
}

/* ---------- 11d. BYLINE — agent on an area page ---- */
.byline { display: flex; gap: 1rem; align-items: center; padding-block: 1.1rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.u-dark .byline { border-color: var(--line-dk); }
.byline img, .byline .ph { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 0; }
.byline__name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; display: block; }
.byline__meta { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; opacity: .6; display: block; margin-top: .25rem; }

/* ---------- 12. SEARCH ---------------------------------- */
.searchbar { padding-block: clamp(28px, 3.4vw, 44px); border-bottom: 1px solid var(--line); }
.searchbar .wrap { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.searchbar__label p {
  margin: .35rem 0 0; font-size: 1.14rem;
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em;
}
.searchbox { flex: 1 1 340px; display: flex; border: 1.5px solid var(--ink); }
.searchbox input {
  flex: 1; border: 0; background: transparent; padding: .92rem 1.1rem;
  font-family: var(--font-body); font-size: 1rem; min-width: 0; color: inherit;
}
.searchbox button {
  border: 0; background: var(--gpr-blue); color: #fff; padding: 0 1.4rem;
  cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: .88rem;
}
.searchbox button:hover { background: var(--gpr-blue-dk); }

/* Filter chips / selects */
.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.chip {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; border: 1px solid var(--line);
  padding: .5rem .85rem; background: transparent; cursor: pointer; color: inherit;
}
.chip[aria-pressed="true"], .chip[aria-selected="true"] {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.filters select {
  border: 1.5px solid var(--line); background: transparent; color: inherit;
  padding: .6rem .8rem; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- 13. CARDS ---------------------------------- */
/* Agent card */
.agent { text-decoration: none; display: block; }
.agent .ph, .agent .media { aspect-ratio: 4/5; margin-bottom: .78rem; transition: opacity var(--t-fast); }
.agent:hover .ph, .agent:hover .media { opacity: .84; }
.agent h3 { margin-bottom: .2rem; font-size: 1.02rem; }
.agent__role {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .11em;
  text-transform: uppercase; opacity: .6; display: block;
}
.agent__meta { font-size: .82rem; opacity: .7; margin: .4rem 0 0; }

/* Open-seat / recruit card — sits inside the roster grid */
.joincard {
  border: 1.5px dashed var(--gpr-blue);
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.2rem; text-decoration: none; aspect-ratio: 4/5;
  background: rgba(1,111,209,.06);
  transition: background var(--t-fast);
}
.joincard:hover { background: rgba(1,111,209,.13); }
.joincard h3 { font-size: 1.02rem; margin: .6rem 0 .5rem; }
.joincard p { margin: 0; font-size: .82rem; opacity: .75; }

/* Listing card. Attribution is a board requirement, not optional. */
.listing { text-decoration: none; display: block; }
.listing .ph, .listing .media { aspect-ratio: 4/3; margin-bottom: .82rem; }
.listing__status {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gpr-blue); display: block; margin-bottom: .35rem;
}
.listing__status--sold { color: var(--steel); }
.listing__price {
  font-family: var(--font-display); font-weight: 800; font-size: 1.14rem;
  letter-spacing: -.025em; margin: .3rem 0 .2rem;
}
.listing__addr { margin: 0; font-size: .9rem; opacity: .8; }
.listing__specs {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em;
  text-transform: uppercase; opacity: .55; margin: .4rem 0 0;
}
.listing__credit {
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .09em;
  opacity: .45; margin: .32rem 0 0; line-height: 1.5;
}

/* Post card */
.post { text-decoration: none; display: block; padding-top: 1.05rem; border-top: 2px solid var(--gpr-blue); }
.post__meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; opacity: .6; }
.post h3 { margin: .55rem 0 .45rem; font-size: 1.08rem; }
.post:hover h3 { color: var(--gpr-blue); }
.post p { margin: 0; font-size: .88rem; opacity: .74; }

/* Review card */
.review { border: 1px solid var(--line); padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; }
.review__stars { color: var(--gpr-blue); font-size: .85rem; letter-spacing: .15em; margin: 0 0 .8rem; }
.review blockquote { margin: 0 0 1.1rem; font-size: .97rem; line-height: 1.55; }
.review__who {
  margin-top: auto; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .12em; text-transform: uppercase; opacity: .6; line-height: 1.8;
}

/* ---------- 14. DATA LISTS ----------------------------- */
/* Key/value rows — facts tables, marketing inclusions, market lists */
.deflist { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.u-dark .deflist, .deflist--dark { border-top-color: var(--line-dk); }
.deflist li {
  display: flex; justify-content: space-between; gap: 1.2rem; align-items: baseline;
  padding: .68rem 0; border-bottom: 1px solid var(--line); font-size: .93rem;
}
.deflist--dark li { border-bottom-color: var(--line-dk); }
.deflist__k {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .13em;
  text-transform: uppercase; opacity: .56; flex: 0 0 auto;
}
.deflist__v { text-align: right; }

/* Arrow link list — used in the buy/sell panels */
.linklist { list-style: none; padding: 0; margin: 0 0 1.8rem; border-top: 1px solid var(--line-dk); }
.linklist li { border-bottom: 1px solid var(--line-dk); }
.linklist a {
  display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0;
  text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: .94rem;
}
.linklist a:hover { opacity: .7; }
.linklist__arw { font-family: var(--font-mono); opacity: .5; }

/* Yes/no comparison lists — the "fit" section */
.fitlist { list-style: none; padding: 0; margin: 0; }
.fitlist li { padding: .7rem 0 .7rem 1.7rem; border-bottom: 1px solid var(--line); font-size: .95rem; position: relative; }
.fitlist li::before { position: absolute; left: 0; top: .7rem; font-family: var(--font-mono); font-size: 12px; }
.fitlist--yes li::before { content: "+"; color: var(--gpr-blue); }
.fitlist--no li::before { content: "\2013"; color: var(--steel); }
.fitlist--no li { opacity: .74; }

/* ---------- 15. CALLOUT / BUILD NOTE ------------------- */
/* .buildnote is for concept files only — strip before launch. */
.callout {
  background: var(--gpr-blue-wash);
  border-left: 3px solid var(--gpr-blue);
  padding: .95rem 1.2rem;
  font-size: .93rem;
}
.buildnote {
  background: var(--gpr-blue-wash); border-left: 3px solid var(--gpr-blue);
  padding: .85rem 1.1rem; margin: 0;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.7; color: #0A3C66;
}
.buildnote b { letter-spacing: .1em; text-transform: uppercase; font-size: 10px; display: block; margin-bottom: .2rem; }

/* ---------- 16. FORMS --------------------------------- */
.form { display: grid; gap: 12px; }
.form__two { display: grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap: 12px; }
@media (max-width: 520px) { .form__two { grid-template-columns:minmax(0,1fr); } }
.form label {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .13em;
  text-transform: uppercase; display: block; margin-bottom: .35rem; opacity: .85;
}
.form input, .form select, .form textarea {
  width: 100%; border: 1.5px solid var(--line); background: transparent;
  padding: .74rem .85rem; font-family: var(--font-body); font-size: .97rem; color: inherit;
}
.u-blue .form input, .u-blue .form select, .u-blue .form textarea {
  border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.1); color: #fff;
}
.u-blue .form input::placeholder, .u-blue .form textarea::placeholder { color: rgba(255,255,255,.6); }
.u-blue .form select option { color: var(--ink); }
.form__consent {
  font-size: .82rem; display: flex; gap: .6rem; align-items: flex-start;
  line-height: 1.5; opacity: .9;
}
.form__consent input { width: auto; flex: 0 0 auto; margin-top: .28rem; }

/* ---------- 17. FOOTER -------------------------------- */
.footer { background: var(--ink); color: var(--mist); padding-block: clamp(44px, 5.4vw, 74px) 0; }
.footer__grid { display: grid; grid-template-columns:minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr); gap: clamp(24px, 3vw, 48px); }
@media (max-width: 860px) { .footer__grid { grid-template-columns:minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 520px) { .footer__grid { grid-template-columns:minmax(0,1fr); } }
.footer h4 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500; margin: 0 0 1rem; opacity: .55;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { text-decoration: none; font-size: .92rem; opacity: .85; }
.footer a:hover { opacity: 1; text-decoration: underline; }

/* Registered name — must be legible, not decorative. TRESA requirement. */
.footer__legal { font-family: var(--font-display); font-weight: 600; font-size: .98rem; margin: 1.1rem 0 .3rem; }
.footer__addr { font-size: .92rem; opacity: .8; margin: .5rem 0 1rem; line-height: 1.6; }

.boards { display: flex; gap: 12px; flex-wrap: wrap; margin: 1.4rem 0 0; }
.boards span {
  border: 1px solid var(--line-dk); padding: .5rem .8rem;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; opacity: .6;
}

/* Compliance block. Contains CREA trademark attribution and board
   disclaimer — required on every page. Do not shorten. */
.compliance {
  margin-top: clamp(34px, 4.2vw, 58px); padding-block: 1.6rem;
  border-top: 1px solid var(--line-dk);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  line-height: 2; text-transform: uppercase; opacity: .52;
}
.compliance a { font-size: inherit; }

/* ---------- 18. PRINT -------------------------------- */
@media print {
  .nav, .legalbar, .searchbar, .feed, .buildnote, .play { display: none !important; }
  body { background: #fff; color: #000; }
  .hero__copy { position: static; background: none; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9px; }
}
