/* ============================================================
   36 Draper Street — development microsite
   Presented by Klyne Real Estate
   Palette mirrors the building: charcoal + render white + Klyne blue
   ============================================================ */

:root {
  --ink: #0c0e13;          /* asphalt — page dark */
  --ink-2: #14171f;        /* basalt — raised dark surfaces */
  --paper: #f7f6f3;        /* render white — light sections */
  --white: #ffffff;
  --blue: #2748cc;         /* Klyne blue */
  --blue-deep: #1b34a0;
  --zinc: #a9b0c1;         /* muted on dark */
  --zinc-soft: #8f97a8;    /* dimmest on dark — decorative only, never body copy */
  --grey: #4d5464;         /* muted on light */
  --hair: #e4e5ea;         /* hairline on light */
  --hair-dark: #232734;    /* hairline on dark */

  --font-display: "Poppins", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --w-max: 1160px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: rgba(39, 72, 204, 0.22); }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p { text-wrap: pretty; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--w-max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); }
.on-dark .eyebrow,
.on-dark2 .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow { color: #93a6f2; }
.on-dark .eyebrow::before,
.on-dark2 .eyebrow::before,
.page-hero .eyebrow::before,
.hero .eyebrow::before { background: #93a6f2; }

h1, h2, h3 { font-weight: 600; line-height: 1.14; letter-spacing: -0.015em; text-wrap: balance; }
.h-display { font-size: clamp(38px, 6.4vw, 72px); font-weight: 700; letter-spacing: -0.025em; }
.h-section { font-size: clamp(27px, 3.6vw, 41px); margin: 14px 0 18px; }
.lede { font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.62; color: var(--grey); max-width: 58ch; }
.on-dark .lede,
.on-dark2 .lede,
.page-hero .lede { color: var(--zinc); }

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

/* ---------- header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(12, 14, 19, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--white);
}
.site-head .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand .mark { font-weight: 700; letter-spacing: 0.08em; font-size: 15px; }
.brand .mark span { color: var(--blue); margin-left: 4px; }
.brand .dev {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--zinc);
  padding-left: 12px; border-left: 1px solid var(--hair-dark);
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14px; font-weight: 500; color: #d7dbe6;
  transition: color 0.2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"] { position: relative; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.nav .tel {
  font-family: var(--font-mono); font-size: 13px; color: var(--white);
  padding: 9px 16px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav .tel:hover { border-color: var(--blue); background: rgba(39, 72, 204, 0.18); }

.nav-toggle { display: none; background: none; border: 0; color: var(--white); width: 40px; height: 40px; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .brand .dev { display: none; }
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12, 14, 19, 0.97);
    border-bottom: 1px solid var(--hair-dark);
    padding: 8px 0 16px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px var(--pad); font-size: 15px; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .tel { margin: 10px var(--pad) 0; text-align: center; }
  .nav-toggle { display: grid; place-items: center; }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--ink); color: var(--white);
  overflow: hidden;
}
#hero-media { position: absolute; inset: 0; overflow: hidden; perspective: 1400px; touch-action: pan-y; }
.hero-stage { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; }
.hero-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  backface-visibility: hidden; will-change: transform, opacity;
}
.hero-svg.v-hidden { display: none; }
.unit-hotspot {
  fill: #2748cc; fill-opacity: 0; stroke: #6f86ea; stroke-width: 0; cursor: pointer;
  transition: fill-opacity 0.25s ease, stroke-width 0.25s ease;
  outline: none;
}
.unit-hotspot.hot, .unit-hotspot:focus-visible { fill-opacity: 0.22; stroke-width: 2.5; }
.unit-hotspot.pulse { fill-opacity: 0.26; stroke-width: 2.5; }
.unit-hotspot.debug { fill-opacity: 0.16; stroke-width: 1.5; }
#hero-media.no-render .hero-stage { display: none; }

/* orbit controls */
.hero-orbit {
  position: absolute; right: var(--pad); bottom: clamp(40px, 8vh, 84px); z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.hero-orbit .hint {
  position: static;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #cdd3e0;
  text-shadow: 0 1px 10px rgba(8,10,15,0.6);
  display: flex; align-items: center; gap: 10px;
}
.hint-touch { display: none; }
@media (hover: none), (pointer: coarse) {
  .hint-hover { display: none; }
  .hint-touch { display: inline; }
}
.orbit-row { display: flex; align-items: center; gap: 14px; }
.orbit-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(12, 14, 19, 0.45);
  color: var(--white); font-size: 19px; line-height: 1; display: grid; place-items: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.orbit-btn:hover { border-color: var(--blue); background: rgba(39, 72, 204, 0.3); }
.orbit-meta { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 138px; }
.orbit-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
}
.orbit-dots { display: flex; gap: 6px; }
.orbit-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.28); transition: background 0.2s; }
.orbit-dots i.on { background: var(--blue); }
@media (max-width: 700px) {
  .hero { flex-direction: column; justify-content: flex-end; align-items: stretch; }
  .hero .content { padding-bottom: 6px; }
  .hero-orbit {
    position: static; align-self: center; width: fit-content;
    transform: none; margin: 16px 0 30px;
  }
  .hero-orbit .hint { display: none; }
}
@media (max-width: 700px) and (max-height: 700px) {
  .hero .content { padding-top: 84px; }
  .hero .sub { margin-top: 10px; }
  .hero .cta-row { margin-top: 14px; }
  .hero-orbit { margin: 10px 0 16px; }
}
.hero .veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    /* scrim anchored under the text, feathering out before it reaches the building */
    radial-gradient(150% 115% at -10% 100%, rgba(10,12,17,0.97) 0%, rgba(10,12,17,0.95) 34%, rgba(10,12,17,0.84) 52%, rgba(10,12,17,0.44) 68%, rgba(10,12,17,0.10) 82%, rgba(10,12,17,0) 92%),
    /* light seating for the nav and the orbit controls */
    linear-gradient(180deg, rgba(10,12,17,0.55) 0%, rgba(10,12,17,0.04) 18%, rgba(10,12,17,0) 44%, rgba(10,12,17,0.34) 84%, rgba(10,12,17,0.62) 100%);
}
@media (max-width: 700px) {
  .hero .veil {
    background:
      linear-gradient(180deg, rgba(10,12,17,0.66) 0%, rgba(10,12,17,0.14) 16%, rgba(10,12,17,0.70) 36%, rgba(10,12,17,0.94) 54%, rgba(10,12,17,0.97) 100%);
  }
}
.hero .content {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: clamp(40px, 8vh, 84px); padding-top: 140px;
  pointer-events: none;
}
.hero .content a { pointer-events: auto; }
.hero .h-display { max-width: 12ch; }
.hero .sub {
  margin-top: 18px; font-size: clamp(16px, 1.8vw, 18.5px); line-height: 1.6;
  color: #cdd3e0; max-width: 54ch;
  text-shadow: 0 1px 14px rgba(8, 10, 15, 0.55);
}
.hero .h-display { text-shadow: 0 2px 26px rgba(8, 10, 15, 0.5); }
.hero .cta-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero .hint .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* 3D tooltip */
.unit-tip {
  position: absolute; z-index: 5; pointer-events: none;
  background: rgba(12, 14, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  padding: 12px 16px;
  transform: translate(-50%, calc(-100% - 16px));
  opacity: 0; transition: opacity 0.15s ease;
  min-width: 190px;
}
.unit-tip.show { opacity: 1; }
.unit-tip .u { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; color: #93a6f2; text-transform: uppercase; }
.unit-tip .n { font-weight: 600; font-size: 16px; margin: 2px 0 4px; color: var(--white); }
.unit-tip .d { font-family: var(--font-mono); font-size: 12.5px; color: var(--zinc); }
.unit-tip .s { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; margin-top: 7px; color: var(--white); }
.unit-tip .s.uo { color: var(--zinc); }
.unit-tip .tap-more {
  margin-top: 9px; padding-top: 9px; border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 11.5px; color: #9db0f5;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 500; font-size: 14.5px; line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn .chev { color: currentColor; opacity: 0.85; font-weight: 600; }
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 6px 20px -6px rgba(39, 72, 204, 0.65);
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 26px -8px rgba(39, 72, 204, 0.75); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }
.btn-ghost-dark { border-color: #c9ccd6; color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--ink); }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 11vh, 120px) 0; }
.section.tight { padding: clamp(56px, 8vh, 88px) 0; }
.on-dark { background: var(--ink); color: var(--white); }
.on-dark2 { background: var(--ink-2); color: var(--white); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- unit schedule (home) ---------- */
.schedule { border-top: 1px solid var(--hair); }
.schedule .row {
  display: grid;
  grid-template-columns: 110px 1fr 150px 150px;
  align-items: center; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  transition: background 0.2s var(--ease);
}
.schedule .row {
  position: relative;
  padding-left: 0;
}
.schedule .row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--blue); transform: scaleY(0); transform-origin: center;
  transition: transform 0.25s var(--ease);
}
.schedule .row:hover { background: rgba(39, 72, 204, 0.05); }
.schedule .row:hover::before { transform: scaleY(1); }
.schedule .unit { font-family: var(--font-mono); font-weight: 500; font-size: 14.5px; }
.schedule .cfg { color: var(--grey); font-size: 15px; }
.schedule .price { font-family: var(--font-mono); font-size: 15px; text-align: right; }
.schedule .status { text-align: right; }
.tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.tag.avail { color: var(--blue); border: 1px solid rgba(39, 72, 204, 0.4); }
.tag.uo { color: var(--grey); border: 1px solid var(--hair); background: #efeff2; }
@media (max-width: 720px) {
  .schedule .row { grid-template-columns: 70px 1fr auto; }
  .schedule .price { display: none; }
}

/* ---------- feature band ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair-dark); border: 1px solid var(--hair-dark); border-radius: var(--radius); overflow: hidden; }
.features .cell {
  background: var(--ink-2); padding: 32px 28px;
  transition: background 0.3s var(--ease);
}
.features .cell:hover { background: #1a1e29; }
.features .k { font-family: var(--font-mono); font-size: 26px; color: var(--white); }
.features .k small { font-size: 13px; color: var(--zinc); margin-left: 4px; }
.features .l { margin-top: 10px; font-size: 14.5px; color: var(--zinc); line-height: 1.62; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; } }

/* ---------- media figures ---------- */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(145deg, #1a1e29, #10131b);
  aspect-ratio: 4 / 3;
}
.ph.wide { aspect-ratio: 16 / 9; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph .ph-fallback {
  position: absolute; inset: 0; display: none;
  place-items: center; text-align: center;
  color: var(--zinc); font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 20px;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(39,72,204,0.25), transparent 60%),
    linear-gradient(145deg, #1a1e29, #10131b);
}
.ph.missing .ph-fallback { display: grid; }
.ph.missing img { display: none; }

/* ---------- gallery ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 34px; }
.filter-btn {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 999px; border: 1px solid var(--hair); background: none; color: var(--grey);
  transition: all 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.grid-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-gallery .ph { cursor: zoom-in; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.grid-gallery .ph img { transition: transform 0.5s var(--ease); }
.grid-gallery .ph:hover { transform: translateY(-5px); box-shadow: 0 18px 38px -18px rgba(12, 14, 19, 0.5); }
.grid-gallery .ph:hover img { transform: scale(1.045); }
.grid-gallery figcaption {
  margin-top: 11px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey);
}
@media (max-width: 900px) { .grid-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-gallery { grid-template-columns: 1fr; } }

.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(8, 10, 14, 0.94);
  align-items: center; justify-content: center; padding: 5vmin;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; }
.lightbox .lb-cap {
  position: absolute; bottom: 4vmin; left: 50%; transform: translateX(-50%);
  color: var(--zinc); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(12, 14, 19, 0.6);
  color: var(--white); font-size: 20px; display: grid; place-items: center;
}
.lb-btn:hover { border-color: var(--white); }
.lb-prev { left: 3vmin; }
.lb-next { right: 3vmin; }
.lb-close { position: absolute; top: 3vmin; right: 3vmin; transform: none; }

/* ---------- floor plans ---------- */
.unit-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 38px; }
.unit-tab {
  font-family: var(--font-mono); font-size: 13.5px; letter-spacing: 0.05em;
  padding: 12px 22px; border-radius: 999px;
  border: 1px solid var(--hair); background: none; color: var(--grey);
  transition: all 0.2s var(--ease);
}
.unit-tab:hover { border-color: var(--ink); color: var(--ink); }
.unit-tab.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.unit-tab .uo-dot { color: inherit; opacity: 0.75; margin-left: 6px; font-size: 11px; }

.plan-panel { display: none; }
.plan-panel.active { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
@media (max-width: 900px) { .plan-panel.active { grid-template-columns: 1fr; } }

.plan-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plan-fig {
  aspect-ratio: auto; min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.plan-fig img {
  width: 100%; height: auto; max-height: 620px;
  object-fit: contain; border-radius: 4px; background: #fff;
}
.plan-figs figcaption {
  margin-top: 11px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey);
}
@media (max-width: 560px) { .plan-figs { grid-template-columns: 1fr; } }

.spec-list { border-top: 1px solid var(--hair); }
.spec-list .spec {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 15px 0; border-bottom: 1px solid var(--hair);
}
.spec-list .spec dt { font-size: 13px; color: var(--grey); font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.spec-list .spec dd { font-weight: 500; font-size: 15.5px; text-align: right; }
.plan-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- contact ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 20px 50px -30px rgba(12, 14, 19, 0.28);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1px solid #d5d7de; border-radius: 10px; background: var(--paper);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(39, 72, 204, 0.15);
}
.form-note { font-size: 13px; color: var(--grey); margin-top: 14px; line-height: 1.6; }
.form-status { margin-top: 16px; font-size: 14px; display: none; padding: 13px 16px; border-radius: 10px; }
.form-status.ok { display: block; background: rgba(39, 72, 204, 0.08); color: var(--blue-deep); border: 1px solid rgba(39, 72, 204, 0.25); }
.form-status.err { display: block; background: #faf0f0; color: #8c2f2f; border: 1px solid #e6c9c9; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.agent-card { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }
.agent-card .role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: #93a6f2; }
.agent-card h3 { font-size: 24px; margin: 10px 0 4px; }
.agent-card .org { color: var(--zinc); font-size: 14.5px; line-height: 1.6; }
.agent-card .lines { margin-top: 24px; border-top: 1px solid var(--hair-dark); }
.agent-card .line {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--hair-dark);
  font-family: var(--font-mono); font-size: 14px;
}
.agent-card .line span { color: var(--zinc); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; align-self: center; }
.agent-card .line a:hover { color: #a8b6f2; }

.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); filter: grayscale(0.2); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .h-section { max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-band .cta-row { justify-content: center; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: var(--zinc); padding: 46px 0; font-size: 13.5px; }
.site-foot .row { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: space-between; }
.site-foot .brand-line { color: var(--white); font-weight: 600; letter-spacing: 0.08em; }
.site-foot .brand-line span { color: var(--blue); }
.site-foot .fine { font-size: 12.5px; line-height: 1.7; }
.site-foot a:hover { color: var(--white); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- page hero (interior pages) ---------- */
.page-hero { background: var(--ink); color: var(--white); padding: 150px 0 64px; }
.page-hero .lede { margin-top: 14px; }

/* focus visibility */
:focus-visible { outline: 3px solid #5f7ae8; outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .page-hero :focus-visible, .site-head :focus-visible { outline-color: #93a6f2; }
