:root {
  --ink: #0e1a24;
  --ink-soft: #3a4a57;
  --teal: #0d7377;
  --teal-deep: #09575a;
  --mist: #eef3f6;
  --paper: #f8fafb;
  --line: rgba(14, 26, 36, 0.1);
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
code {
  font-size: 0.92em;
  word-break: break-word;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 1000;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 22, 34, 0.35) 0%, rgba(8, 22, 34, 0.72) 58%, rgba(8, 22, 34, 0.88) 100%),
    url("images/hero-sydney-agents.jpg") center / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(13, 115, 119, 0.28), transparent 60%),
    linear-gradient(115deg, rgba(8, 22, 34, 0.25), transparent 45%);
  pointer-events: none;
}
.hero__inner {
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.brand {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  animation: rise 0.9s ease forwards 0.1s;
}
.brand span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  opacity: 1;
  margin-bottom: 0;
  max-width: none;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: clamp(1.55rem, 4.2vw, 2.65rem);
  max-width: 18ch;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.2s;
}
.hero__tagline {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  max-width: 34ch;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  animation: rise 0.9s ease forwards 0.3s;
}
.hero__lede {
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.4s;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.5s;
}
.hero__meta strong { color: #fff; font-weight: 600; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.6s;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #fff;
  color: var(--ink);
}
.btn-primary:hover { background: #e7f3f3; }
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

/* —— Update strip —— */
.update {
  background: var(--teal);
  color: #fff;
  padding: 0.95rem 0;
}
.update .wrap {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.update__label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.9;
}

/* —— Sections —— */
section { padding: clamp(3rem, 7vw, 5rem) 0; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.7rem;
}
h2 {
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 22ch;
}
.lede {
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.about p + p { margin-top: 1rem; color: var(--ink-soft); }

.topics {
  background:
    linear-gradient(180deg, rgba(248, 250, 251, 0.92), rgba(248, 250, 251, 0.96)),
    url("images/section-atmosphere.jpg") center / cover no-repeat;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem 2rem;
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.topic {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease forwards;
}
.topic:nth-child(1) { animation-delay: 0.05s; }
.topic:nth-child(2) { animation-delay: 0.12s; }
.topic:nth-child(3) { animation-delay: 0.19s; }
.topic:nth-child(4) { animation-delay: 0.26s; }
.topic:nth-child(5) { animation-delay: 0.33s; }
.topic:nth-child(6) { animation-delay: 0.4s; }
.topic:nth-child(7) { animation-delay: 0.47s; }
.topic img, .topic svg {
  width: 42px;
  height: 42px;
}
.topic h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.topic p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.dates {
  background: var(--ink);
  color: #fff;
}
.dates h2 { color: #fff; }
.dates .lede { color: rgba(255, 255, 255, 0.72); }
.date-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.5rem;
}
@media (max-width: 720px) {
  .date-row { grid-template-columns: 1fr; }
}
.date-item strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 650;
  margin-bottom: 0.3rem;
}
.date-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.submit {
  background: var(--mist);
}
.submit-box {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}
.guidelines {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
  max-width: 70ch;
}
.guidelines li {
  list-style: none;
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.guidelines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--teal);
}
.btn-solid {
  background: var(--teal);
  color: #fff;
}
.btn-solid:hover { background: var(--teal-deep); }

footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
footer a { color: var(--teal-deep); font-weight: 600; text-decoration: none; }
footer a:hover { text-decoration: underline; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero__media { transform: none; }
  .brand, .hero h1, .hero__lede, .hero__meta, .cta-row, .topic, .hero__tagline {
    opacity: 1;
    transform: none;
  }
}

/* —— Site chrome —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 251, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.6rem;
  position: relative;
  overflow: visible;
}
.site-logo {
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo span {
  color: var(--teal);
  font-weight: 500;
  font-size: 0.68em;
  letter-spacing: 0.06em;
  margin-left: 0.35rem;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-toggle__icon {
  display: inline-grid;
  gap: 3px;
  width: 16px;
}
.nav-toggle__icon i {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}
.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  overflow: visible;
}
.site-nav > a,
.nav-dropdown > button {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink-soft);
  padding: 0.45rem 0.5rem;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}
.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > button:hover,
.nav-dropdown.open > button,
.nav-dropdown > button[aria-current="page"] {
  color: var(--ink);
  background: rgba(13, 115, 119, 0.12);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: 0.7;
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.45rem;
  box-shadow: 0 12px 28px rgba(14, 26, 36, 0.12);
  z-index: 120;
}
.nav-dropdown.open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: grid;
  gap: 0.1rem;
}
.nav-dropdown__menu a {
  display: block;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.55rem 0.65rem;
  border-radius: 4px;
  white-space: normal;
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a[aria-current="page"] {
  color: var(--ink);
  background: rgba(13, 115, 119, 0.1);
}

/* Narrow screens / Google Sites embeds */
@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .site-header__inner { flex-wrap: wrap; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.2rem;
    padding: 0.35rem 0 0.85rem;
    border-top: 1px solid var(--line);
    margin-top: 0.15rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a,
  .nav-dropdown > button {
    width: 100%;
    text-align: left;
    padding: 0.7rem 0.55rem;
    font-size: 0.95rem;
  }
  .nav-dropdown__menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 0.35rem 0.85rem;
    background: transparent;
    min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: grid;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.2rem, 5vw, 3.2rem);
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 22, 34, 0.45) 0%, rgba(8, 22, 34, 0.82) 100%),
    url("images/section-atmosphere.jpg") center / cover no-repeat;
}
.page-hero .eyebrow { color: #7fd4d7; }
.page-hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 18ch;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: rise 0.8s ease forwards 0.1s;
}
.page-hero .lede {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
  opacity: 0;
  animation: rise 0.8s ease forwards 0.25s;
}
.past .page-hero__media,
body.past-sub .page-hero__media {
  background:
    linear-gradient(180deg, rgba(8, 22, 34, 0.5) 0%, rgba(8, 22, 34, 0.86) 100%),
    url("images/section-atmosphere.jpg") center / cover no-repeat;
}

.page-section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.page-section + .page-section { border-top: 1px solid var(--line); }
.muted { color: var(--ink-soft); }
.strike { text-decoration: line-through; opacity: 0.55; margin-right: 0.35rem; }

.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem 1.75rem;
  margin-top: 1.75rem;
}
.person {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.person h3 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.person .role {
  font-size: 0.92rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.person .title-talk {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.person-full {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}
.person-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mist);
}
.person-copy { display: grid; gap: 0.55rem; }
.person-full h3 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 650;
}
.person-full .role { color: var(--teal-deep); font-weight: 600; font-size: 0.95rem; }
.person-full p { color: var(--ink-soft); }
.person-full .expertise {
  font-size: 0.92rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--teal);
}
.person-photo--placeholder {
  background: linear-gradient(145deg, #d7e4e8, #eef3f6);
  border: 1px solid var(--line);
}
.speaker .title-talk {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.person-copy h3 a {
  color: inherit;
  text-decoration: none;
}
.person-copy h3 a:hover {
  color: var(--teal-deep);
  text-decoration: underline;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  width: max-content;
  max-width: 100%;
  justify-self: start;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 2px;
  color: var(--teal-deep);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 0;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.social-icons a:hover {
  color: var(--ink);
  opacity: 0.8;
  background: transparent;
  border-color: transparent;
}
.social-icons svg {
  width: 1rem !important;
  height: 1rem !important;
  max-width: 1rem !important;
  max-height: 1rem !important;
  display: block;
  flex: none;
}
@media (max-width: 640px) {
  .person-full {
    grid-template-columns: 96px 1fr;
    gap: 0.9rem 1rem;
  }
  .person-photo {
    width: 96px;
    height: 96px;
  }
  .social-icons a {
    width: 1.5rem;
    height: 1.5rem;
  }
  .social-icons svg {
    width: 1.125rem !important;
    height: 1.125rem !important;
    max-width: 1.125rem !important;
    max-height: 1.125rem !important;
  }
}

.deadline-list, .link-list, .paper-list, .pc-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.deadline-item, .link-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.deadline-item strong, .link-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 650;
}
.link-card a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: none;
}
.link-card a:hover { text-decoration: underline; }
.paper-list article {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.paper-list .pid {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.paper-list h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.pc-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.45rem 1.25rem;
}
.pc-list li {
  list-style: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.steering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1.75rem 1rem;
  margin-top: 1.75rem;
}
.steering-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.45rem;
}
.steering-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mist);
}
.steering-photo--placeholder {
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-deep);
  background: linear-gradient(145deg, #d7ecec, #eef6f6);
}
.steering-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  max-width: 16ch;
}
.steering-card .role {
  font-size: 0.75rem;
  color: var(--teal-deep);
  font-weight: 600;
  line-height: 1.3;
  max-width: 18ch;
}
.steering-card p {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.3;
  max-width: 18ch;
}
.tbd-panel {
  margin-top: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tbd-panel strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.archive-banner {
  background: var(--mist);
  padding: 0.9rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.archive-banner a { color: var(--teal-deep); font-weight: 600; text-decoration: none; }
.archive-banner a:hover { text-decoration: underline; }
.site-footer {
  margin-top: 2rem;
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.site-footer a { color: var(--teal-deep); font-weight: 600; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 0.75rem;
}

/* —— Phone / small screens —— */
@media (max-width: 720px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max));
  }

  .site-logo {
    font-size: 1rem;
    max-width: calc(100% - 6.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .site-logo span { display: none; }

  .nav-toggle {
    min-height: 44px;
    min-width: 44px;
    padding: 0.55rem 0.85rem;
  }

  .site-nav > a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }
  .hero__inner {
    padding: 5.5rem 0 2rem;
  }
  .hero__media {
    transform: none;
    animation: none;
    background-position: 65% center;
  }
  .brand {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    max-width: none;
  }
  .brand span {
    font-size: inherit;
    letter-spacing: inherit;
  }
  .hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    max-width: none;
  }
  .hero__tagline {
    font-size: 1.05rem;
    max-width: none;
  }
  .hero__lede {
    font-size: 0.98rem;
    max-width: none;
  }
  .hero__meta {
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.95rem 1.1rem;
  }

  .update .wrap {
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
  }

  section,
  .page-section {
    padding: 2.25rem 0;
  }
  h2 {
    max-width: none;
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }
  .lede { font-size: 1rem; }

  .topic-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .person-grid {
    grid-template-columns: 1fr;
  }
  .steering-grid {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 1.25rem 0.75rem;
  }
  .steering-photo {
    width: 72px;
    height: 72px;
  }
  .person-full {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .person-photo {
    width: 112px;
    height: 112px;
  }

  .submit-box {
    flex-direction: column;
    align-items: stretch;
  }
  .submit-box .cta-row {
    width: 100%;
  }

  .page-hero {
    padding: 3rem 0 1.75rem;
  }
  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .guidelines li {
    font-size: 0.92rem;
    padding-right: 0.25rem;
  }

  .site-footer__nav {
    gap: 0.65rem 0.85rem;
  }
  .site-footer__nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .wrap { width: min(100% - 1rem, var(--max)); }
  .hero h1 { font-size: 1.35rem; }
  .topic {
    grid-template-columns: 36px 1fr;
    gap: 0.7rem;
  }
  .topic img, .topic svg {
    width: 36px;
    height: 36px;
  }
}

/* Safe areas (notched phones) */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .site-footer,
  .hero__inner,
  .page-hero .wrap,
  .page-section .wrap,
  .update .wrap {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  body {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}
