/* ==========================================================================
   Propvizer — site stylesheet
   Brand: blue #155DE9 / #2C5CE1 · beige #FFEEDB / #F7DEC1 / #EBB67A
          cream-on-blue #F2E2CE · body #414141 · muted #6E7488 · white
   ========================================================================== */

:root {
  --blue: #155DE9;
  --blue-deep: #2C5CE1;
  --blue-hover: #1150C9; /* blue darkened ~9% for hover */
  --beige-light: #FFEEDB;
  --beige-mid: #F7DEC1;
  --beige-mid-hover: #EFCCA4; /* beige-mid darkened ~9% for hover */
  --beige-deep: #EBB67A;
  --cream: #F2E2CE;
  --ink: #414141;
  --muted: #6E7488;
  --white: #FFFFFF;

  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-width: 1160px;
  --gutter: 24px;
  --radius: 10px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
a { color: var(--blue); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
.band--blue a:focus-visible, .band--blue button:focus-visible,
.site-header a:focus-visible, .site-header button:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--cream);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 200;
  background: var(--white); color: var(--blue);
  padding: 10px 16px; border-radius: var(--radius); font-weight: 700;
  transition: top 0.15s;
}
.skip-link:focus { top: 8px; }

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

/* ---- Type scale (capped per brand spec) ---- */
.hero-title { font-size: 44px; font-weight: 700; line-height: 1.15; }
.hero-wordmark { font-size: 80px; font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
h2, .section-title { font-size: 30px; font-weight: 700; line-height: 1.25; }
h3, .card-title { font-size: 19px; font-weight: 700; line-height: 1.35; }
.lead { font-size: 18px; }
.caption { font-size: 14px; color: var(--muted); }
.band--blue .caption { color: var(--cream); opacity: 0.85; }

@media (max-width: 720px) {
  .hero-title { font-size: 32px; }
  .hero-wordmark { font-size: 48px; }
  h2, .section-title { font-size: 26px; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background-color 0.15s;
}
.btn--pill {
  background: var(--beige-mid);
  color: var(--blue);
  border-radius: 999px;
  padding: 14px 32px;
}
.btn--pill:hover { background: var(--beige-mid-hover); }
.btn--blue {
  background: var(--blue);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 14px 32px;
}
.btn--blue:hover { background: var(--blue-hover); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 999px;
  padding: 12px 30px;
}
.btn--ghost:hover { background: rgba(242, 226, 206, 0.12); }

/* Text link with chevron */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.link-more:hover { text-decoration: underline; }
.link-more .chev { width: 9px; height: 17px; fill: var(--beige-deep); }

/* Brand chevron glyph */
.chev { display: inline-block; flex: none; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
}
.brand .logo-mark { width: 34px; height: 41px; fill: currentColor; }
.brand .brand-name { font-size: 20px; font-weight: 700; letter-spacing: 0.01em; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 16px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: rgba(242, 226, 206, 0.5); }
.site-nav a[aria-current="page"] {
  font-weight: 700;
  border-bottom-color: var(--beige-deep);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--blue);
    padding: 32px var(--gutter);
    overflow-y: auto;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 8px; }
  .site-nav a { font-size: 22px; padding: 10px 0; }
}

/* ---- Bands (sections) ---- */
.band { padding: 88px 0; }
.band--beige { background: var(--beige-light); }
.band--blue { background: var(--blue); color: var(--cream); }
.band--hero { position: relative; overflow: hidden; padding: 96px 0; }
.band--cta { padding: 56px 0; }
@media (max-width: 720px) {
  .band { padding: 48px 0; }
  .band--hero { padding: 56px 0; }
}

.band--blue h1, .band--blue h2 { color: var(--white); }
.band--blue p { color: var(--cream); }

.section-title { color: var(--blue); margin-bottom: 16px; }
.section-intro { max-width: 720px; margin-bottom: 40px; }

/* Watermark cube-stack behind blue bands */
.watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 460px;
  fill: var(--beige-mid);
  opacity: 0.12;
  pointer-events: none;
}
@media (max-width: 860px) { .watermark { display: none; } }

/* Hero */
.hero-kicker { color: var(--cream); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.band--hero .hero-wordmark { color: var(--cream); margin-bottom: 8px; }
.band--hero .hero-title { color: var(--white); margin-bottom: 20px; }
.band--hero .lead { max-width: 640px; }

/* CTA band */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-row h2 { font-size: 26px; color: var(--white); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid rgba(110, 116, 136, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(65, 65, 65, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(21, 93, 233, 0.10);
  border-color: rgba(21, 93, 233, 0.35);
}
@media (prefers-reduced-motion: reduce) {
  .card { transition: none; }
  .card:hover { transform: none; }
}
.card--beige { background: var(--beige-mid); border: 0; }
.card--blue { background: var(--blue); border: 0; color: var(--cream); }
.card--blue h3 { color: var(--white); }
.card h3 { color: var(--blue); margin-bottom: 10px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Stat cards */
.stat-number { font-size: 44px; font-weight: 700; color: var(--blue); line-height: 1.1; }
.stat-label { margin-top: 6px; }

/* Team */
.team-card { text-align: left; }
.team-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.team-head img {
  width: 108px;
  height: 108px;
  flex: none;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 22%;
}
.team-card h3 { margin-bottom: 2px; }
.team-card .role { color: var(--muted); margin-bottom: 6px; font-weight: 700; }
.team-card > p { font-size: 15px; }
.team-card .li-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; text-decoration: none; color: var(--blue); font-size: 15px;
}
.team-card .li-link:hover { text-decoration: underline; }
.team-card .li-icon { width: 18px; height: 18px; fill: var(--blue); }
@media (max-width: 480px) {
  .team-head { flex-direction: column; align-items: flex-start; }
}

/* Case study cards */
.case-card { display: flex; flex-direction: column; }
.case-card .case-art {
  border-radius: calc(var(--radius) - 2px);
  background: var(--beige-light);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.case-card .case-art svg { width: 96px; height: 118px; fill: var(--blue); opacity: 0.9; }
.case-card p { flex: 1; }
.case-card .link-more { margin-top: 16px; }

/* ==========================================================================
   Charts & diagrams — flat 2-D, brand colors only
   ========================================================================== */

.chart-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.band--beige .chart-caption, .band--blue .chart-caption { text-align: center; }

/* ---- Chart A: One idea. One firm. One contract. ---- */
.chart-a { margin-top: 8px; }
.chart-a-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: stretch;
  gap: 0;
}
.chart-a-block { padding: 28px; border-radius: var(--radius); }
.chart-a-block .kicker { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.chart-a-block h3 { margin-bottom: 10px; }
.chart-a-block--beige { background: var(--beige-mid); color: var(--ink); }
.chart-a-block--beige h3, .chart-a-block--beige .kicker { color: var(--blue); }
.chart-a-block--blue { background: var(--blue); color: var(--cream); }
.chart-a-block--blue h3 { color: var(--white); }
.chart-a-block--blue .kicker { color: var(--beige-mid); }
.chart-a-block p { font-size: 15px; line-height: 1.55; }
.chart-a-connector {
  display: flex; align-items: center; justify-content: center;
}
.chart-a-connector .chev { width: 14px; height: 27px; fill: var(--beige-deep); }
.chart-a-bracket {
  margin-top: 28px;
  border: 2px solid var(--beige-deep);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  height: 18px;
}
.chart-a-bracket-label {
  text-align: center;
  margin-top: 14px;
  font-weight: 700;
  color: var(--blue);
}
@media (max-width: 860px) {
  .chart-a-flow { grid-template-columns: 1fr; }
  .chart-a-connector { padding: 6px 0; }
  .chart-a-connector .chev { transform: rotate(90deg); }
  .chart-a-bracket { display: none; }
}

/* ---- Chart F: three steps ---- */
.chart-f {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.chart-f-step { text-align: center; padding: 0 12px; }
.chart-f-num {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--cream);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-f-step h3 { color: var(--blue); margin-bottom: 8px; }
.chart-f-step p { font-size: 15px; text-align: left; }
.chart-f-connector {
  display: flex; justify-content: center;
  padding-top: 24px;
}
.chart-f-connector .chev { width: 12px; height: 23px; fill: var(--beige-deep); }
@media (max-width: 720px) {
  .chart-f { grid-template-columns: 1fr; }
  .chart-f-connector { padding: 10px 0; }
  .chart-f-connector .chev { transform: rotate(90deg); }
}

/* ---- Step cards: three-step process as cards ---- */
.step-cards {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: stretch;
}
.step-card { text-align: center; }
.step-card .chart-f-num {
  width: 64px;
  height: 64px;
  font-size: 21px;
  margin-bottom: 18px;
}
.step-card h3 { color: var(--blue); margin-bottom: 10px; }
.step-card p { font-size: 15px; }
.step-connector { display: flex; align-items: center; justify-content: center; }
.step-connector .chev { width: 12px; height: 23px; fill: var(--beige-deep); }
@media (max-width: 720px) {
  .step-cards { grid-template-columns: 1fr; }
  .step-connector { padding: 10px 0; }
  .step-connector .chev { transform: rotate(90deg); }
}

/* ---- Portfolio funnel ---- */
.funnel {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.funnel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  background: var(--blue);
  color: var(--cream);
  font-size: 16px;
  padding: 18px 12%;
  margin-bottom: 5px;
}
.funnel-stage strong { color: var(--white); font-size: 17px; }
.funnel-count { font-size: 14px; opacity: 0.85; }
/* Tapered sides: each stage's bottom edge meets the top of the next */
.funnel-stage:nth-child(1) {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 87.5% 100%, 12.5% 100%);
  border-radius: 8px 8px 0 0;
}
.funnel-stage:nth-child(2) {
  width: 75%;
  clip-path: polygon(0.5% 0, 99.5% 0, 84% 100%, 16% 100%);
  background: var(--blue-deep);
}
.funnel-stage:nth-child(3) {
  width: 51%;
  clip-path: polygon(1% 0, 99% 0, 76.5% 100%, 23.5% 100%);
  background: var(--blue-hover);
}
.funnel-drop {
  padding: 6px 0 10px;
  line-height: 0;
}
.funnel-drop .chev {
  width: 12px;
  height: 23px;
  fill: var(--beige-deep);
  transform: rotate(90deg);
}
.funnel-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  background: var(--beige-deep);
  color: var(--ink);
  border-radius: 999px;
  padding: 16px 40px;
  min-width: 27%;
}
.funnel-result strong { font-size: 17px; }
.funnel-result .funnel-count { opacity: 0.8; }
@media (max-width: 720px) {
  .funnel-stage { padding: 14px 16%; font-size: 15px; }
  .funnel-stage strong, .funnel-result strong { font-size: 15px; }
  .funnel-stage:nth-child(2) { width: 80%; clip-path: polygon(0.5% 0, 99.5% 0, 84% 100%, 16% 100%); }
  .funnel-stage:nth-child(3) { width: 58%; clip-path: polygon(1% 0, 99% 0, 78% 100%, 22% 100%); }
}

/* ---- Chart D: ground lease flow ---- */
.chart-d {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px) 1fr;
  gap: 0;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.chart-d-party {
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  font-weight: 700;
}
.chart-d-party--gov { background: var(--blue); color: var(--white); }
.chart-d-party--gov span { display: block; font-weight: 400; color: var(--cream); font-size: 15px; margin-top: 6px; }
.chart-d-party--dev { background: var(--beige-mid); color: var(--blue); }
.chart-d-party--dev span { display: block; font-weight: 400; color: var(--ink); font-size: 15px; margin-top: 6px; }
.chart-d-arrows { padding: 0 18px; }
.chart-d-arrow { text-align: center; font-size: 14px; font-weight: 700; color: var(--muted); }
.chart-d-arrow svg { width: 100%; height: 24px; display: block; }
.chart-d-arrow + .chart-d-arrow { margin-top: 22px; }
.chart-d-note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--muted); }
@media (max-width: 720px) {
  .chart-d { grid-template-columns: 1fr; }
  .chart-d-arrows { padding: 20px 0; max-width: 260px; margin: 0 auto; }
}

/* ---- Chart B: lifecycle loop ---- */
.chart-b {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  gap: 0;
  align-items: stretch;
}
.chart-b-node {
  background: var(--blue);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.chart-b-node .node-icon { width: 44px; height: 44px; margin: 0 auto 12px; display: block; }
.chart-b-node .node-icon * { stroke: var(--beige-mid); }
.chart-b-node h4 { color: var(--white); font-size: 17px; margin-bottom: 6px; }
.chart-b-node p { font-size: 14px; line-height: 1.5; }
.chart-b-connector { display: flex; align-items: center; justify-content: center; }
.chart-b-connector .chev { width: 11px; height: 21px; fill: var(--beige-deep); }
.chart-b-return {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.chart-b-return svg { width: 130px; height: 16px; flex: none; }
@media (max-width: 860px) {
  .chart-b { grid-template-columns: 1fr; }
  .chart-b-connector { padding: 8px 0; }
  .chart-b-connector .chev { transform: rotate(90deg); }
}

/* ---- Chart E: four asset cards ---- */
.chart-e {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}
.chart-e-card {
  background: var(--white);
  border: 1px solid rgba(110, 116, 136, 0.25);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background-color 0.15s;
}
.chart-e-card:hover { background: var(--beige-light); }
.chart-e-card .asset-icon { width: 46px; height: 46px; flex: none; }
.chart-e-card .asset-icon * { stroke: var(--blue); }
.chart-e-card h3 { margin-bottom: 6px; }
.chart-e-card p { font-size: 15px; }
@media (max-width: 720px) { .chart-e { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services timeline — six steps on one literal through-line
   ========================================================================== */
.svc-line {
  position: relative;
  list-style: none;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 8px 0 0;
}
.svc-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 12px;
  width: 3px;
  transform: translateX(-50%);
  background: var(--beige-deep);
  border-radius: 2px;
}
.svc-step {
  position: relative;
  width: calc(50% - 56px);
  margin-bottom: 28px;
}
.svc-step:nth-child(odd) { margin-right: auto; }
.svc-step:nth-child(even) { margin-left: auto; margin-top: -64px; }
.svc-step:last-child { margin-bottom: 0; }
.svc-num {
  position: absolute;
  top: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--cream);
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--beige-light);
  z-index: 1;
}
.svc-step:nth-child(odd) .svc-num { right: -82px; }
.svc-step:nth-child(even) .svc-num { left: -82px; }
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--beige-mid);
  padding: 22px 24px 24px;
  box-shadow: 0 2px 10px rgba(65, 65, 65, 0.06);
}
.svc-card h3 { color: var(--blue); margin-bottom: 8px; }
.svc-card p { font-size: 15px; }
@media (max-width: 860px) {
  .svc-line::before { left: 26px; transform: none; }
  .svc-step,
  .svc-step:nth-child(even) {
    width: auto;
    margin: 0 0 20px;
    padding-left: 76px;
  }
  .svc-step:nth-child(odd) .svc-num,
  .svc-step:nth-child(even) .svc-num { left: 0; right: auto; }
  .svc-step:last-child { margin-bottom: 0; }
}

/* ==========================================================================
   Page-specific pieces
   ========================================================================== */

/* Two-column problem/approach */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }

/* Interactive program-locations map */
.pa2w-map {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  border: 1px solid rgba(110, 116, 136, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  position: relative;
  isolation: isolate; /* keep Leaflet's z-indexed panes below the sticky header */
}
.pa2w-map-canvas {
  min-height: 500px;
  background: #E8EAED;
}
.pa2w-panel {
  background: var(--beige-light);
  padding: 28px;
  border-left: 1px solid rgba(110, 116, 136, 0.2);
}
.pa2w-panel-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.pa2w-panel h3 { color: var(--blue); margin: 6px 0 10px; font-size: 22px; }
.pa2w-panel-body { font-size: 15px; }
.pa2w-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid rgba(110, 116, 136, 0.25);
}
.pa2w-chips button {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(21, 93, 233, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color 0.15s;
}
.pa2w-chips button:hover { background: var(--beige-mid); }
.pa2w-chips button[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--cream);
}
@media (max-width: 860px) {
  .pa2w-map { grid-template-columns: 1fr; }
  .pa2w-map-canvas { min-height: 340px; }
  .pa2w-panel { border-left: 0; border-top: 1px solid rgba(110, 116, 136, 0.2); }
}

/* Atlas placeholder frame */
.atlas-frame {
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}
.atlas-frame .logo-mark { width: 56px; height: 68px; fill: var(--beige-deep); }
.atlas-actions { margin-top: 24px; text-align: center; }

/* ---- Form ---- */
.form { max-width: 640px; }
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-field input, .form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 12px 14px;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--blue);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field .field-error {
  display: none;
  color: #B3261E;
  font-size: 14px;
  margin-top: 6px;
}
.form-field.has-error input, .form-field.has-error textarea { border-color: #B3261E; }
.form-field.has-error .field-error { display: block; }
.form .btn { width: 100%; }
.form-success {
  display: none;
  margin-top: 24px;
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 700;
  color: var(--blue);
}
.form-success.is-visible { display: block; }

/* ---- Footer ---- */
.site-footer {
  background: var(--blue);
  color: var(--cream);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(242, 226, 206, 0.3);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gutter);
  margin-bottom: 40px;
}
.site-footer .brand { margin-bottom: 14px; }
.footer-tagline { font-size: 15px; max-width: 260px; }
.site-footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--beige-mid);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--cream); text-decoration: none; font-size: 15px; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(242, 226, 206, 0.25);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
}
