/* =====================================================================
   The Brock Institute — rebuilt static site
   Stylesheet faithfully reconstructed from brockinstitute.org
   ===================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@300;400;600;700&display=swap');

/* ---------- Variables ---------- */
:root {
  --white: #ffffff;
  --gray-light: #f6f6f6;
  --gray: #e0dede;
  --teal: #25afb4;
  --body-text: #858a9f;
  --slate: #4c5166;
  --ink: #333333;
  --gold: #f5af2d;
  --heading-blue: #33658a;
  --orange: #f2641a;
  --cream: #f7e6c4;
  --sky: #c5e8f7;
  --footer-bg: #363b47;
  --contact-bg: #3f4a5a;
  --container: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 2.05;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* backstop against horizontal scroll; unlike hidden it
                       creates no scroll container, so the sticky header is safe */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.bg-light { background: var(--gray-light); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: 'Roboto Slab', serif; font-weight: 700; color: var(--slate); text-transform: none; line-height: 1.3; }
h1 { font-size: 34px; margin-bottom: 18px; }
h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 20px; }
h3 { font-size: 21px; margin-bottom: 12px; }
h4 { font-size: 17px; margin-bottom: 10px; }
/* Homepage uses condensed uppercase section headings */
.home h2, .home h3, .home h4 { font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; color: var(--heading-blue); }
.home h2 { letter-spacing: 2px; font-size: 32px; }
.home h3 { letter-spacing: .5px; font-size: 18px; }
p { margin-bottom: 20px; }
strong, b { font-weight: 600; color: var(--slate); }
em, i { font-style: italic; }
blockquote {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.5;
  margin: 28px 0;
  padding-left: 22px;
  border-left: 3px solid var(--teal);
}
.content a:not(.btn):not(.learn-more) { color: var(--teal); font-weight: 400; }
.content a:not(.btn):not(.learn-more):hover { color: var(--orange); }
.content ul { margin: 0 0 22px 0; }
.content ul li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.content ul li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 9px; height: 9px; border-radius: 50%; background: #1566b2;
}
.content ol { margin: 0 0 22px 22px; }
.content ol li { margin-bottom: 10px; }
.content h2, .content h3 { margin-top: 34px; }
.content h2:first-child, .content h3:first-child { margin-top: 0; }

/* ---------- Section heading w/ teal divider ---------- */
.heading-block { text-align: center; margin-bottom: 46px; }
.heading-block h2 { margin-bottom: 16px; }
.divider { width: 100px; height: 3px; background: var(--body-text); border: 0; margin: 0 auto; }
.divider-left { margin: 0 0 22px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 13px 30px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s ease;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #d2540f; color: #fff; }
.btn-slate { background: var(--slate); color: #fff; }
.btn-slate:hover { background: #2f3340; color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #1c8d91; color: #fff; }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--slate); }

/* "Read More" links render as orange buttons on live */
.learn-more {
  display: inline-block; font-family: 'Roboto Slab', serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  font-size: 14px; color: #fff; background: var(--orange);
  padding: 13px 29px; border-bottom: 0;
}
.learn-more:hover { color: #fff; background: #d2540f; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  background: #fff; border-bottom: 1px solid var(--gray);
  position: sticky; top: 0; z-index: 200;
}
.header-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 116px; gap: 24px;
}
.logo img { width: 270px; max-width: 60vw; }
.header-nav { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

/* utility (top) row */
.nav-utility { display: flex; gap: 26px; }
.nav-utility a {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 13px; letter-spacing: .5px;
  color: var(--slate);
}
.nav-utility a:hover { color: var(--teal); }
/* utility-bar dropdown (Leadership) */
.nav-utility { align-items: center; }
.nav-utility li { position: relative; }
.nav-utility .has-children > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-utility li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-utility .submenu { left: 0; right: auto; }
.nav-utility li:last-child > .submenu { left: auto; right: 0; } /* rightmost (Leadership) opens inward */

/* main row */
.nav-main { display: flex; gap: 30px; }
.nav-main > li { position: relative; }
.nav-main > li > a {
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 15px; letter-spacing: .5px;
  color: #848383; padding: 8px 0; display: inline-flex; align-items: center; gap: 5px;
}
.nav-main > li > a:hover { color: var(--teal); }
.has-children > a::after { content: "\25be"; font-size: 11px; }

/* dropdowns */
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 248px;
  background: #fff; border-top: 3px solid var(--teal);
  box-shadow: 0 10px 28px rgba(0,0,0,.13);
  padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .2s ease; z-index: 250;
}
.nav-main li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { position: relative; }
.submenu a {
  display: block; padding: 9px 22px;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 400;
  font-size: 14px; text-transform: uppercase; letter-spacing: .3px;
  color: var(--slate);
}
.submenu a:hover { background: var(--gray-light); color: var(--teal); }
.submenu .has-children > a::after { content: "\25b8"; float: right; }
.submenu .submenu { top: 0; left: 100%; }

/* Right-edge dropdowns open inward so they never spill past the viewport
   (fixes the horizontal scrollbar from the Resources/EWW submenus). Covers the
   last three top-level items — Resources, the submenu-less Podcast (no-op), and
   EWW Award — so both right-side menus and their nested flyouts stay on-screen. */
.nav-main > li:nth-last-child(-n+3) > .submenu { left: auto; right: 0; }
.nav-main > li:nth-last-child(-n+3) .submenu .submenu { left: auto; right: 100%; }

/* hamburger */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 3px; background: var(--slate); border-radius: 2px; }

/* =====================================================================
   HERO (homepage)
   ===================================================================== */
.hero {
  position: relative; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  background: url('../images/BrockInstitute_Banner_Image-scaled-2.webp');
  background-size: cover; background-position: center;
}
.hero-inner { padding: 60px 24px; }
.hero h1 {
  font-family: 'Cormorant', serif; font-weight: 700; color: var(--gold);
  font-size: clamp(46px, 8.5vw, 110px); line-height: 1.1;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.hero-sub {
  font-family: 'Roboto Slab', serif; font-size: clamp(20px, 2.2vw, 26px);
  color: #fff; font-weight: 300; margin-bottom: 8px;
}
.hero-subsub {
  font-family: 'Roboto Slab', serif; font-size: 18px; font-weight: 300;
  letter-spacing: 1px; color: #fff;
}

/* page hero / title bar (inner pages) — 350px tall, title + breadcrumbs (matches live) */
.page-hero {
  background: url('../images/BrockInstitute_BG-scaled.jpg') center/cover no-repeat, #5f8ca8;
  color: #fff; min-height: 350px; padding: 40px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.page-hero h1 {
  color: #fff; font-family: 'Roboto Slab', serif; font-weight: 700;
  font-size: clamp(30px, 4vw, 45px); letter-spacing: 2px; text-transform: none;
  margin: 0 auto; max-width: var(--container); padding: 0 24px; width: 100%;
}
.page-hero .crumbs {
  display: block; margin: 14px auto 0; max-width: var(--container);
  padding: 0 24px; width: 100%;
  font-size: 15px; color: #fff;
}
.page-hero .crumbs a { color: #fff; }
.page-hero .crumbs a:hover { color: var(--gold); }

/* =====================================================================
   HOMEPAGE SECTIONS
   ===================================================================== */
/* intro — full-bleed split: text left, lightbulb image right (matches live) */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; }
.intro-split .intro-text { padding: 100px 45px; max-width: 640px; margin-left: auto; width: 100%; }
.intro-split .intro-media { background-size: cover; background-position: 100% 0; min-height: 100%; }
.intro-quote { text-align: right; font-weight: 300; }
@media (max-width: 860px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-split .intro-text { padding: 56px 24px; max-width: none; }
  .intro-split .intro-media { min-height: 320px; }
}

/* stats band */
.stats {
  background: linear-gradient(rgba(54,59,71,.86), rgba(54,59,71,.86)),
              url('../images/Facts_background.jpg');
  background-size: cover; background-position: center;
  color: #fff; padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-family: 'Roboto Condensed', sans-serif; font-size: 54px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-top: 8px; }

/* feature cards */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; }
.feature-card { padding: 60px 64px 50px; text-align: center; }
.feature-card:nth-child(1) { background: #f8e7ca; }
.feature-card:nth-child(2) { background: #b9e2f8; }
.feature-card:nth-child(3) { background: #e3e8e7; }
.feature-card.feature-media { padding: 0; min-height: 418px; background-size: cover; background-position: center; }

/* explore-ideas full-bleed tiles */
.idea-tiles { display: grid; grid-template-columns: repeat(3, 1fr); }
.idea-tile img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.idea-tile-cap { padding: 26px 36px 26px 0; margin-left: 24px; }
.idea-tile-cap p { font-size: 16px; margin-bottom: 14px; }
@media (max-width: 860px) { .idea-tiles { grid-template-columns: 1fr; } }
.feature-card img.icon { width: 96px; height: 96px; object-fit: contain; margin: 0 auto 18px; }
.home .feature-card h3, .feature-card h3 {
  font-family: 'Roboto Slab', serif; font-size: 32px; font-weight: 700;
  color: #3d4178; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.feature-card .tagline { font-family: 'Roboto Slab', serif; font-style: italic; font-size: 16px; color: #5d5c60; margin-bottom: 20px; }
.feature-card .learn-more {
  font-family: 'Roboto Slab', serif; font-size: 18px; font-weight: 700;
  color: #5d5c60; letter-spacing: 0; border-bottom: 0; text-transform: uppercase;
}
.feature-card .learn-more:hover { color: var(--orange); }

/* idea / post cards */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.card { background: #fff; border: 1px solid var(--gray); display: flex; flex-direction: column; transition: box-shadow .25s ease, transform .25s ease; }
.card:hover { box-shadow: 0 14px 30px rgba(0,0,0,.12); transform: translateY(-4px); }
.card .card-img { aspect-ratio: 4/3; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card .card-body h3 { margin-bottom: 12px; }
.card .card-body h3 a { color: var(--heading-blue); }
.card .card-body h3 a:hover { color: var(--orange); }
.card .card-excerpt { font-size: 15px; margin-bottom: 16px; }
.card .card-foot { margin-top: auto; }

/* publication feature */
.pub-feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.pub-feature .pub-img { background-size: cover; background-position: center; min-height: 360px; }
.pub-feature .pub-img { min-height: 586px; }
.pub-feature .pub-text { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }

/* full-width publications banner (matches live) */
.pub-banner {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 141px; background: var(--orange); color: #fff;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  font-size: 24px; text-transform: uppercase; letter-spacing: 1px; text-align: center;
}
.pub-banner:hover { background: #d2540f; color: #fff; }

/* split sections — full-bleed image + text */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-media { background-size: cover; background-position: center; min-height: 470px; }
.split-text { padding: 76px 64px; display: flex; flex-direction: column; justify-content: center; }
.split-text .content { width: 100%; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 280px; order: -1; }
  .split-text { padding: 48px 28px; }
}

/* contact section — light, over subtle brand background (matches live) */
.contact-section {
  background: url('../images/BrockInstitute_BG-scaled.jpg') center/cover no-repeat;
  color: var(--body-text); padding: 80px 0;
}
.contact-section h2 { color: #2f4858; font-size: 36px; }
.contact-section .heading-block p { color: var(--body-text); }
.contact-section .form label { color: #2f4858; font-family: 'Roboto Slab', serif; font-size: 16px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.contact-section .form input, .contact-section .form textarea {
  background: #fff; border: 1px solid #ebebeb;
}
.contact-section .btn { background: #2f4858; color: #fff; }
.contact-section .btn:hover { background: #1f3140; }

/* forms */
.form { max-width: 764px; margin: 0 auto; }
.form-row { margin-bottom: 20px; }
.form label { display: block; font-family: 'Roboto Condensed', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; margin-bottom: 7px; color: #fff; }
.form label .req { color: var(--orange); }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 14px; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.95); font-family: 'Roboto Slab', serif; font-size: 15px; color: var(--ink);
}
.form textarea { min-height: 150px; resize: vertical; }
.form .form-note { font-size: 13px; color: rgba(255,255,255,.7); }
.form-light label { color: var(--slate); }
.form-light input, .form-light textarea, .form-light select { background: #fff; border-color: var(--gray); }

/* =====================================================================
   INNER PAGE COMPONENTS
   ===================================================================== */
.page-body { padding: 70px 0; }
.content-narrow { max-width: 820px; margin: 0 auto; }

/* people / team grid */
.people-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.person { text-align: center; }
.person .person-photo {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 0; object-fit: cover;
  margin: 0 auto 16px; background: var(--gray-light); display: block;
}
.person h3 { margin-bottom: 4px; font-size: 18px; }
.person .role { font-family: 'Cormorant', serif; font-style: italic; font-size: 17px; color: var(--teal); margin-bottom: 10px; }
.person .person-bio { font-size: 14.5px; line-height: 1.85; }

/* team grid — large square photo cards with name overlay (matches live site) */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #c9ccd2; }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-card:hover img { transform: scale(1.05); }
.team-card .team-name {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 52px 14px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: #fff; font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; text-align: center; font-size: 18px;
}
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }

/* bio detail (laureate / leadership single) */
.bio-detail { display: grid; grid-template-columns: 1fr 360px; gap: 46px; align-items: start; }
.bio-detail .bio-photo { width: 100%; border: 1px solid var(--gray); order: 2; }
.bio-detail .bio-photo.placeholder { aspect-ratio: 1; background: var(--gray-light) url('../images/Brock_Institute_Final_Horiz_Color.jpg') center/80% no-repeat; }
.bio-meta { font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); font-weight: 700; font-size: 15px; margin-bottom: 6px; }

/* simple list pages (jurors / nominees) */
.name-list { columns: 2; column-gap: 48px; }
.name-list li { padding-left: 26px; position: relative; margin-bottom: 12px; break-inside: avoid; }
.name-list li::before { content: ""; position: absolute; left: 0; top: 13px; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.name-list .nm { font-weight: 600; color: var(--slate); display: block; }
.name-list a.nm:hover { color: var(--teal); text-decoration: underline; }
.name-list .aff { font-size: 14px; }

/* index link lists (year archives) */
.year-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.year-grid a {
  display: block; text-align: center; padding: 22px 8px;
  background: var(--gray-light); border: 1px solid var(--gray);
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; color: var(--heading-blue); letter-spacing: 1px;
}
.year-grid a:hover { background: var(--teal); color: #fff; }

/* listing rows (news / publications) */
.list-row { display: grid; grid-template-columns: 385px 1fr; gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--gray); align-items: center; }
.list-row:first-of-type { padding-top: 0; }
.list-row .list-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-light); }
.list-row .list-img img { width: 100%; height: 100%; object-fit: cover; }
.list-row h3 { margin-bottom: 8px; font-size: 28px; }
.list-row h3 a { color: var(--slate); }
.list-row h3 a:hover { color: var(--orange); }
.list-row .learn-more { margin-top: 6px; }
/* laureate archive rows use square portraits */
.laureate-list .list-img { aspect-ratio: 1/1; overflow: hidden; display: block; }
.laureate-list .list-img img { width: 100%; height: 100%; object-fit: cover; }
.list-row .meta { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 8px; }

/* partners / logos */
.logo-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; align-items: stretch; }
/* Partner logos are wide institutional marks — show them uncropped (contain),
   centered on white with padding, instead of the 4/3 cover crop used elsewhere. */
.logo-row .card-img { aspect-ratio: auto; overflow: visible; background: #fff; display: flex; align-items: center; justify-content: center; padding: 34px 26px; min-height: 168px; }
.logo-row .card-img img { width: auto; height: auto; max-width: 100%; max-height: 92px; object-fit: contain; }
.logo-row .card-body { text-align: center; }

/* embed */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin-bottom: 24px; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* tables */
.content table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.content th, .content td { border: 1px solid var(--gray); padding: 10px 14px; text-align: left; }
.content th { background: var(--gray-light); font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; color: var(--slate); }

/* callout */
.callout { background: var(--gray-light); border-left: 4px solid var(--teal); padding: 24px 28px; margin: 26px 0; }

/* callout image tiles (Brock Prize) */
.callout-tiles { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 48px; }
.callout-tile { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; background-size: cover; background-position: center; padding: 30px; text-align: center; }
.callout-tile::before { content: ""; position: absolute; inset: 0; background: rgba(31,71,110,.58); transition: background .3s ease; }
.callout-tile:hover::before { background: rgba(31,71,110,.72); }
.callout-tile span { position: relative; z-index: 1; color: #fff; font-family: 'Roboto Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 23px; }
@media (max-width: 860px) { .callout-tiles { grid-template-columns: 1fr; } }

/* dark text panel variant for split sections */
.split-dark .split-text { background: var(--footer-bg); }
.split-dark .split-text .content { color: rgba(255,255,255,.86); }
.split-dark .split-text h1, .split-dark .split-text h2, .split-dark .split-text h3 { color: #fff; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #2f4858; color: rgba(255,255,255,.85); padding: 54px 0 30px; text-align: center; }
.site-footer .footer-logo img { width: 325px; max-width: 70vw; margin: 0 auto 22px; }
.site-footer .copyright { font-family: 'Roboto Condensed', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; }
.site-footer a { color: var(--gold); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .header-inner { flex-wrap: wrap; min-height: auto; padding: 16px 24px; }
  .nav-toggle { display: flex; }
  .header-nav {
    display: none; width: 100%; order: 3;
    align-items: stretch; gap: 0; padding-top: 12px;
  }
  .header-nav.open { display: flex; }
  .nav-utility, .nav-main { flex-direction: column; gap: 0; width: 100%; }
  .nav-utility a, .nav-main > li > a { padding: 12px 4px; border-bottom: 1px solid var(--gray-light); width: 100%; }
  .nav-main > li { width: 100%; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: 0; padding: 0 0 0 18px; display: none;
  }
  .submenu .submenu { left: 0; }
  .nav-main li.expanded > .submenu,
  .nav-utility li.expanded > .submenu { display: block; }
  .has-children > a { justify-content: space-between; }
}
@media (max-width: 860px) {
  .intro-grid, .pub-feature, .bio-detail { grid-template-columns: 1fr; gap: 32px; }
  .feature-row, .card-grid, .stats-grid, .people-grid, .logo-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .year-grid { grid-template-columns: 1fr 1fr; }
  .name-list { columns: 1; }
  .list-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .bio-detail .bio-photo { max-width: 280px; }
}
@media (max-width: 480px) {
  .stats-grid, .year-grid { grid-template-columns: 1fr; }
  h2 { font-size: 26px; }
}

/* =====================================================================
   "THE LATEST FROM BROCK" — admin-controlled home tiles
   (podcast / featured article / featured video; populated from Supabase
   by assets/js/home-tiles.js, with the static markup as graceful fallback)
   ===================================================================== */
.latest-section { background: var(--gray-light); }
.latest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  margin-top: 40px;
}
@media (max-width: 860px) { .latest-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

.latest-card { background: #fff; border: 1px solid var(--gray); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; }
.latest-card:hover { box-shadow: 0 14px 30px rgba(0,0,0,.12); transform: translateY(-4px); }
.latest-card .card-media {
  display: block; aspect-ratio: 16 / 10; position: relative;
  background: #eef2f5 center / cover no-repeat;
}
.latest-card .card-media.contain { background-size: contain; background-color: #f8e7ca; background-position: center; }
.latest-card .card-media[data-empty="1"] { background-color: #dde5eb; }

/* play badge for the video tile */
.latest-card .card-media .play-badge {
  position: absolute; inset: 0; margin: auto; width: 62px; height: 62px;
  background: rgba(242,100,26,.94); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.28); transition: transform .2s ease;
}
.latest-card:hover .card-media .play-badge { transform: scale(1.08); }
.latest-card .card-media .play-badge::after {
  content: ""; display: block; margin-left: 4px;
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}

.latest-card .card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.latest-card .card-kicker {
  font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 12px; font-weight: 700;
  color: var(--teal); margin-bottom: 9px;
}
.latest-card .card-body h3 { font-size: 21px; line-height: 1.25; margin-bottom: 11px; }
.latest-card .card-body h3 a { color: var(--heading-blue); }
.latest-card .card-body h3 a:hover { color: var(--orange); }
.latest-card .card-body p { font-size: 15.5px; margin-bottom: 18px; }
.latest-card .card-cta {
  margin-top: auto; align-self: flex-start;
  font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; font-size: 14px;
  color: var(--orange);
}
.latest-card .card-cta:hover { color: #d2540f; }

/* Honeypot — visually hidden spam trap on wired forms */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* =====================================================================
   HOME v2 — bold redesign (2026-07). Scoped to .home; new classes only,
   so existing pages/components are untouched.
   ===================================================================== */
.v2-kicker{font-family:'Roboto Condensed',sans-serif;text-transform:uppercase;letter-spacing:3px;font-size:13px;font-weight:700;color:var(--teal);margin-bottom:14px;display:block;}
.v2-kicker.gold{color:var(--gold);}
.home .v2-section-head{max-width:720px;margin:0 auto 52px;text-align:center;}
.home .v2-section-head h2{font-family:'Roboto Slab',serif;text-transform:none;color:var(--slate);letter-spacing:0;font-size:clamp(28px,3.4vw,40px);}
.home .v2-section-head p.lead{margin-top:12px;font-size:17px;}

/* ---- HERO ---- */
.v2-hero{position:relative;min-height:92vh;display:flex;align-items:center;
  background:url('../images/BrockInstitute_Banner_Image-scaled-2.webp') center/cover no-repeat;}
.v2-hero-overlay{position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(38,44,60,.86) 0%,rgba(38,44,60,.55) 48%,rgba(37,175,180,.28) 100%);}
.v2-hero-inner{position:relative;z-index:2;max-width:var(--container);margin:0 auto;padding:0 24px;color:#fff;max-width:1180px;width:100%;}
.v2-hero .v2-kicker{color:var(--sky);}
.v2-hero-title{font-family:'Cormorant',serif;font-weight:700;color:var(--gold);
  font-size:clamp(48px,7vw,94px);line-height:1.02;letter-spacing:1px;margin:0 0 22px;max-width:14ch;text-transform:none;}
.v2-hero-sub{font-family:'Roboto Slab',serif;font-weight:300;font-size:clamp(18px,2vw,23px);
  color:#eef3f6;max-width:44ch;line-height:1.5;margin-bottom:34px;}
.v2-hero-cta{display:flex;gap:16px;flex-wrap:wrap;}
.v2-hero-cta .btn{padding:15px 32px;font-size:14px;}
.v2-scroll{position:absolute;left:50%;bottom:26px;transform:translateX(-50%);z-index:2;width:26px;height:44px;border:2px solid rgba(255,255,255,.6);border-radius:14px;}
.v2-scroll::after{content:"";position:absolute;left:50%;top:9px;transform:translateX(-50%);width:4px;height:9px;border-radius:2px;background:#fff;animation:v2dot 1.6s ease-in-out infinite;}
@keyframes v2dot{0%,100%{opacity:.35;top:9px;}50%{opacity:1;top:20px;}}

/* ---- MISSION + VALUES ---- */
.v2-mission{padding:96px 0;background:#fff;}
.v2-mission-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:64px;align-items:center;}
.home .v2-mission h2{font-family:'Roboto Slab',serif;text-transform:none;color:var(--slate);letter-spacing:0;font-size:clamp(28px,3.2vw,38px);margin-bottom:20px;}
.v2-mission p{font-size:17px;}
.v2-quote{font-family:'Cormorant',serif;font-style:italic;font-size:23px;color:var(--slate);border-left:3px solid var(--teal);padding-left:20px;margin:26px 0;line-height:1.5;}
.v2-quote cite{display:block;font-style:normal;font-size:15px;font-family:'Roboto Condensed',sans-serif;text-transform:uppercase;letter-spacing:1px;color:var(--teal);margin-top:8px;}
.v2-textlink{font-family:'Roboto Condensed',sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:1px;font-size:14px;color:var(--orange);}
.v2-textlink:hover{color:#d2540f;}
.v2-values{display:grid;gap:18px;}
.v2-value{background:var(--gray-light);border-left:4px solid var(--gold);padding:22px 26px;border-radius:0 8px 8px 0;}
.v2-value-num{font-family:'Roboto Condensed',sans-serif;font-weight:700;font-size:15px;color:var(--gold);letter-spacing:2px;}
.home .v2-value h3{font-family:'Roboto Slab',serif;text-transform:none;color:var(--slate);letter-spacing:0;font-size:20px;margin:2px 0 6px;}
.v2-value p{font-size:15px;margin:0;line-height:1.55;}

/* ---- PILLARS ---- */
.v2-pillars{padding:96px 0;background:var(--gray-light);}
.v2-pillar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.v2-pillar{background:#fff;border:1px solid var(--gray);border-top:4px solid var(--teal);border-radius:8px;
  padding:44px 34px;text-align:center;display:flex;flex-direction:column;align-items:center;
  transition:box-shadow .25s ease,transform .25s ease;}
.v2-pillar:hover{box-shadow:0 18px 40px rgba(0,0,0,.10);transform:translateY(-6px);}
.v2-pillar img{width:78px;height:78px;object-fit:contain;margin-bottom:20px;}
.home .v2-pillar h3{font-family:'Roboto Slab',serif;text-transform:none;color:var(--heading-blue);letter-spacing:0;font-size:23px;margin-bottom:12px;}
.v2-pillar p{font-size:15.5px;margin-bottom:20px;flex:1;}
.v2-pillar-link{font-family:'Roboto Condensed',sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:1px;font-size:13.5px;color:var(--orange);}
.v2-pillar:hover .v2-pillar-link{color:#d2540f;}

/* ---- LAUREATE SPOTLIGHT ---- */
.v2-laureate{display:grid;grid-template-columns:1fr 1fr;background:#2b2f3a;color:#fff;}
.v2-laureate-media{min-height:460px;background-size:cover;background-position:center top;}
.v2-laureate-text{padding:80px 64px;max-width:620px;}
.home .v2-laureate h2{font-family:'Roboto Slab',serif;text-transform:none;color:#fff;letter-spacing:0;font-size:clamp(30px,3.4vw,42px);margin-bottom:18px;}
.v2-laureate-text p{color:#c9cdd6;font-size:17px;margin-bottom:28px;}

/* ---- LATEST band heading override (reuses .latest-card) ---- */
.home .latest-section .heading-block h2{font-family:'Roboto Slab',serif;text-transform:none;color:var(--slate);letter-spacing:0;}

/* ---- CONTACT CTA ---- */
.v2-contact{padding:96px 0;background:#fff;}
.v2-contact .form{max-width:680px;margin:36px auto 0;}

/* ---- responsive ---- */
@media (max-width:900px){
  .v2-mission-grid{grid-template-columns:1fr;gap:40px;}
  .v2-pillar-grid{grid-template-columns:1fr;max-width:460px;margin:0 auto;}
  .v2-laureate{grid-template-columns:1fr;}
  .v2-laureate-media{min-height:300px;}
  .v2-laureate-text{padding:52px 26px;}
  .v2-mission,.v2-pillars,.v2-contact{padding:64px 0;}
}

/* =====================================================================
   PODCAST v2 — modern rebuild of podcast.html (reuses .v2-kicker/.btn)
   ===================================================================== */
.ic{width:1.05em;height:1.05em;fill:currentColor;flex:none;}
/* listen buttons */
.pod-listen{display:flex;gap:12px;flex-wrap:wrap;}
.pod-btn{display:inline-flex;align-items:center;gap:9px;font-family:'Roboto Condensed',sans-serif;
  font-weight:700;text-transform:uppercase;letter-spacing:.5px;font-size:13.5px;
  padding:11px 20px;border-radius:30px;border:2px solid transparent;transition:all .2s ease;}
.pod-btn.spotify{background:#1db954;color:#fff;}
.pod-btn.spotify:hover{background:#17a247;color:#fff;}
.pod-btn.apple{background:#8a3ffc;color:#fff;}
.pod-btn.apple:hover{background:#7222f0;color:#fff;}
.pod-btn.ghost{background:transparent;border-color:currentColor;color:var(--teal);}
.pod-btn.ghost:hover{color:var(--orange);}
.pod-btn.light{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.35);}
.pod-btn.light:hover{background:#fff;color:#2b2f3a;}

/* HERO */
.pod-hero{background:linear-gradient(115deg,#23283a 0%,#2f3550 55%,#2a5b6a 100%);color:#fff;padding:80px 0;}
.pod-hero-grid{max-width:var(--container);margin:0 auto;padding:0 24px;display:grid;
  grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;}
.pod-hero .v2-kicker{color:var(--sky);}
.pod-hero h1{font-family:'Cormorant',serif;font-weight:700;color:var(--gold);text-transform:none;
  letter-spacing:1px;font-size:clamp(40px,5.4vw,74px);line-height:1.02;margin:0 0 8px;}
.pod-hero .pod-tagline{font-family:'Cormorant',serif;font-style:italic;font-size:23px;color:#e9eef2;margin-bottom:18px;}
.pod-hero p.pod-lead{color:#cfd5df;font-size:17px;max-width:46ch;margin-bottom:28px;}
.pod-hero-photo{border-radius:16px;overflow:hidden;box-shadow:0 26px 60px rgba(0,0,0,.4);border:5px solid rgba(255,255,255,.08);}
.pod-hero-photo img{width:100%;display:block;}

/* FEATURED latest episode */
.pod-featured{padding:80px 0;background:#fff;}
.pod-featured-card{max-width:var(--container);margin:0 auto;padding:0 24px;display:grid;
  grid-template-columns:1fr 1fr;gap:44px;align-items:center;}
.pod-embed{border-radius:12px;overflow:hidden;box-shadow:0 14px 34px rgba(0,0,0,.12);min-height:352px;}
.pod-embed iframe{width:100%;height:352px;border:0;display:block;}
.home .pod-featured h2,.pod-featured h2{font-family:'Roboto Slab',serif;text-transform:none;color:var(--slate);letter-spacing:0;font-size:clamp(24px,2.6vw,30px);margin:6px 0 14px;line-height:1.25;}
.pod-featured .pod-desc{font-size:16px;margin-bottom:22px;}

/* HOSTS + about */
.pod-hosts{padding:80px 0;background:var(--gray-light);}
.pod-host-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-top:8px;}
.pod-host{background:#fff;border:1px solid var(--gray);border-radius:12px;padding:26px;display:flex;gap:22px;align-items:center;}
.pod-host img{width:104px;height:104px;border-radius:50%;object-fit:cover;flex:none;border:3px solid var(--sky);}
.pod-host h3{font-family:'Roboto Slab',serif;text-transform:none;color:var(--heading-blue);letter-spacing:0;font-size:20px;margin-bottom:4px;}
.pod-host p{font-size:14.5px;margin:0;line-height:1.55;}
.pod-audience{max-width:760px;margin:34px auto 0;text-align:center;font-size:16.5px;}

/* EPISODE LIST */
.pod-episodes{padding:80px 0;background:#fff;}
.pod-ep-list{max-width:900px;margin:8px auto 0;display:flex;flex-direction:column;gap:18px;}
.pod-ep{background:#fff;border:1px solid var(--gray);border-left:4px solid var(--teal);border-radius:10px;
  padding:24px 28px;transition:box-shadow .2s ease,transform .2s ease;}
.pod-ep:hover{box-shadow:0 12px 30px rgba(0,0,0,.09);transform:translateY(-3px);}
.pod-ep-head{display:flex;align-items:baseline;gap:12px;margin-bottom:8px;flex-wrap:wrap;}
.pod-ep-num{font-family:'Roboto Condensed',sans-serif;font-weight:700;font-size:12px;letter-spacing:1.5px;
  text-transform:uppercase;color:#fff;background:var(--teal);padding:4px 11px;border-radius:20px;flex:none;}
.pod-ep-num.trailer{background:var(--gold);}
.pod-ep h3{font-family:'Roboto Slab',serif;text-transform:none;color:var(--slate);letter-spacing:0;font-size:19px;margin:0;line-height:1.3;}
.pod-ep p{font-size:15px;margin:0 0 16px;}
.pod-ep .pod-listen{gap:10px;}
.pod-ep .pod-btn{padding:8px 15px;font-size:12.5px;}
.pod-ep-links{margin-top:12px;font-size:14px;}
.pod-ep-links .ic{color:var(--teal);vertical-align:-2px;margin-right:5px;}

@media (max-width:860px){
  .pod-hero-grid,.pod-featured-card,.pod-host-grid{grid-template-columns:1fr;gap:32px;}
  .pod-hero-photo{max-width:420px;}
  .pod-hero,.pod-featured,.pod-hosts,.pod-episodes{padding:56px 0;}
  .pod-host{flex-direction:column;text-align:center;}
}
