/* ============================================================
   Monganda — locked design system
   Mapped 1:1 to /tokens.md. Don't add ad-hoc values here.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700&family=Inter:wght@400;500;600;700&display=swap');

/* ============ TOKENS ============ */
/* Locked palette: P3 (chosen 2026-06-21 from brand-options-17).
   Cross-background contrast anchor↔accent = 4.2:1. */
:root {
  /* Brand */
  --anchor: #133648;
  --anchor-dark: #0E2A38;
  --anchor-tint: #E7EDF1;
  --accent: #C97A4A;
  --accent-dark: #A66239;
  --accent-tint: #F8EBE0;

  /* Semantic */
  --success: #2D8A4E;
  --warning: #C98A2B;
  --danger: #B33A2E;

  /* Neutrals */
  --ink-900: #14171A;
  --ink-700: #3A3F47;
  --ink-500: #5F6470;
  --ink-300: #A0A6B0;
  --ink-100: #E8E2DA;
  --paper: #F7F4F0;
  --paper-bright: #FBF9F5;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Monaco, "Cascadia Code", monospace;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;

  /* Spacing (unit 0.25rem / 4px) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Container */
  --container-max: 1280px;
  --container-pad: 1.5rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(20, 23, 26, 0.04);
  --shadow-sm: 0 2px 8px rgba(20, 23, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(20, 23, 26, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 23, 26, 0.12);

  /* Compat aliases (so old class names keep working during migration) */
  --primary: var(--anchor);
  --primary-dark: var(--anchor-dark);
  --primary-light: var(--anchor-tint);
  --accent-light: var(--accent-tint);
  --dark: var(--ink-900);
  --text: var(--ink-700);
  --muted: var(--ink-500);
  --light: var(--paper);
  --border: var(--ink-100);
  --radius: var(--radius-sm);
  --warm-dark: var(--anchor);
}

@media (min-width: 768px) {
  :root { --container-pad: 2rem; }
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: var(--text-base); }
img, svg { max-width: 100%; display: block; }
em { font-style: italic; }

/* ============ TYPE HIERARCHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: var(--text-4xl); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); font-weight: 600; }
h4 { font-family: var(--font-body); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.01em; }
@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

p { font-size: var(--text-base); line-height: 1.6; }
.text-primary, .text-anchor { color: var(--anchor); }
.text-accent { color: var(--accent-dark); }
.text-muted { color: var(--ink-500); }
.text-success { color: var(--success); }
.text-center { text-align: center; }
.text-lede { font-size: var(--text-lg); color: var(--ink-500); line-height: 1.55; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--anchor);
  margin-bottom: var(--space-3);
}

/* ============ CONTAINER ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ============ SPACING UTILITIES ============ */
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-4); }
.mb-3 { margin-bottom: var(--space-6); }
.mb-4 { margin-bottom: var(--space-8); }
.mt-2 { margin-top: var(--space-4); }
.mt-3 { margin-top: var(--space-6); }
.mt-4 { margin-top: var(--space-8); }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  min-height: 44px; /* touch target */
  transition: all 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--anchor-tint), 0 0 0 4px var(--anchor);
}
.btn-primary { background: var(--anchor); color: var(--white); }
.btn-primary:hover { background: var(--anchor-dark); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; border-color: var(--ink-100); color: var(--ink-700); }
.btn-outline:hover { border-color: var(--anchor); color: var(--anchor); }
.btn-dark { background: var(--ink-900); color: var(--white); }
.btn-dark:hover { background: #2D3137; }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); min-height: 52px; }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); min-height: 36px; }
.btn-block { width: 100%; }

/* ============ FORMS ============ */
.form-group { margin-bottom: var(--space-6); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--ink-900);
}
.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  background: var(--white);
  color: var(--ink-900);
  min-height: 44px;
  transition: all 0.15s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--anchor);
  box-shadow: 0 0 0 3px var(--anchor-tint);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-hint { font-size: var(--text-xs); color: var(--ink-500); margin-top: var(--space-1); }

/* ============ TAGS ============ */
.tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.tag-primary { background: var(--anchor); color: var(--white); }
.tag-light { background: rgba(255, 255, 255, 0.95); color: var(--ink-900); }
.tag-warning { background: var(--accent); color: var(--white); }
.tag-success { background: rgba(45, 138, 78, 0.12); color: var(--success); }
.tag-accent { background: var(--accent-tint); color: var(--accent-dark); }
.tag-dark { background: var(--ink-900); color: var(--accent); }

/* ============ LAUNCH BANNER ============ */
.launch-banner {
  background: var(--ink-900);
  color: var(--white);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  text-align: center;
}
.launch-banner strong { color: var(--accent); margin-right: var(--space-2); font-weight: 700; }
.launch-banner a { color: var(--white); text-decoration: underline; margin-left: var(--space-2); font-weight: 600; }

/* ============ TOP BAR ============ */
.top-bar {
  background: #0F1114;
  color: #BBB;
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
}
.top-bar .container { display: flex; justify-content: space-between; gap: var(--space-6); }
.top-bar > .container > div { display: flex; gap: var(--space-6); }
.top-bar a { transition: color 0.15s; }
.top-bar a:hover { color: var(--accent); }

/* ============ HEADER ============ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  padding: var(--space-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
}

/* ============ LOGO ============ */
/* Locked CI: hut sized to cap-height + descender of the wordmark.
   At 1.625rem (26px) wordmark, hut is 30px wide × 24px tall. */
.logo { display: inline-flex; align-items: baseline; gap: var(--space-2); }
.logo-mark {
  width: 30px;
  height: 24px;
  flex-shrink: 0;
  background-image: url('logo-mark.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  align-self: flex-end;
  transform: translateY(2px); /* tiny optical drop so dome sits on baseline cleanly */
}
.logo-stack { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--anchor);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* ============ NAVIGATION ============ */
.header-right { display: flex; align-items: center; gap: var(--space-6); margin-left: auto; }
.nav { display: flex; gap: var(--space-6); }
.nav > a, .nav-dropdown > a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  position: relative;
  transition: color 0.15s ease;
  font-family: var(--font-body);
}
.nav > a:hover, .nav > a.active, .nav-dropdown:hover > a, .nav-dropdown.active > a {
  color: var(--anchor);
}
.nav > a.active::after, .nav-dropdown.active > a::after {
  content: ''; position: absolute;
  bottom: -1.25rem; left: 0; right: 0;
  height: 2px; background: var(--anchor);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.625rem;
  color: var(--ink-500);
  position: static;
  height: auto; background: none;
  margin-left: var(--space-1);
}
.nav-dropdown.active > a::after { color: var(--anchor); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: -1rem;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) 0;
  min-width: 260px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.15s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(8px);
}
.nav-dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-700);
  font-weight: 500;
  transition: background 0.1s;
}
.nav-dropdown-menu a:hover { background: var(--paper); color: var(--anchor); }
.nav-dropdown-menu .menu-divider { height: 1px; background: var(--ink-100); margin: var(--space-2) 0; }
.nav-dropdown-menu small {
  display: block;
  padding: var(--space-1) var(--space-6) var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 700;
}

/* ============ PAGE HEADER ============ */
.page-header {
  background: var(--anchor-tint);
  padding: var(--space-12) 0 var(--space-12);
  border-bottom: 2px solid var(--accent);
}
.page-header h1 { font-size: var(--text-3xl); margin-bottom: var(--space-2); }
@media (min-width: 768px) { .page-header h1 { font-size: var(--text-4xl); } }
.page-header p { color: var(--ink-500); font-size: var(--text-lg); max-width: 640px; line-height: 1.55; }
.breadcrumb {
  font-size: var(--text-sm);
  color: var(--ink-500);
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: var(--anchor); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ SECTIONS ============ */
.section { padding: var(--space-16) 0; }
@media (min-width: 1024px) { .section { padding: var(--space-20) 0; } }
.section-sm { padding: var(--space-12) 0; }
.section-light { background: var(--paper); }
.section-warm { background: linear-gradient(180deg, var(--paper-bright) 0%, var(--white) 100%); }

/* Brand-tint section variants — used to alternate page rhythm.
   Both tints are within the locked P3 palette and pair cleanly with anchor text. */
.section-blue { background: var(--anchor-tint); }
.section-sienna { background: var(--accent-tint); }
.section-anchor { background: var(--anchor); color: var(--white); }
.section-anchor .eyebrow,
.section-anchor h2,
.section-anchor h3,
.section-anchor p { color: var(--white); }
.section-anchor .row-sub,
.section-anchor .row-link { color: rgba(255, 255, 255, 0.85); }
.section-anchor .row-link:hover { color: var(--accent); }

.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-header h2 { font-size: var(--text-3xl); margin-bottom: var(--space-3); }
@media (min-width: 768px) { .section-header h2 { font-size: var(--text-4xl); } }
.section-header p {
  color: var(--ink-500);
  font-size: var(--text-lg);
  max-width: 620px;
  margin: var(--space-2) auto 0;
  line-height: 1.55;
}

/* ============ GRID ============ */
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============ HERO (gradient fallback) ============ */
.hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  padding: var(--space-16) 0 var(--space-20);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--anchor-tint), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }

/* Photo hero — cinematic */
.hero-photo {
  min-height: 640px;
  padding: var(--space-24) 0 var(--space-20);
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,23,26,0.35) 0%, rgba(20,23,26,0.15) 40%, rgba(20,23,26,0.75) 100%),
    radial-gradient(circle at 70% 30%, rgba(194,74,61,0.18), transparent 50%);
  z-index: 1;
}
.hero-photo .container { position: relative; z-index: 2; }
.hero-photo h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  font-size: var(--text-4xl);
}
@media (min-width: 768px) {
  .hero-photo h1 { font-size: var(--text-5xl); }
}
.hero-photo .text-primary, .hero-photo .text-anchor { color: var(--accent); }
.hero-photo .hero-sub {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero-photo .name-reveal { color: rgba(255, 255, 255, 0.9); }
.hero-photo .name-reveal strong { color: var(--accent); }
.hero-photo .hero-tag {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-900);
  backdrop-filter: blur(8px);
}
.hero-photo .hero-trust { color: rgba(255, 255, 255, 0.95); margin-top: var(--space-8); }
.hero-photo .hero-trust strong { color: var(--white); }
.hero-photo-caption {
  position: absolute; bottom: var(--space-4); left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .hero-photo { min-height: 560px; padding: var(--space-16) 0 var(--space-12); }
}

.hero h1 { font-size: var(--text-4xl); line-height: 1.05; margin-bottom: var(--space-4); max-width: 900px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .hero h1 { font-size: 3.5rem; } }
.hero-sub { font-size: var(--text-lg); color: var(--ink-500); margin: 0 auto var(--space-4); max-width: 720px; }
.name-reveal { font-size: var(--text-sm); color: var(--ink-500); font-style: italic; margin-bottom: var(--space-8); }
.name-reveal strong { color: var(--anchor); font-style: normal; font-weight: 700; }

.hero-tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--white);
  border: 1px solid var(--ink-100);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45, 138, 78, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(45, 138, 78, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(45, 138, 78, 0.06); }
}

.hero-trust { display: flex; justify-content: center; gap: var(--space-12); margin-top: var(--space-12); font-size: var(--text-sm); color: var(--ink-500); flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: var(--space-2); }
.hero-trust strong { color: var(--ink-900); font-weight: 700; }

/* ============ SEARCH ============ */
.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid var(--ink-100);
}
.search-tabs { display: flex; background: var(--paper); border-bottom: 1px solid var(--ink-100); }
.search-tab {
  flex: 1; padding: var(--space-4);
  font-weight: 600; color: var(--ink-500);
  border-bottom: 3px solid transparent;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: all 0.15s;
  min-height: 44px;
}
.search-tab.active { background: var(--white); color: var(--anchor); border-bottom-color: var(--anchor); }
.search-form { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr auto; padding: var(--space-4); }
.search-field { padding: 0 var(--space-4); border-right: 1px solid var(--ink-100); }
.search-field:first-child { padding-left: 0; }
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}
.search-field select {
  width: 100%; border: none; background: transparent;
  font-size: var(--text-sm); font-weight: 500;
  padding: var(--space-1) 0;
  cursor: pointer;
  color: var(--ink-900);
}
.search-submit { padding: var(--space-3) var(--space-8); align-self: center; margin-left: var(--space-4); }

/* Single-input round search */
.quick-search {
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-6);
  box-shadow: var(--shadow-lg);
  max-width: 560px; margin: var(--space-6) auto 0;
  display: flex; align-items: center; gap: var(--space-2);
  border: 1px solid rgba(0,0,0,0.05);
}
.quick-search input {
  flex: 1; border: none; font-size: var(--text-base);
  padding: var(--space-3) 0; outline: none; color: var(--ink-900);
  background: transparent;
  min-height: 44px;
}
.quick-search input::placeholder { color: var(--ink-500); }
.quick-search button { border-radius: var(--radius-pill); padding: var(--space-3) var(--space-6); }

/* ============ ALERT BAR ============ */
.alert-bar {
  background: linear-gradient(90deg, var(--anchor-tint), #FFF4E0);
  border-top: 1px solid #F4D8D2;
  border-bottom: 1px solid #F4D8D2;
  padding: var(--space-4) 0;
}
.alert-inner { display: flex; align-items: center; gap: var(--space-4); }
.alert-icon { font-size: var(--text-2xl); }
.alert-text { flex: 1; }
.alert-text strong { display: block; color: var(--ink-900); }
.alert-text span { color: var(--ink-500); font-size: var(--text-sm); }

/* ============ QUICK ACTIONS ============ */
.quick-actions { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.quick-action {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.2s;
}
.quick-action:hover { border-color: var(--anchor); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.qa-icon { font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.quick-action strong { display: block; color: var(--ink-900); margin-bottom: var(--space-1); font-weight: 700; }
.quick-action span { font-size: var(--text-xs); color: var(--ink-500); }

/* ============ PROPERTY CARDS ============ */
.property-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.property-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.property-image { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.property-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35)); }
.property-badges { position: absolute; top: var(--space-4); left: var(--space-4); display: flex; gap: var(--space-2); z-index: 2; }
.property-type {
  position: absolute; bottom: var(--space-4); left: var(--space-4);
  background: rgba(255,255,255,0.95);
  color: var(--ink-900);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.property-body { padding: var(--space-6); }
.property-price {
  color: var(--anchor);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.015em;
}
.property-title { font-family: var(--font-body); font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-2); color: var(--ink-900); letter-spacing: -0.005em; }
.property-address { font-size: var(--text-sm); color: var(--ink-500); margin-bottom: var(--space-4); }
.property-features { display: flex; flex-wrap: wrap; gap: var(--space-4); font-size: var(--text-sm); color: var(--ink-500); padding-top: var(--space-4); border-top: 1px solid var(--ink-100); }

/* ============ IMAGE BAND ============ */
.image-band { height: 320px; background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; }
.image-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(20,23,26,0.75) 100%); }
.image-band .band-caption { position: relative; z-index: 2; color: var(--white); padding: var(--space-8) 0; }
.image-band .band-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
  letter-spacing: -0.015em;
}
.image-band .band-caption span { font-size: var(--text-base); opacity: 0.9; }

/* ============ REGIONS SCROLL ============ */
.regions-scroll {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-100) transparent;
}
.regions-scroll::-webkit-scrollbar { height: 8px; }
.regions-scroll::-webkit-scrollbar-track { background: transparent; }
.regions-scroll::-webkit-scrollbar-thumb { background: var(--ink-100); border-radius: var(--radius-sm); }
.regions-track { display: flex; gap: var(--space-6); padding: var(--space-1); }
.region-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.region-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.region-image { aspect-ratio: 16/10; position: relative; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: var(--space-4); }
.region-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,23,26,0.6)); }
.region-count { background: rgba(255,255,255,0.95); color: var(--ink-900); padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm); font-size: var(--text-xs); font-weight: 700; position: relative; z-index: 2; }
.region-body { padding: var(--space-6); }
.region-body h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.region-body p { font-size: var(--text-sm); color: var(--ink-500); margin-bottom: var(--space-3); }
.region-link { color: var(--anchor); font-weight: 700; font-size: var(--text-sm); }

/* ============ TOOLS panel (homepage tools) ============ */
.tools-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: start; }
.tool-link {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-6);
  display: flex; flex-direction: column;
  margin-bottom: var(--space-3);
  transition: all 0.15s;
  text-decoration: none; color: inherit;
}
.tool-link:hover { border-color: var(--anchor); color: var(--anchor); }
.tool-link strong { margin-bottom: var(--space-1); font-weight: 700; }
.tool-link span { font-size: var(--text-sm); color: var(--ink-500); }
.tool-link:hover span { color: var(--anchor); }
.calc-preview { background: var(--white); border-radius: var(--radius-md); padding: var(--space-8); box-shadow: var(--shadow-md); }
.calc-result {
  background: var(--anchor-tint);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-sm);
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--space-2);
}
.calc-result strong { font-size: var(--text-2xl); color: var(--anchor); font-family: var(--font-display); font-weight: 700; }

/* ============ CHECK LIST ============ */
.check-list { list-style: none; padding: 0; margin: var(--space-6) 0; }
.check-list li { padding: var(--space-2) 0; display: flex; gap: var(--space-3); align-items: flex-start; }
.check-list li::before { content: '✓'; color: var(--anchor); font-weight: 800; }

/* ============ FOREIGN BUYERS ============ */
.foreign-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-16); align-items: center; }
.foreign-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.stat-card { background: var(--paper); border-radius: var(--radius-md); padding: var(--space-8) var(--space-6); text-align: center; }
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--anchor);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.stat-card span { color: var(--ink-500); font-size: var(--text-sm); }

/* ============ TRUST STRIP & BAR ============ */
.trust-strip { background: var(--white); padding: var(--space-6) 0; border-bottom: 1px solid var(--ink-100); }
.trust-strip-inner { display: flex; align-items: center; gap: var(--space-12); flex-wrap: wrap; justify-content: center; }
.trust-strip-label { font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: var(--space-8); flex-wrap: wrap; }
.trust-logo { font-weight: 700; color: var(--ink-500); font-size: var(--text-sm); display: flex; align-items: center; gap: var(--space-2); white-space: nowrap; transition: color 0.15s; font-family: var(--font-body); }
.trust-logo:hover { color: var(--ink-900); }
.trust-logo .tl-mark { font-size: var(--text-lg); opacity: 0.8; }
.trust-coming { font-size: var(--text-sm); color: var(--ink-500); font-style: italic; padding-left: var(--space-6); border-left: 1px solid var(--ink-100); }

.trust-bar { background: var(--paper); padding: var(--space-12) 0; border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.trust-inner { display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-12); align-items: center; }
.trust-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); font-weight: 700; }
.trust-label strong { display: block; color: var(--ink-900); font-size: var(--text-lg); margin-top: var(--space-2); text-transform: none; letter-spacing: -0.005em; font-family: var(--font-display); font-weight: 600; }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.trust-item { text-align: center; }
.trust-item .ti-icon { font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.trust-item strong { display: block; font-size: var(--text-sm); color: var(--ink-900); margin-bottom: var(--space-1); font-weight: 700; }
.trust-item span { font-size: var(--text-xs); color: var(--ink-500); }

/* ============ ARTICLES ============ */
.article-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-image { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.article-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45)); }
.article-image .tag { position: absolute; top: var(--space-4); left: var(--space-4); z-index: 2; }
.article-body { padding: var(--space-6); }
.article-body h3 { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: var(--space-2); line-height: 1.25; font-weight: 600; }
.article-body p { font-size: var(--text-sm); color: var(--ink-500); margin-bottom: var(--space-4); }
.article-meta { font-size: var(--text-xs); color: var(--ink-500); display: flex; gap: var(--space-2); }

/* ============ AGENT CTA (warm dark) ============ */
.agent-cta {
  background: linear-gradient(135deg, var(--anchor) 0%, var(--anchor-dark) 50%, var(--anchor) 100%);
  color: var(--white);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 122, 74, 0.18);
}
.agent-cta::before {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194, 74, 61, 0.25), transparent 70%);
}
.agent-cta .container { position: relative; }
.agent-cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-16); align-items: center; }
.agent-cta h2 { color: var(--white); font-size: var(--text-4xl); }
.agent-cta p { color: #BBB; margin: var(--space-4) 0 var(--space-6); font-size: var(--text-lg); line-height: 1.55; }
.agent-cta .check-list li { color: #DDD; }
.agent-cta .check-list li::before { color: var(--accent); }
.cta-buttons { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-6); }
.agent-cta .btn-outline { border-color: #555; color: var(--white); }
.agent-cta .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.agent-stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  display: grid; gap: var(--space-6);
}
.first-100-headline { text-align: center; padding-bottom: var(--space-6); border-bottom: 1px solid rgba(255,255,255,0.08); }
.first-100-headline strong { display: block; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: var(--space-2); font-family: var(--font-body); }
.first-100-headline .big { font-family: var(--font-display); font-size: 3.25rem; color: var(--white); font-weight: 700; line-height: 1; letter-spacing: -0.025em; }
.first-100-headline span { display: block; color: #999; font-size: var(--text-sm); margin-top: var(--space-2); }
.progress-bar { background: rgba(255,255,255,0.08); height: 6px; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: var(--space-2); }
.progress-fill { background: var(--accent); height: 100%; width: 18%; border-radius: var(--radius-sm); }
.progress-label { display: flex; justify-content: space-between; font-size: var(--text-xs); color: #999; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink-900);
  color: #BBB;
  padding: var(--space-16) 0 var(--space-6);
  border-top: 1px solid #222;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: var(--space-12); padding-bottom: var(--space-12); }
.footer-brand p { margin: var(--space-4) 0; color: #999; font-size: var(--text-sm); line-height: 1.6; }
.footer-brand .built-in { background: rgba(201,122,74,0.10); border: 1px solid rgba(201,122,74,0.22); padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm); font-size: var(--text-xs); color: var(--accent); display: inline-block; }
.footer-logo { display: flex; align-items: center; gap: var(--space-3); color: var(--white); font-size: var(--text-xl); font-family: var(--font-display); font-weight: 700; }
.footer-logo .logo-mark { background-image: url('logo-mark-light.svg'); }
.footer-col h4 { color: var(--white); font-size: var(--text-sm); margin-bottom: var(--space-4); font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }
.footer-col a { display: block; padding: var(--space-2) 0; color: #999; font-size: var(--text-sm); transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #2A2A2A; padding-top: var(--space-6); display: flex; justify-content: space-between; font-size: var(--text-sm); color: #777; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom em { font-style: italic; color: #999; }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a:hover { color: var(--accent); }

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s;
  font-size: 1.75rem;
  color: var(--white);
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ============ CALCULATORS ============ */
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: start; }
.calc-form, .calc-results {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}
.calc-form h2 { font-size: var(--text-xl); margin-bottom: var(--space-6); }
.result-headline {
  background: var(--anchor); color: var(--white);
  padding: var(--space-6); border-radius: var(--radius-sm);
  text-align: center; margin-bottom: var(--space-6);
}
.result-headline span { font-size: var(--text-sm); opacity: 0.9; display: block; margin-bottom: var(--space-1); }
.result-headline strong { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; letter-spacing: -0.025em; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-6); }
.result-grid > div { background: var(--paper); padding: var(--space-4); border-radius: var(--radius-sm); }
.result-grid span { display: block; font-size: var(--text-xs); color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-1); font-weight: 700; }
.result-grid strong { font-size: var(--text-lg); color: var(--ink-900); font-family: var(--font-display); font-weight: 700; }

/* ============ VERB CARDS ============ */
.verbs-section { padding: var(--space-20) 0; background: var(--white); }
.verbs-header { text-align: center; margin-bottom: var(--space-12); }
.verbs-header h2 { font-size: var(--text-3xl); margin-bottom: var(--space-2); }
@media (min-width: 768px) { .verbs-header h2 { font-size: var(--text-4xl); } }
.verbs-header p { color: var(--ink-500); font-size: var(--text-lg); max-width: 620px; margin: var(--space-2) auto 0; }
.verbs-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.verb-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.verb-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.verb-img { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.verb-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20,23,26,0.5)); }
.verb-img-label {
  position: absolute; bottom: var(--space-3); left: var(--space-4); z-index: 2;
  color: var(--white); font-size: 0.625rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  padding: var(--space-1) var(--space-2); border-radius: var(--radius-sm);
}
.verb-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.verb-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--space-2); }
.verb-card p { color: var(--ink-500); font-size: var(--text-sm); line-height: 1.5; margin-bottom: var(--space-4); flex: 1; }
.verb-cta { color: var(--anchor); font-weight: 700; font-size: var(--text-sm); display: inline-flex; align-items: center; gap: var(--space-1); }

/* ============ POPULAR SEARCHES ============ */
.popsearch-group {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}
.popsearch-group h3 { font-size: var(--text-base); margin-bottom: var(--space-6); display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-body); font-weight: 700; }
.popsearch-group h3 .group-eyebrow { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; }
.popsearch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.popsearch-card {
  background: var(--paper);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: all 0.15s;
  padding: 0;
  text-decoration: none; color: inherit;
}
.popsearch-card:hover { background: var(--anchor-tint); transform: translateX(2px); }
.popsearch-img { width: 64px; height: 64px; flex-shrink: 0; background-size: cover; background-position: center; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.popsearch-meta { flex: 1; padding: var(--space-2) var(--space-3) var(--space-2) 0; min-width: 0; }
.popsearch-meta strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--ink-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popsearch-meta span { font-size: var(--text-xs); color: var(--ink-500); }

/* ============ SUBURB CARDS — lifestyle ============ */
.suburb-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.suburb-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.suburb-image { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.suburb-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6)); }
.suburb-image .suburb-title-overlay { position: absolute; bottom: var(--space-4); left: var(--space-4); z-index: 2; color: var(--white); }
.suburb-image .suburb-title-overlay h3 { color: var(--white); margin-bottom: var(--space-1); font-family: var(--font-display); font-size: var(--text-xl); }
.suburb-image .suburb-title-overlay span { font-size: var(--text-sm); opacity: 0.95; }
.suburb-body { padding: var(--space-6); }
.suburb-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.suburb-tag { background: var(--anchor-tint); color: var(--anchor); padding: var(--space-1) var(--space-3); border-radius: var(--radius-pill); font-size: var(--text-xs); font-weight: 600; }
.suburb-features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-bottom: var(--space-4); }
.suburb-feature { display: flex; gap: var(--space-2); align-items: flex-start; font-size: var(--text-sm); color: var(--ink-700); }
.suburb-feature .feat-icon { color: var(--anchor); }
.suburb-feature strong { color: var(--ink-900); }
.suburb-vibe { background: var(--paper); padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); font-size: var(--text-sm); font-style: italic; color: var(--ink-700); border-left: 3px solid var(--accent); }

/* ============ NAMIBIA FILTER CARDS ============ */
.nasearch-bg { background: var(--accent-tint); padding: var(--space-16) 0; }
.nasearch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.nasearch-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  transition: all 0.2s; cursor: pointer;
  border: 2px solid transparent;
}
.nasearch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nasearch-card.checked { border-color: var(--anchor); box-shadow: 0 0 0 3px var(--anchor-tint); }
.nasearch-illu { background: var(--paper); height: 200px; display: flex; align-items: center; justify-content: center; }
.nasearch-foot { padding: var(--space-4) var(--space-6); display: flex; align-items: center; gap: var(--space-3); font-weight: 600; }
.nasearch-foot input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--anchor); }

/* ============ ROW HEADER (horizontal scrollers) ============ */
.row-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--space-6);
  gap: var(--space-4); flex-wrap: wrap;
}
.row-header h3 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; }
.row-header .row-sub { font-size: var(--text-sm); color: var(--ink-500); display: block; margin-top: var(--space-1); }
.row-header a.row-link { color: var(--anchor); font-weight: 700; font-size: var(--text-sm); white-space: nowrap; }
.row-block { margin-bottom: var(--space-12); }
.props-scroll {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-2) 0 var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-100) transparent;
}
.props-scroll::-webkit-scrollbar { height: 8px; }
.props-scroll::-webkit-scrollbar-track { background: transparent; }
.props-scroll::-webkit-scrollbar-thumb { background: var(--ink-100); border-radius: var(--radius-sm); }
.props-track { display: flex; gap: var(--space-6); padding: var(--space-1); }
.props-track > a { flex: 0 0 320px; scroll-snap-align: start; }

/* ============ ACCESSIBILITY ============ */
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--anchor-tint), 0 0 0 4px var(--anchor);
  border-radius: var(--radius-sm);
}
.nav a:focus-visible, .nav-dropdown-menu a:focus-visible {
  outline: none;
  background: var(--paper);
  color: var(--anchor);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .quick-actions { grid-template-columns: repeat(3, 1fr); }
  .nav, .header-right > .nav { display: none; }
  .tools-wrap, .foreign-grid, .agent-cta-inner, .trust-inner, .calc-layout { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .verbs-row { grid-template-columns: repeat(3, 1fr); }
  .nasearch-grid { grid-template-columns: repeat(2, 1fr); }
  .popsearch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .verbs-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .quick-actions { grid-template-columns: 1fr 1fr; }
  .grid-4, .grid-3, .grid-2, .verbs-row, .nasearch-grid, .popsearch-grid { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .search-field { border-right: none; padding: var(--space-2) 0; border-bottom: 1px solid var(--ink-100); }
  .search-field:last-of-type { border-bottom: none; }
  .search-submit { grid-column: 1 / -1; margin-left: 0; }
  .hero-trust { gap: var(--space-4); font-size: var(--text-sm); }
  .agent-cta h2 { font-size: var(--text-2xl); }
  .first-100-headline .big { font-size: var(--text-3xl); }
  .section { padding: var(--space-12) 0; }
  .props-track > a { flex: 0 0 280px; }
  .region-card { flex: 0 0 240px; }
}

/* ---- Accessibility: honour reduced-motion preference (per tokens.md) ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
