:root {
  /* Brand */
  --blue: #1f4f8b;
  --blue-600: #1a447a;
  --blue-700: #163a68;
  --blue-900: #0e2746;
  --blue-50: #eaf1fa;
  --blue-100: #d3e2f3;

  /* Accent — used sparingly, hi-vis style */
  --amber: #f4a623;
  --amber-700: #c8841a;

  /* Neutrals */
  --ink: #0f1722;
  --ink-2: #324155;
  --muted: #6b7785;
  --line: #dde2eb;
  --surface: #f4f6f9;
  --surface-2: #e9edf3;
  --white: #ffffff;

  /* Footer */
  --footer-bg: #0e2746;
  --footer-line: #1c3a63;
  --footer-text: #95a8c1;
  --footer-text-2: #6c83a3;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --maxw: 1180px;
  --t: .2s cubic-bezier(.4,0,.2,1);

  --shadow-sm: 0 1px 2px rgba(15,23,34,.05);
  --shadow:    0 1px 2px rgba(15,23,34,.05), 0 8px 24px -12px rgba(15,23,34,.18);
  --shadow-lg: 0 2px 4px rgba(15,23,34,.06), 0 18px 38px -18px rgba(15,23,34,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-700); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 .55em;
  letter-spacing: -.018em;
}
h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
}
h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1em; }

/* Legacy hook — script class neutralised so old HTML still works */
.script { font-family: inherit; font-weight: 600; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
/* Plain text links (excludes the .btn CTA so it keeps its button styles) */
.nav-links a:not(.btn) {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink-2); font-weight: 500;
  font-size: .95rem;
  transition: background var(--t), color var(--t);
}
.nav-links a:not(.btn):hover { background: var(--blue-50); color: var(--blue-700); }
.nav-links a.active:not(.btn) { color: var(--blue-700); background: var(--blue-50); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform var(--t), opacity var(--t);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { width: 100%; padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -.005em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); }

.btn-accent {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn-accent:hover { background: var(--amber-700); border-color: var(--amber-700); color: var(--white); }

.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-50); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,39,70,.78) 0%, rgba(14,39,70,.55) 60%, rgba(14,39,70,.85) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--blue-900) center/cover no-repeat;
  filter: contrast(1.02) saturate(.95);
  transform: scale(1.06);
  transition: transform .8s cubic-bezier(.16,.84,.34,1);
  will-change: transform;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 110px 0 90px;
  max-width: 760px;
  transition: transform .8s cubic-bezier(.16,.84,.34,1);
  will-change: transform;
}

/* Hero kicker — clean amber bar + tracked label, no chip background */
.hero-tag {
  display: inline-block;
  padding: 4px 0 4px 14px;
  border-left: 3px solid var(--amber);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
/* Legacy eyebrow class retained for any pages that still use it */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white);
  padding: 4px 0 4px 14px;
  border-left: 3px solid var(--amber);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow .dot { display: none; }

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .underline {
  position: relative; display: inline-block;
  color: var(--white);
}
.hero h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.05em;
  height: .14em;
  background: var(--amber);
  border-radius: 2px;
}
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.86); max-width: 620px; margin-bottom: 30px; font-weight: 400; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Stats — slim transparent row with hairline dividers, no panels */
.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat {
  flex: 1 1 0;
  padding: 4px 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--white);
  position: relative;
  min-width: 0;
}
.hero-stat + .hero-stat::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 28px;
  background: rgba(255,255,255,.18);
}
.hero-stat .num {
  font-size: 1.65rem; font-weight: 800;
  letter-spacing: -.02em;
  color: var(--amber);
  line-height: 1;
  white-space: nowrap;
}
.hero-stat .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 760px) {
  .hero-stats {
    flex-wrap: wrap;
    padding: 20px 0 30px;
  }
  .hero-stat {
    flex: 1 0 50%;
    padding: 10px 14px;
  }
  .hero-stat + .hero-stat::before { display: none; }
  .hero-inner {
    padding: 70px 0 60px;
    text-align: center;
  }
  .hero-inner .hero-tag,
  .hero-inner .eyebrow { display: inline-block; margin-left: 0; }
  .hero-actions { justify-content: center; }
  .hero .container { padding-left: 24px; padding-right: 24px; }
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; position: relative; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--surface); }
.section-paper { background: var(--surface-2); }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; position: relative; }
.section-head .kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Squiggle (legacy class) — converted to a clean amber rule */
.squiggle {
  display: block; margin: 0 auto 18px;
  width: 56px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  color: transparent;
}
.squiggle path { display: none; }

/* In-content kicker (eyebrow above h2 when not in section-head) */
.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 12px;
}

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* 4-card variant — never 3+1; balanced 4-across, 2x2, then 1-col */
.cards.cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .cards.cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .cards.cards-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow var(--t), border-color var(--t), transform .35s cubic-bezier(.2,.7,.3,1);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--ink-2);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.card.is-tilting { transition: box-shadow var(--t), border-color var(--t); }
.card .icon, .card h3, .card p, .card .more { transition: transform .35s cubic-bezier(.2,.7,.3,1); transform: translateZ(0); }
.card:hover .icon { transform: translateZ(20px); }
.card:hover h3 { transform: translateZ(14px); }
.card .icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue);
  margin-bottom: 18px;
  border: 1px solid var(--blue-100);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 6px; color: var(--ink); }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.card .more { margin-top: auto; color: var(--blue); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.card .more::after { content: "→"; transition: transform var(--t); }
.card:hover .more::after { transform: translateX(4px); }

/* ---------- Two-column feature ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.feature-list .check {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 3px;
}
.feature-list .check svg { width: 13px; height: 13px; }

/* ---------- Trust band ---------- */
.trust {
  background: var(--blue-900);
  color: var(--white);
  padding: 30px 0;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 24px 36px; align-items: center; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ico {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
}
.trust-item .ico svg { width: 20px; height: 20px; color: var(--amber); }
.trust-item strong { display: block; font-size: .98rem; color: var(--white); font-weight: 600; }
.trust-item span { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ---------- Pricing / option grid ---------- */
.options { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 800px) { .options { grid-template-columns: 1fr; } }
.option {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.option:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.option.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}
.option .tag {
  position: absolute; top: -12px; left: 22px;
  background: var(--amber); color: var(--ink);
  padding: 4px 12px; border-radius: 999px;
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.option h3 { margin-bottom: 4px; }
.option .sub { color: var(--muted); font-size: .94rem; margin-bottom: 18px; }
.option ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.option ul li { display: flex; gap: 10px; color: var(--ink-2); align-items: flex-start; }
.option ul li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); margin-top: 9px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--blue-900);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band .kicker { color: var(--amber); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 22px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white); font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.site-footer a { color: var(--footer-text); }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .94rem; }
.site-footer .brand { margin-bottom: 14px; }
.site-footer .brand img { height: 40px; }
.foot-about p { font-size: .94rem; color: var(--footer-text); margin-bottom: 12px; }
.foot-bottom {
  border-top: 1px solid var(--footer-line);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem; color: var(--footer-text-2);
}
.foot-bottom a { color: var(--footer-text-2); }

/* ---------- Page header ---------- */
.page-hero {
  background: var(--blue-900);
  color: var(--white);
  padding: 78px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--blue-700);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.crumbs {
  font-size: .78rem;
  color: var(--amber);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: var(--amber); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact-info h3 { margin-bottom: 16px; }
.info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--blue-50); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  border: 1px solid var(--blue-100);
}
.info-row .icon svg { width: 20px; height: 20px; }
.info-row .lbl {
  font-size: .72rem; color: var(--blue);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
  margin-bottom: 2px;
}
.info-row .val { color: var(--ink); font-weight: 500; font-size: 1rem; }

.form { display: grid; gap: 14px; }
.form label { font-size: .85rem; color: var(--ink-2); font-weight: 600; display: block; margin-bottom: 6px; letter-spacing: -.005em; }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,79,139,.15);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
  aspect-ratio: 16/9;
  background: var(--surface);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Reveal ---------- */
.js .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .hero-inner { transition: none !important; transform: none !important; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-50); color: var(--blue-700);
  padding: 4px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  border: 1px solid var(--blue-100);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ---------- Photo gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.gallery figure:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.gallery figure img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.16,.84,.34,1); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure figcaption {
  padding: 12px 16px 14px;
  font-size: .96rem;
  color: var(--ink);
  font-weight: 600;
}
.gallery figure figcaption .sub {
  display: block;
  color: var(--blue);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Hero variant: large photo backdrop */
.hero.hero-canopy .hero-bg { background-image: url('../assets/photos/hero-canopy.jpg'); }

/* Tenant strip ("already here") */
.tenant-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .tenant-strip { grid-template-columns: 1fr; } }
.tenant-strip .tt {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.tenant-strip .tt:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.tenant-strip .tt img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.16,.84,.34,1); }
.tenant-strip .tt:hover img { transform: scale(1.04); }
.tenant-strip .tt .meta { padding: 18px 20px 20px; }
.tenant-strip .tt .meta .who {
  color: var(--blue);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.tenant-strip .tt .meta strong {
  font-weight: 700; color: var(--ink); display: block; font-size: 1.02rem;
}
.tenant-strip .tt .meta p { color: var(--muted); font-size: .92rem; margin: 4px 0 0; }

/* Pitch quote (about page) */
.pitch-quote {
  background: var(--surface);
  border-left: 3px solid var(--amber);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 26px 0;
  font-weight: 500;
  line-height: 1.5;
}
.pitch-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: .82rem;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}
