/* =====================================================================
   CIIN Co – site styles
   ---------------------------------------------------------------------
   1. Fonts
   2. Design tokens (colors, spacing, type) – change the look here
   3. Base / reset
   4. Layout helpers & buttons
   5. Header & navigation
   6. Hero
   7. Sections: about, stats banner, services, listings, contact, New York
   8. Footer
   9. Utilities
   ===================================================================== */

/* 1. Fonts ------------------------------------------------------------
   Self-hosted, open-license (SIL OFL) fonts. Licenses are in assets/fonts/.
   Montserrat = headings (clean, geometric, similar to the Placester-era look)
   Open Sans  = body text (the old CIIN Co site used Open Sans)          */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-variable-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-variable-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* 2. Design tokens ----------------------------------------------------- */
:root {
  /* Brand blues – taken from the old site (#0072BC, #2D98DE) and the current logo (#447FC1) */
  --blue-700: #005a96;   /* hover state for buttons */
  --blue-600: #0072bc;   /* main brand blue: buttons, links (5.1:1 with white) */
  --blue-500: #447fc1;   /* logo blue: decorative accents */
  --blue-400: #2d98de;   /* old site's bright blue: accents on dark backgrounds */
  --blue-100: #e6f1fa;   /* light tint for icon backgrounds */

  --navy-900: #0b2545;   /* hero, footer */
  --navy-800: #0e3a66;

  --ink: #1d2733;        /* headings and body text */
  --muted: #56606b;      /* secondary text (close to the logo's gray) */
  --line: #dde3ea;       /* borders */
  --bg: #ffffff;
  --bg-soft: #f4f7fa;    /* alternating section background */

  --font-heading: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.25);

  --container: 1160px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-space: clamp(56px, 8vw, 96px);
  --header-height: 76px;
}

/* 3. Base / reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px); /* anchor links land below the sticky header */
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;           /* 17px */
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: inherit;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
address { font-style: normal; }

a { color: var(--blue-600); text-underline-offset: 3px; }
a:hover { color: var(--blue-700); }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 4. Layout helpers & buttons ------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-space); }
.section-soft { background: var(--bg-soft); }
.section-title { margin-bottom: 1.25em; }
.section-title-tight { margin-bottom: 0.4em; }
.section-intro { max-width: 60ch; margin-bottom: 2rem; color: var(--muted); }

/* Small label above headings – with a short blue bar, a nod to the old site's blue title bars */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}
.eyebrow-light { color: #8cc8f0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;               /* comfortable tap target on phones */
  padding: 0.75em 1.5em;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 40px; padding: 0.5em 1.1em; font-size: 0.9rem; }
.btn-lg { min-height: 56px; padding: 0.9em 1.9em; font-size: 1.05rem; }
.btn-icon { width: 1.1em; height: 1.1em; fill: currentColor; }

.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-700); color: #fff; }

.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { background: var(--blue-100); color: var(--navy-900); }

.btn-outline { border-color: var(--blue-600); color: var(--blue-600); background: #fff; }
.btn-outline:hover { background: var(--blue-600); color: #fff; }


.tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.tag-lg { margin: 0; padding: 6px 14px; font-size: 0.78rem; }

/* 5. Header & navigation ------------------------------------------------ */
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 16px; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}
.brand img { width: 150px; height: auto; }
.header-call { white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; gap: 26px; margin: 0; padding: 0; list-style: none; }
.site-nav ul a {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 8px 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.site-nav ul a::after {           /* underline that grows on hover / marks the current page */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav ul a:hover::after,
.site-nav ul a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav ul a[aria-current="page"] { color: var(--blue-600); }

.nav-toggle { display: none; }

/* Phones, tablets and small laptops (under 1080px): collapsible menu.
   The menu only collapses when JavaScript is running (html.js), so it's never hidden for good. */
@media (max-width: 1079px) {
  .brand img { width: 130px; }

  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font: 600 0.95rem var(--font-heading);
    cursor: pointer;
  }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle-bars { position: relative; }
  .nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bars::before { top: -6px; }
  .nav-toggle-bars::after { top: 6px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

  .site-header .header-inner { flex-wrap: wrap; }
  .site-nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 16px;
  }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul li + li { border-top: 1px solid var(--line); }
  .site-nav ul a { display: block; padding: 14px 4px; font-size: 1.05rem; }
  .site-nav ul a::after { display: none; }
  .header-call { width: 100%; }
}

/* 6. Hero ---------------------------------------------------------------
   Breadcrumb, then a wide skyline banner with no color overlay.
   The bottom of the photo fades into a translucent light-gray strip,
   which flows into a solid gray panel holding the headline. */
:root {
  --hero-gray: #e4e6e9;                        /* panel under the photo */
  --hero-strip: rgba(228, 230, 233, 0.72);     /* see-through strip at the bottom of the photo */
}
.hero { padding-top: 18px; }

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--muted);
}
.breadcrumb li + li::before {
  content: "|";
  margin: 0 10px;
  color: #9aa3ad;
}
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

.hero-banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;                         /* phones: taller crop so the buildings stay visible */
  background: var(--hero-gray);
}
@media (min-width: 600px) { .hero-banner { aspect-ratio: 16 / 7; } }
@media (min-width: 900px) { .hero-banner { aspect-ratio: 3 / 1; } }   /* wide panorama on computers */

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;                 /* favors the skyline and fountain over the lower lake */
}
.hero-banner::after {                          /* the translucent strip along the bottom edge */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14%;
  background: var(--hero-strip);
}

.hero-panel {
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 44px) clamp(28px, 4.5vw, 48px);
  background: var(--hero-gray);
}
.hero-panel .eyebrow { color: var(--blue-700); }   /* darker blue: readable on the gray panel */
.hero-panel h1 { max-width: 24ch; font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.hero-panel .lead {
  max-width: 62ch;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #3f4852;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

/* 7. About us ------------------------------------------------------------ */
.about-grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.about-copy h2 { max-width: 22ch; }
.about-copy p:not(.eyebrow) { max-width: 62ch; color: var(--muted); }
.about-copy p.about-lead { font-size: 1.15rem; color: var(--ink); }

.about-copy h3 { margin-top: 1.5em; }
.about-types { grid-column: 1 / -1; }
.about-types h3 { margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.chips li {
  padding: 6px 14px;
  border: 1px solid #b9d3ea;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.about-facts {
  padding: clamp(24px, 3.5vw, 32px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);   /* same blue accent as the service cards */
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.about-facts dl { margin: 0; }
.about-facts dl > div { padding-block: 14px; border-top: 1px solid var(--line); }
.about-facts dl > div:first-child { padding-top: 0; border-top: 0; }
.about-facts dl > div:last-child { padding-bottom: 0; }
.about-facts dt {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-facts dd { margin: 4px 0 0; font-weight: 600; }

/* 7. Stats banner (below About us) -------------------------------------
   Dark full-width band with three big numbers. */
.stats {
  background: var(--navy-900);
  color: #fff;
}
.stats-list {
  display: grid;
  gap: 36px;
  margin: 0 auto;
  padding-block: clamp(48px, 7vw, 80px);
  list-style: none;
  text-align: center;
}
@media (min-width: 720px) {
  .stats-list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.stats-list li { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9d6e6;
}

/* 7a. Services ---------------------------------------------------------- */
.cards {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}
.card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-600);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.card p { margin: 0; color: var(--muted); }
.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 50%;
  background: var(--blue-100);
  fill: var(--blue-600);
}

/* Consulting services checklist (inside the Services section) */
.consulting {
  margin-top: 40px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.consulting h3 { font-size: 1.35rem; margin-bottom: 18px; }
.check-list {
  display: grid;
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 600px) { .check-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .check-list { grid-template-columns: repeat(3, 1fr); } }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before {              /* blue check mark */
  content: "";
  position: absolute;
  left: 2px; top: 0.35em;
  width: 7px; height: 13px;
  border: solid var(--blue-600);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* 7b. Listings: separate commercial and residential panels -------------- */
.listings {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-600) 0%, #005f9e 100%);
}
.listings-inner { padding-block: clamp(48px, 7vw, 80px); }
.listings-head { margin-bottom: 28px; }
.listings h2 { margin-bottom: 0.35em; }
.listings p { margin: 0; max-width: 60ch; }
.listings .eyebrow-light { color: #fff; }

.listing-panels { display: grid; gap: 20px; }
@media (min-width: 760px) { .listing-panels { grid-template-columns: 1fr 1fr; gap: 24px; } }
.listing-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(22px, 3.5vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(0, 40, 80, 0.28);
}
.listing-panel h3 { margin: 0; font-size: 1.35rem; }
.listing-panel .btn { margin-top: auto; }

/* 7c. Contact ----------------------------------------------------------- */

/* Agent cards: photo on the left on phones, photo on top from tablet size up */
.agents {
  display: grid;
  gap: 20px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}
@media (min-width: 600px) { .agents { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .agents { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.agent-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.agent-card picture { flex: none; }
.agent-photo {
  flex: none;
  width: 112px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  background: var(--blue-100);
}
.agent-body { display: flex; flex-direction: column; min-width: 0; }
.agent-name { margin: 0; font-size: 1.15rem; }
.agent-title { margin: 2px 0 10px; color: var(--muted); font-size: 0.95rem; }
.agent-contact { margin: 0 0 14px; padding: 0; list-style: none; font-size: 0.95rem; }
.agent-contact li { display: flex; align-items: center; gap: 8px; padding-block: 3px; }
.agent-contact svg { flex: none; width: 16px; height: 16px; fill: var(--blue-600); }
.agent-contact a { overflow-wrap: anywhere; }
.agent-message { align-self: flex-start; margin-top: auto; }

@media (min-width: 600px) {
  .agent-card { flex-direction: column; padding: 0; overflow: hidden; }
  .agent-photo { width: 100%; aspect-ratio: 1 / 1; border-radius: 0; }
  .agent-body { flex: 1; padding: 20px 22px 24px; }
}

.contact-grid { display: grid; gap: 28px; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

.office-card,
.contact-form {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.office-card h3, .contact-form h3 { font-size: 1.35rem; margin-bottom: 0.25em; }
.office-person { margin: 0; color: var(--muted); }

.details { margin: 24px 0 0; padding: 0; list-style: none; }
.details li {
  display: flex;
  gap: 16px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
}
.details svg {
  flex: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 50%;
  background: var(--blue-100);
  fill: var(--blue-600);
}
.details div { display: flex; flex-direction: column; }
.detail-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-note { color: var(--muted); font-size: 0.95rem; }
.field-row { display: grid; gap: 0 20px; }
@media (min-width: 600px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { margin-bottom: 6px; font-weight: 600; font-size: 0.95rem; }
.req { color: #b42318; }
.optional { font-weight: 400; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #7b8794;      /* 3.6:1 contrast so field edges are visible */
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;                /* 16px+ stops iPhones zooming in on focus */
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(0, 114, 188, 0.35);
  outline-offset: 0;
  border-color: var(--blue-600);
}
.field [aria-invalid="true"] { border-color: #b42318; }

.contact-form .btn { width: 100%; margin-top: 4px; }
@media (min-width: 600px) {
  .contact-form .btn { width: auto; }
}
.form-privacy { margin: 0 0 16px; font-size: 0.9rem; color: var(--muted); }
.form-status { margin: 14px 0 0; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.is-warning {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fff6e0;
  color: #6b4a00;
}

/* Spam-trap field: kept off-screen */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 7d. New York – coming soon ------------------------------------------ */
.coming-soon {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 40px);
  border: 2px dashed #b9c9da;
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.coming-soon > div { flex: 1 1 320px; }
.coming-soon h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.coming-soon p { margin: 0; color: var(--muted); max-width: 70ch; }

/* 8. Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #c9d6e6; font-size: 0.95rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-block: 48px 32px;
}
.footer-name { margin: 0 0 4px; font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-inner p { margin: 0 0 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-block; padding-block: 6px; }
.footer-bottom {
  padding-block: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
}
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: underline; }

/* Fair housing block: EHO logo + slogan + nondiscrimination statement */
.fair-housing {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.eho-logo { flex: none; width: 76px; height: 76px; background: #fff; padding: 4px; border-radius: 4px; }
.eho-logo-placeholder {
  flex: none;
  display: grid;
  place-items: center;
  width: 84px; min-height: 64px;
  padding: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  font-size: 0.6rem;
  line-height: 1.2;
  text-align: center;
}
.eho-slogan { margin: 0 0 4px; font-family: var(--font-heading); font-weight: 700; color: #fff; }
.eho-statement { margin: 0; max-width: 90ch; font-size: 0.875rem; }

/* Text pages (e.g. accessibility.html) */
.prose { max-width: 72ch; }
.prose h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.prose h2 { font-size: 1.4rem; margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose .updated { color: var(--muted); }

/* 9. Utilities ---------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
