/* ===========================================================================
   Career Choice — Direction 3 (The Two Doors) — shared design system
   Used by all 9 pages. Edit here, every page updates.
   =========================================================================== */

:root {
  --ink: #1a1a2e;
  --ink-soft: #64648b;
  --ink-dim: #9292ad;           /* original brand value — restored after partner review */
  --paper: #ffffff;
  --soft: #f8f8fc;
  --line: rgba(26, 26, 46, 0.08);
  --line-strong: rgba(26, 26, 46, 0.14);

  --brand: #2d2462;        /* primary navy */
  --brand-deep: #241d52;
  --brand-soft: #f1f0fa;

  --blue: #3a5dad;         /* fresh blue (candidate-side accent) */
  --blue-deep: #2f4d99;
  --blue-soft: #e8eef9;

  --accent: #6b7fa3;       /* cool blue-grey */
  --accent-soft: rgba(107, 127, 163, 0.10);

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(26,26,46,0.04), 0 8px 24px rgba(26,26,46,0.06);
  --shadow-lift: 0 24px 48px -16px rgba(26,26,46,0.12), 0 2px 6px rgba(26,26,46,0.04);
  --max: 1240px;

  /* Status / verdict palette — bg + fg pairs. Used by status pills,
     stage indicators, verdict badges. Light + dark variants below. */
  --status-brief-bg:        #f1f0fa;
  --status-brief-fg:        #2d2462;
  --status-sourcing-bg:     #fff3da;
  --status-sourcing-fg:     #8b6a14;
  --status-shortlisted-bg:  #e8eef9;
  --status-shortlisted-fg:  #3a5dad;
  --status-interviews-bg:   #ddeaff;
  --status-interviews-fg:   #2845a4;
  --status-offer-bg:        #dbf5ea;
  --status-offer-fg:        #1a6f47;
  --status-closed-bg:       #e9e9ed;
  --status-closed-fg:       #5a5a6c;
  --status-paused-bg:       #f4e6e6;
  --status-paused-fg:       #9b4040;

  /* Priority palette — for action-queue items */
  --priority-urgent:        #c63a3a;
  --priority-high:          #f0a830;
  --priority-medium:        #3a5dad;
}

/* Dark mode intentionally not enabled. Brand identity is the navy +
   blue-grey palette in light context; partners need to see THEIR colors,
   not lifted pastels. If dark mode is added later, do it as an opt-in
   user toggle, not via prefers-color-scheme — and lock the brand swatches
   so they don't auto-shift. */

/* Reset & base ---------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
.layout-wrapper { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* Header ---------------------------------------------------------------- */
/* Solid background — quieter than the previous glassmorphism (backdrop blur).
   Cleaner read on every surface, less of an "AI-era web" tell, and avoids
   GPU work on low-end devices that don't accelerate backdrop-filter. */
header.site-chrome {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0; flex-wrap: nowrap; min-width: 0;
}
.site-brand-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
}
.site-brand-logo img { height: 44px; width: auto; flex-shrink: 0; }
.site-brand-logo .brand-name-block {
  display: flex; flex-direction: column; line-height: 1.1;
  border-left: 1px solid var(--line); padding-left: 14px;
}
.site-brand-logo .brand-name-block span {
  font-size: 11px; color: var(--ink-soft);
  font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
}

nav.is-primary { flex-shrink: 0; }
nav.is-primary ul {
  list-style: none; display: flex; align-items: center;
  gap: 2px; flex-wrap: nowrap; white-space: nowrap;
}
nav.is-primary > ul > li { position: relative; flex-shrink: 0; }

nav.is-primary a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
nav.is-primary a:hover { background: var(--soft); color: var(--brand); }
nav.is-primary a.is-active { color: var(--brand); font-weight: 600; background: var(--brand-soft); }

/* Caret rotates when the group is open, signalling state */
nav.is-primary .main-nav-group > a::after {
  content: "▾"; font-size: 9px; opacity: 0.55;
  margin-left: 1px;
  display: inline-block;
  transition: transform 0.18s ease, opacity 0.15s ease, color 0.15s ease;
}
nav.is-primary .main-nav-group:hover > a::after,
nav.is-primary .main-nav-group:focus-within > a::after {
  transform: rotate(180deg); opacity: 1; color: var(--brand);
}

/* Dropdown panel — always rendered so transitions can run; pointer-events
   gated by hover/focus state. The panel abuts the trigger (top: 100%, no
   margin gap) so the cursor can't lose hover crossing a dead zone — once
   the cursor enters the dropdown, hover bubbles up the DOM to the parent
   .main-nav-group, keeping the menu open. Visibility transition is asymmetric:
   snaps on for open, delays off for close (smooth fade without flicker). */
nav.is-primary .main-nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px -6px rgba(26,26,46,0.16), 0 2px 6px rgba(26,26,46,0.06);
  padding: 8px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  pointer-events: none; z-index: 100;
  /* Closing transition: pointer-events + visibility flip after the fade, so
     the user can "rescue" the menu by re-entering it during the 180ms fade-out. */
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0.18s,
    pointer-events 0s linear 0.18s;
}
nav.is-primary .main-nav-group:hover .main-nav-dropdown,
nav.is-primary .main-nav-group:focus-within .main-nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
  /* Opening transition: pointer-events + visibility flip immediately. */
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0s,
    pointer-events 0s linear 0s;
}
nav.is-primary .main-nav-dropdown a {
  display: block; padding: 10px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink); border-radius: 8px; white-space: nowrap;
}
nav.is-primary .main-nav-dropdown a:hover,
nav.is-primary .main-nav-dropdown a:focus-visible {
  background: var(--brand-soft); color: var(--brand);
}

.site-header-cta-group { display: flex; align-items: center; gap: 10px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 600; font-size: 13.5px;
  border: 1px solid transparent; transition: all 0.15s ease;
  white-space: nowrap; cursor: pointer; text-decoration: none;
}
.button.is-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 2px rgba(45,36,98,0.12);
}
.button.is-primary:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(45,36,98,0.22); }
.button.is-blue-variant { background: var(--blue); color: #fff; }
.button.is-blue-variant:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(58,93,173,0.22); }
.button.is-secondary { background: #fff; border-color: var(--line-strong); color: var(--ink); }
.button.is-secondary:hover { background: var(--soft); border-color: var(--accent); }
.button.is-ghost-variant { background: transparent; color: inherit; border: 1px solid currentColor; opacity: 0.85; }
.button.is-ghost-variant:hover { opacity: 1; }

/* Mobile hamburger ------------------------------------------------------ */
.mobile-menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--line);
}
.mobile-menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  position: relative;
}
.mobile-menu-toggle span::before, .mobile-menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.mobile-menu-toggle span::before { top: -6px; }
.mobile-menu-toggle span::after { top: 6px; }

#mobile-menu { display: none; }
#mobile-menu:checked ~ .mobile-menu-drawer { display: block; }

.mobile-menu-drawer {
  display: none; padding: 8px 0 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu-drawer .layout-wrapper { padding-top: 14px; padding-bottom: 14px; }
.mobile-menu-drawer h5 {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
  margin: 14px 0 6px;
}
.mobile-menu-drawer a {
  display: block; padding: 10px 0; font-size: 15.5px;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-menu-drawer a:hover { color: var(--brand); }
.mobile-menu-drawer .action-button-row {
  display: flex; gap: 10px; margin-top: 18px;
}
.mobile-menu-drawer .action-button-row .button { flex: 1; }

/* Toronto skyline ------------------------------------------------------- */
.toronto-skyline-band {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.toronto-skyline-band .skyline-tagline-ribbon {
  text-align: center; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 600;
  padding-top: 28px; margin-bottom: 12px;
}
.toronto-skyline-band .skyline-tagline-ribbon span { display: inline-flex; align-items: center; gap: 14px; }
.toronto-skyline-band .skyline-tagline-ribbon span::before, .toronto-skyline-band .skyline-tagline-ribbon span::after {
  content: ""; width: 32px; height: 1px; background: var(--accent); opacity: 0.5;
}
.toronto-skyline-graphic {
  display: block; width: 100%; height: 160px;
}
.toronto-skyline-graphic rect, .toronto-skyline-graphic polygon, .toronto-skyline-graphic path { fill: var(--brand); }
.toronto-skyline-graphic ellipse { fill: var(--brand); }
.toronto-skyline-graphic ellipse.is-accent-filled, .toronto-skyline-graphic rect.is-accent-filled { fill: var(--blue); }
.toronto-skyline-graphic line { stroke: var(--brand); stroke-width: 1.25; }
.toronto-skyline-graphic .skyline-water-line { stroke: var(--accent); stroke-width: 0.75; opacity: 0.4; fill: none; }

/* Two-door homepage split hero ----------------------------------------- */
.audience-fork-wrapper { position: relative; }
.audience-fork-doors {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 60vh; border-bottom: 1px solid var(--line);
}
.audience-fork-door {
  padding: 64px 56px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.audience-fork-door.audience-fork-hire { background: var(--brand-soft); color: var(--brand); }
.audience-fork-door.audience-fork-look { background: var(--blue-soft); color: var(--brand); }
.audience-fork-doors:hover .audience-fork-door { opacity: 0.55; }
.audience-fork-doors .audience-fork-door:hover { opacity: 1; }
.audience-fork-door .section-eyebrow-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px; color: var(--brand);
}
.audience-fork-door .section-eyebrow-tag::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.5; }
.audience-fork-door.audience-fork-look .section-eyebrow-tag { color: var(--blue); }
.audience-fork-door h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 22px;
  color: var(--brand); font-weight: 400;
}
.audience-fork-door h2 em { font-style: italic; }
.audience-fork-door.audience-fork-hire h2 em { color: var(--blue); }
.audience-fork-door.audience-fork-look h2 em { color: var(--brand); }
.audience-fork-door .lead-paragraph-alt {
  font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); max-width: 38ch;
}
.audience-fork-door .audience-fork-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.audience-fork-door .fact-card-row { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.audience-fork-door .fact-card {
  font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.5px;
  font-weight: 600; text-transform: uppercase;
}
.audience-fork-door .fact-card strong {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: 28px; color: var(--brand); font-weight: 400;
  margin-bottom: 2px; letter-spacing: -0.02em; text-transform: none;
}
.audience-fork-divider {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); z-index: 5;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 18px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
  box-shadow: 0 8px 24px rgba(26,26,46,0.08);
}

/* Standard inner-page hero --------------------------------------------- */
main { padding: 0 0 60px; }
.page-hero-section {
  position: relative; padding: 56px 0 36px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 100%);
}
.hero-content-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 40px; align-items: center;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 6px;
  background: var(--brand-soft); color: var(--brand);
  font-weight: 700; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
h1.page-title-heading {
  margin: 16px 0 14px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.04; letter-spacing: -0.025em;
  color: var(--brand); font-weight: 400;
}
h1.page-title-heading em { font-style: italic; color: var(--blue); }
.lead-paragraph { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); max-width: 58ch; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.trust-signals { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.trust-signals span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 6px;
  background: #fff; border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 12px; font-weight: 600;
}

/* Hero side panel ------------------------------------------------------- */
.info-panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.info-panel h3 {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 700;
  margin-bottom: 14px;
}
.info-panel .metric-figure { display: grid; gap: 8px; }
.info-panel .horizontal-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; padding: 10px 12px;
  background: var(--soft); border-radius: 8px;
}
.info-panel .horizontal-row strong { color: var(--brand); font-size: 15.5px; font-weight: 700; }
.info-panel .horizontal-row span { color: var(--ink-soft); font-size: 12.5px; font-weight: 500; }
.info-panel .inline-note { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.info-panel ul { list-style: none; display: grid; gap: 10px; }
.info-panel ul li {
  display: grid; grid-template-columns: 6px 1fr; gap: 10px; align-items: start;
  font-size: 13.5px; color: var(--ink); line-height: 1.5;
}
.info-panel ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); margin-top: 8px;
}

/* Sections -------------------------------------------------------------- */
section.page-section { padding: 64px 0; border-bottom: 1px solid var(--line); }
section.page-section:last-of-type { border-bottom: none; }
.page-section-title {
  text-align: center;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.page-section-title::before, .page-section-title::after {
  content: ""; width: 24px; height: 1px; background: var(--accent); opacity: 0.5;
}
.page-headline {
  text-align: center;
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12; letter-spacing: -0.025em; color: var(--brand);
  margin: 0 auto 14px; max-width: 22ch;
}
.page-headline em { font-style: italic; color: var(--blue); }
.section-subheading {
  text-align: center; max-width: 56ch; margin: 0 auto 36px;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.6;
}

.column-grid { display: grid; gap: 16px; }
.column-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.column-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.column-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.content-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.content-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.label-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; padding: 4px 10px; border-radius: 5px;
  background: var(--brand-soft); color: var(--brand);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.label-pill.is-blue-variant { background: var(--blue-soft); color: var(--blue); }
.label-pill.is-accent-variant { background: var(--accent-soft); color: var(--accent); }
.content-card h4 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 22px; letter-spacing: -0.015em; color: var(--brand);
  margin: 12px 0 8px;
}
.content-card .is-muted-text { color: var(--ink-soft); line-height: 1.6; font-size: 14.5px; }
.content-card .is-muted-text strong { color: var(--brand); font-weight: 600; }

/* Quotes / testimonials ------------------------------------------------- */
.pull-quote {
  padding: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.pull-quote p {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 19px; line-height: 1.45; color: var(--brand);
  letter-spacing: -0.01em; font-weight: 400;
}
.pull-quote .byline-text {
  margin-top: 14px; font-weight: 700;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft);
}

/* Closing CTA strip ---------------------------------------------------- */
.call-to-action-strip {
  margin-top: 36px; padding: 28px 32px;
  background: var(--brand-soft); border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
}
.call-to-action-strip h3 {
  font-family: 'DM Serif Display', serif; font-size: 24px; font-weight: 400;
  letter-spacing: -0.02em; color: var(--brand); margin-bottom: 4px;
}
.call-to-action-strip p { color: var(--ink-soft); font-size: 14.5px; }
.call-to-action-strip .action-button-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* Forms ---------------------------------------------------------------- */
form { margin-top: 8px; }
label {
  display: block; font-weight: 600; color: var(--brand);
  margin: 14px 0 6px; font-size: 13px;
}
input, textarea, select {
  width: 100%; padding: 11px 14px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 8px;
  font: inherit; font-size: 14.5px; outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(45, 36, 98, 0.16);
}
select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232d2462' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
select::-ms-expand { display: none; }
select:disabled {
  background-color: var(--soft); color: var(--ink-soft);
  cursor: not-allowed; opacity: 0.7;
}
textarea { min-height: 120px; resize: vertical; }
input[type="file"] { padding: 9px 12px; }
.form-note-text {
  font-size: 12.5px; color: var(--ink-soft);
  line-height: 1.5; margin-top: 10px;
}

/* Success banner ------------------------------------------------------- */
.form-success-banner {
  display: none; margin-bottom: 16px;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: var(--radius); padding: 18px 20px;
}
.form-success-banner.is-visible { display: block; }
.form-success-banner h4 { color: var(--brand); font-family: 'DM Serif Display', serif; font-size: 20px; font-weight: 400; margin: 8px 0 4px; }
.form-success-banner p { color: var(--ink-soft); font-size: 14px; }

/* Team portraits ------------------------------------------------------- */
.portrait-image {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-soft), var(--blue-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-family: 'DM Serif Display', serif;
  font-weight: 400; font-size: 26px; letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.contact-info-block { font-size: 13px; margin-top: 8px; }
.contact-info-block a { color: var(--blue); font-weight: 600; }
.contact-info-block a:hover { text-decoration: underline; }

/* Footer --------------------------------------------------------------- */
footer.site-chrome {
  background: var(--brand); color: rgba(255,255,255,0.78);
  padding: 56px 0 36px; margin-top: 0;
}
footer.site-chrome .site-footer-columns {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px; font-size: 13.5px; line-height: 1.7;
}
footer.site-chrome h4 {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; font-weight: 700; margin-bottom: 12px;
}
footer.site-chrome a { display: block; padding: 3px 0; color: rgba(255,255,255,0.68); font-size: 13px; }
footer.site-chrome a:hover { color: #fff; }
footer.site-chrome .site-footer-brand-line {
  font-family: 'DM Serif Display', serif; font-size: 22px;
  color: #fff; margin-bottom: 6px;
}
footer.site-chrome .site-footer-brand-line .brand-name-dot { color: #9bb5e9; }
footer.site-chrome .site-footer-legal {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 11.5px; color: rgba(255,255,255,0.45);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* Focus states --------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
[role="button"]:focus-visible, [tabindex="0"]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px; border-radius: 6px;
}

/* Respect user's reduced-motion preference — global override.
   Keeps tiny easings that aren't motion-sensitive (focus rings); kills
   transforms, transitions on layout properties, smooth scroll. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ===========================================================================
   Responsive — real mobile breakpoints
   =========================================================================== */
@media (max-width: 1024px) {
  .layout-wrapper { padding: 0 22px; }
  .audience-fork-door { padding: 48px 36px; }
}

@media (max-width: 1000px) {
  nav.is-primary, .site-header-cta-group { display: none; }
  .mobile-menu-toggle { display: flex; }
  .site-header-bar { padding: 12px 0; }
  .hero-content-grid { grid-template-columns: 1fr; gap: 24px; }
  .audience-fork-doors { grid-template-columns: 1fr; min-height: auto; }
  .audience-fork-divider { display: none; }
  .audience-fork-door { padding: 44px 22px; min-height: auto; }
  .column-grid.cols-2, .column-grid.cols-3, .column-grid.cols-4 { grid-template-columns: 1fr; }
  footer.site-chrome .site-footer-columns { grid-template-columns: 1fr 1fr; }
  .toronto-skyline-graphic { height: 110px; }
  .toronto-skyline-band .skyline-tagline-ribbon { padding-top: 22px; }
  .call-to-action-strip { flex-direction: column; align-items: flex-start; padding: 24px; }
  section.page-section { padding: 48px 0; }
  .page-hero-section { padding: 36px 0 28px; }
}

/* Tablet breakpoint — 768px — between phone and full-nav */
@media (max-width: 768px) {
  .layout-wrapper { padding: 0 20px; }
  .page-hero-section { padding: 32px 0 24px; }
  h1.page-title-heading { font-size: 34px; }
  .lead-paragraph { font-size: 16px; }
  .hero-cta-group { flex-wrap: wrap; gap: 10px; }
  .content-card, .info-panel { padding: 22px; }
  .toronto-skyline-graphic { height: 100px; }
}

@media (max-width: 480px) {
  .layout-wrapper { padding: 0 16px; }
  body { font-size: 15px; }
  h1.page-title-heading { font-size: 30px; }
  .audience-fork-door h2 { font-size: 32px; }
  .audience-fork-door { padding: 36px 18px; }
  .audience-fork-door .fact-card-row { gap: 20px; }
  .audience-fork-door .fact-card strong { font-size: 24px; }
  .audience-fork-door .audience-fork-cta { flex-direction: column; align-items: stretch; }
  .audience-fork-door .audience-fork-cta .button { width: 100%; }
  .page-headline { font-size: 26px; }
  .toronto-skyline-graphic { height: 90px; }
  .toronto-skyline-band .skyline-tagline-ribbon { font-size: 10px; padding: 16px 0 8px; }
  footer.site-chrome .site-footer-columns { grid-template-columns: 1fr; gap: 24px; }
  footer.site-chrome .site-footer-legal { flex-direction: column; gap: 6px; }
  .call-to-action-strip { padding: 20px; }
  .call-to-action-strip h3 { font-size: 20px; }
  .info-panel { padding: 18px; }
  .content-card { padding: 20px; }
  .content-card h4 { font-size: 19px; }

  /* Hero CTAs full-width on phone */
  .page-hero-section .hero-cta-group { flex-direction: column; gap: 10px; }
  .page-hero-section .hero-cta-group .button { width: 100%; justify-content: center; }
  .page-hero-section .trust-signals { flex-direction: column; gap: 12px; }

  /* Brand mark + tagline scales */
  .site-brand-logo { gap: 10px; }
  .site-brand-logo img { height: 34px; }
  .site-brand-logo .brand-name-block { padding-left: 10px; }
  .site-brand-logo .brand-name-block span { font-size: 9.5px; letter-spacing: 1.1px; }

  /* CTA strip stacks fully */
  .call-to-action-strip .action-button-row { flex-direction: column; gap: 8px; width: 100%; }
  .call-to-action-strip .action-button-row .button { width: 100%; justify-content: center; }
}

/* Touch targets ≥ 44px on coarse pointers (phones, tablets) */
@media (pointer: coarse) {
  .button { min-height: 44px; }
  nav.is-primary a { min-height: 44px; display: inline-flex; align-items: center; }
  .mobile-drawer a { min-height: 44px; }
}

/* iOS Safari zooms on input focus when font-size < 16px — prevent it */
@media (max-width: 480px) {
  input, select, textarea {
    font-size: 16px !important;
  }
  select {
    /* Roomier tap target + chevron clear of text on phones */
    padding: 13px 44px 13px 14px;
    background-position: right 16px center;
    background-size: 14px 10px;
  }
}
