:root {
  --ink: #18211f;
  --muted: #5c6764;
  --line: #d9dfdd;
  --paper: #ffffff;
  --soft: #f3f6f5;
  --forest: #155d51;
  --forest-dark: #0b3934;
  --bronze: #9a603d;
  --blue: #316b84;
  --shadow: 0 20px 48px rgba(24, 33, 31, 0.1);
  --max: 1200px;
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--forest-dark);
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #d29a61;
  outline-offset: 3px;
}

.utility-bar {
  color: #dce9e5;
  background: var(--forest-dark);
  font-size: 0.78rem;
}

.utility-inner {
  max-width: var(--max);
  min-height: 32px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  color: white;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-copy {
  display: block;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  padding: 7px 0;
  color: #313b38;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav .nav-journal {
  padding: 8px 12px;
  color: white;
  background: var(--forest);
  border: 1px solid var(--forest);
}

.main-nav .nav-journal::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle::before {
  top: 13px;
}

.nav-toggle::after {
  top: 27px;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 20px;
  transform: rotate(-45deg);
}

.home-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: white;
  background: #030908;
  border-bottom: 5px solid var(--bronze);
}

.globe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #020605;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.08) 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 60%, rgba(0, 0, 0, 0.44));
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  min-height: 500px;
  margin: 0 auto;
  padding: 40px 24px 90px;
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b9d6cf;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 750;
}

.eyebrow.dark {
  color: var(--forest);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.14;
}

h1,
.display-title,
.section-head h2,
.page-hero h1,
.feature-copy h2,
.journal-feature h2,
.conference-feature h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.home-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 5rem;
  font-weight: 700;
}

.hero-lede {
  max-width: 650px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.25;
  color: #f5f8f7;
}

.hero-note {
  max-width: 650px;
  margin: 20px 0 0;
  color: #cfdbd7;
  font-size: 1rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 43px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 4px;
  color: white;
  background: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
}

.button.secondary {
  color: var(--forest-dark);
  background: white;
}

.button.secondary:hover {
  color: white;
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.ghost:hover {
  color: white;
  border-color: var(--forest-dark);
}

.home-hero .button {
  border-color: #f2f5f4;
  color: var(--forest-dark);
  background: #f2f5f4;
}

.home-hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.hero-facts {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 15, 13, 0.72);
  backdrop-filter: blur(8px);
}

.hero-facts-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-fact {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-fact strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.hero-fact span {
  display: block;
  color: #b8c8c3;
  font-size: 0.8rem;
}

.section {
  border-top: 1px solid var(--line);
}

.home-hero + .section .section-inner {
  padding-top: 58px;
}

.section:first-child {
  border-top: 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: white;
  background: var(--forest-dark);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(380px, 1.3fr);
  gap: 60px;
  align-items: end;
}

.section-head h2 {
  margin: 0;
  font-size: 2.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-head:not(.split) p {
  margin-top: 12px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.28fr);
  gap: 84px;
  align-items: start;
}

.intro-aside {
  padding-top: 7px;
}

.intro-aside p {
  margin: 0 0 22px;
  color: var(--muted);
}

.intro-copy .display-title {
  margin: 0;
  max-width: 720px;
  font-size: 3.3rem;
}

.intro-copy > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.journal-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr);
  gap: 58px;
  align-items: stretch;
}

.journal-cover {
  display: block;
  width: 100%;
  max-width: 390px;
  justify-self: center;
  color: inherit;
  text-decoration: none;
}

.journal-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.journal-feature-copy {
  padding: 18px 0;
  align-self: center;
}

.journal-feature h2 {
  margin: 0;
  font-size: 3rem;
}

.journal-feature-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.meta-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.meta-list li {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.meta-list strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.conference-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: 64px;
  align-items: center;
}

.conference-overview h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.conference-overview p {
  color: var(--muted);
}

.conference-logos,
.conference-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-tile {
  min-height: 134px;
  padding: 22px;
  display: grid;
  place-items: center;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-tile img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.logo-tile.wordmark {
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  background: #e7efed;
}

.principles-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.principles-list.light {
  border-top-color: var(--ink);
}

.principles-list.light .principle {
  border-bottom-color: var(--line);
}

.principles-list.light .number {
  color: var(--forest);
}

.principles-list.light .principle p {
  color: var(--muted);
}

.principle {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 84px minmax(240px, 0.7fr) minmax(360px, 1.3fr);
  gap: 32px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.principle .number {
  color: #9bbab2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.principle h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.principle p {
  margin: 0;
  color: #c5d4d0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(4, 16, 14, 0.95) 0%, rgba(5, 25, 22, 0.82) 56%, rgba(5, 25, 22, 0.34) 100%),
    url("images/external/wix-science-hero.jpg") center 42% / cover no-repeat,
    var(--forest-dark);
  border-bottom: 5px solid var(--bronze);
}

.page-hero .section-inner {
  min-height: 330px;
  padding-top: 72px;
  padding-bottom: 66px;
  display: grid;
  align-content: end;
}

.page-hero h1 {
  max-width: 890px;
  margin: 0;
  font-size: 3.8rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 16px 0 0;
  color: #d5e1de;
  font-size: 1.04rem;
}

.page-hero.compact .section-inner {
  min-height: 255px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(440px, 1.18fr);
  gap: 70px;
  align-items: start;
}

.editorial-grid .feature-copy h2 {
  margin: 0;
  font-size: 3rem;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.fact-rail {
  border-top: 1px solid var(--ink);
}

.fact-row {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.fact-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.fact-row span {
  color: var(--muted);
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.statement {
  padding: 34px 36px 34px 0;
  border-bottom: 1px solid var(--line);
}

.statement + .statement {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.statement h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.statement p {
  margin: 0;
  color: var(--muted);
}

.portfolio-row {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.portfolio-row .record-label,
.record-status {
  width: max-content;
  padding: 5px 9px;
  color: var(--forest);
  background: #e6efed;
  font-size: 0.73rem;
  font-weight: 750;
  text-transform: uppercase;
}

.portfolio-row h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.portfolio-row p {
  margin: 0;
  color: var(--muted);
}

.conference-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(480px, 1.08fr);
  gap: 62px;
  align-items: center;
}

.conference-feature h2 {
  margin: 0;
  font-size: 3.3rem;
}

.conference-feature > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}

.support-item {
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.support-item h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.support-item p {
  color: var(--muted);
}

.timeline {
  position: relative;
  border-top: 1px solid var(--ink);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(240px, 0.55fr) minmax(360px, 1.45fr);
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.timeline-item h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.series-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
}

.series-card h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.series-card p {
  margin: 0;
  color: var(--muted);
}

.proceedings-list {
  border-top: 1px solid var(--ink);
}

.record-card {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 110px minmax(200px, 0.55fr) minmax(360px, 1.45fr) auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.record-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.record-card p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  gap: 72px;
}

.contact-identity {
  padding: 36px;
  color: white;
  background:
    linear-gradient(180deg, rgba(2, 12, 10, 0.2), rgba(2, 12, 10, 0.9)),
    url("images/external/wix-science-hero.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.contact-identity img {
  width: 70px;
  height: 104px;
  padding: 7px;
  margin-bottom: 100px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
}

.contact-identity h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.contact-identity p,
.contact-identity address,
.contact-identity a {
  color: #deebe7;
}

.contact-identity address {
  margin: 0 0 16px;
  font-style: normal;
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, var(--reading));
  gap: 70px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 132px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.legal-nav strong,
.legal-nav a {
  display: block;
}

.legal-nav strong {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.legal-nav a {
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
}

.legal {
  max-width: var(--reading);
}

.legal > p:first-child {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.legal h2 {
  margin: 38px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.legal p {
  color: var(--muted);
}

.site-footer {
  color: #e3ece9;
  background: #101816;
  border-top: 5px solid var(--bronze);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 70px;
  padding-bottom: 36px;
}

.footer-brand {
  display: block;
}

.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.footer-brand p {
  max-width: 440px;
  margin: 7px 0 0;
  color: #afc0bb;
  font-size: 0.88rem;
}

.footer-group strong {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  color: #bdcbc7;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #91a49f;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0 14px;
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 9px 0;
  }

  .main-nav .nav-journal {
    width: auto;
    padding: 9px 12px;
  }

  .home-hero h1 {
    font-size: 4rem;
  }

  .hero-lede {
    font-size: 1.75rem;
  }

  .intro-grid,
  .journal-feature,
  .conference-overview,
  .editorial-grid,
  .conference-feature,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .conference-logos,
  .conference-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .principle {
    grid-template-columns: 64px minmax(200px, 0.7fr) minmax(280px, 1.3fr);
  }

  .record-card {
    grid-template-columns: 100px minmax(180px, 0.6fr) minmax(280px, 1.4fr);
  }

  .record-card .button {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .utility-inner {
    min-height: 36px;
  }

  .utility-inner p {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .home-hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 190px;
  }

  .home-hero h1 {
    font-size: 3.35rem;
  }

  .hero-lede {
    font-size: 1.55rem;
  }

  .hero-facts-inner {
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-fact,
  .hero-fact:first-child {
    padding: 5px 0;
    border-left: 0;
  }

  .hero-fact span {
    display: none;
  }

  .section-inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head.split,
  .statement-grid,
  .support-grid,
  .series-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-copy .display-title,
  .journal-feature h2,
  .conference-overview h2,
  .editorial-grid .feature-copy h2,
  .conference-feature h2,
  .contact-copy h2 {
    font-size: 2.45rem;
  }

  .statement + .statement {
    padding-left: 0;
    border-left: 0;
  }

  .portfolio-row {
    grid-template-columns: 1fr;
  }

  .conference-logos,
  .conference-logo-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .principle p {
    grid-column: 2;
  }

  .page-hero .section-inner {
    min-height: 285px;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .timeline-item {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }

  .timeline-item p {
    grid-column: 2;
  }

  .record-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .record-card .button {
    grid-column: auto;
    justify-self: start;
  }

  .contact-identity img {
    margin-bottom: 64px;
  }

  .legal-nav {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 480px) {
  .header-inner,
  .utility-inner,
  .hero-inner,
  .hero-facts-inner,
  .section-inner,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand strong {
    font-size: 1.03rem;
  }

  .home-hero h1 {
    font-size: 2.8rem;
  }

  .hero-lede {
    font-size: 1.35rem;
  }

  .hero-note {
    font-size: 0.92rem;
  }

  .hero-actions .button,
  .actions .button {
    width: 100%;
  }

  .section-head h2 {
    font-size: 2.25rem;
  }

  .intro-copy .display-title,
  .journal-feature h2,
  .conference-overview h2,
  .editorial-grid .feature-copy h2,
  .conference-feature h2,
  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .contact-identity {
    padding: 28px;
  }

  .journal-cover {
    max-width: 340px;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }

  .page-hero .section-inner {
    min-height: 255px;
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .fact-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item p,
  .principle p {
    grid-column: auto;
  }

  .principle {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .main-nav a::after {
    transition: none;
  }
}
