:root {
  --paper: #f4f1ea;
  --paper-deep: #ebe4d7;
  --ink: #111111;
  --navy: #18304b;
  --navy-deep: #0f2236;
  --line: #c7c0b4;
  --green: #1e5b4f;
  --red: #8b1f24;
  --white: #fffdfa;
  --gutter: clamp(20px, 4vw, 56px);
  --gutter-wide: clamp(20px, 6vw, 96px);
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.5;
  background:
    radial-gradient(circle at 20% 0%, rgba(24, 48, 75, 0.06), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(30, 91, 79, 0.07), transparent 18%),
    linear-gradient(180deg, #f9f6ef 0%, var(--paper) 52%, var(--paper-deep) 100%);
}

body::before {
  content: attr(data-pageword);
  position: fixed;
  right: -0.02em;
  top: 20vh;
  z-index: 0;
  font-size: min(18vw, 14rem);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: rgba(24, 48, 75, 0.025);
  pointer-events: none;
  transform: translateZ(-220px);
}

body.menu-open {
  overflow: hidden;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

main {
  perspective: 1400px;
  transform-style: preserve-3d;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding-left: 1.1rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0 0;
  background: transparent;
  border-bottom: 0;
  pointer-events: none;
  transition: padding 220ms ease;
}

.page-home .site-header {
  position: fixed;
  inset: 0 0 auto;
}

.header-shell,
.section-shell,
.menu-overlay-inner,
.breadcrumb {
  width: 100%;
  padding-inline: var(--gutter);
}

.header-shell {
  position: relative;
  width: min(100% - (var(--gutter) * 1.1), 1480px);
  margin-inline: auto;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-inline: clamp(18px, 2.6vw, 34px);
  border: 1px solid rgba(199, 192, 180, 0.6);
  border-radius: 999px;
  background: rgba(249, 246, 239, 0.72);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 14px 40px rgba(15, 34, 54, 0.08);
  pointer-events: auto;
  transform-origin: top center;
  will-change: transform, min-height, width;
  overflow: clip;
  transition:
    min-height 220ms ease,
    width 220ms ease,
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.site-header.is-at-top .header-shell {
  background: rgba(249, 246, 239, 0.62);
  box-shadow: 0 12px 34px rgba(15, 34, 54, 0.06);
}

.header-shell::before,
.header-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

.header-shell::before {
  inset: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  opacity: 0.76;
}

.header-shell::after {
  inset: auto 18px 0;
  height: 18px;
  background: radial-gradient(circle at 50% 0%, rgba(15, 34, 54, 0.12), transparent 72%);
  filter: blur(10px);
  opacity: 0.68;
}

.header-shell > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  min-width: 0;
  transition: gap 220ms ease, transform 220ms ease;
}

.brand span {
  overflow: hidden;
  max-width: 22ch;
  transition:
    max-width 220ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: width 220ms ease, height 220ms ease, transform 220ms ease;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  transition: gap 220ms ease, opacity 220ms ease;
}

.nav-link,
.text-link,
.footer-links a,
.overlay-meta a,
.overlay-nav-link,
.hero-scroll-link {
  position: relative;
}

.nav-link {
  padding: 8px 0;
  color: rgba(24, 48, 75, 0.74);
  transition: color 180ms ease, transform 220ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--navy);
}

.nav-link::after,
.text-link::after,
.footer-links a::after,
.overlay-meta a::after,
.hero-scroll-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.text-link:hover::after,
.footer-links a:hover::after,
.overlay-meta a:hover::after,
.hero-scroll-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  transition: gap 220ms ease;
}

.header-socials {
  display: none;
  align-items: center;
  gap: 10px;
}

.header-social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  color: rgba(24, 48, 75, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.header-social-link:hover,
.header-social-link:focus-visible {
  color: var(--navy);
}

.header-social-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.header-social-link:hover::after,
.header-social-link:focus-visible::after {
  transform: scaleX(1);
}

.header-actions .button-outline {
  overflow: hidden;
  max-width: 10ch;
  transition:
    max-width 220ms ease,
    opacity 180ms ease,
    transform 220ms ease,
    gap 220ms ease;
}

.button,
.menu-toggle,
.menu-close {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    transform 220ms ease,
    gap 220ms ease;
}

.button::after,
.menu-toggle::after,
.menu-close::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
  transform-origin: right;
}

.button:hover::after,
.menu-toggle:hover::after,
.menu-close:hover::after {
  transform: scaleX(1.18);
}

.site-header .button:focus-visible,
.site-header .menu-toggle:focus-visible,
.site-header .nav-link:focus-visible {
  outline-offset: 5px;
}

.button-fill {
  color: var(--navy);
}

.button-outline {
  color: rgba(24, 48, 75, 0.78);
}

.site-header.is-condensed {
  padding-top: 8px;
}

.site-header.is-scrolling-down .header-shell {
  transform: translateY(4px) scale(0.98);
}

.site-header.is-condensed .header-shell {
  width: min(100% - max(var(--gutter), 28px), 1080px);
  min-height: 64px;
  padding-inline: clamp(16px, 2vw, 24px);
  background: rgba(255, 253, 250, 0.88);
  border-color: rgba(24, 48, 75, 0.08);
  box-shadow:
    0 12px 32px rgba(15, 34, 54, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.42) inset;
  transform: translateY(2px) scale(0.98);
}

.site-header.is-condensed .header-shell::before {
  opacity: 0.9;
}

.site-header.is-condensed .header-shell::after {
  opacity: 0.9;
}

.site-header.is-condensed .brand {
  gap: 10px;
}

.site-header.is-condensed .brand span {
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
}

.site-header.is-condensed .brand img {
  width: 42px;
  height: 42px;
  transform: scale(0.98);
}

.site-header.is-condensed .desktop-nav {
  gap: clamp(12px, 1.5vw, 20px);
}

.site-header.is-condensed .nav-link {
  transform: translateY(-1px);
}

.site-header.is-condensed .nav-link.is-active {
  color: var(--navy);
}

.site-header.is-condensed .header-actions {
  gap: 10px;
}

.site-header.is-condensed .header-socials {
  gap: 8px;
}

.site-header.is-condensed .header-social-link {
  min-width: 28px;
  min-height: 28px;
  font-size: 0.72rem;
}

.site-header.is-condensed .header-social-link svg {
  width: 15px;
  height: 15px;
}

.site-header.is-condensed .header-actions .button-outline {
  max-width: 0;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
}

.site-header.is-condensed .button,
.site-header.is-condensed .menu-toggle {
  gap: 8px;
}

.site-header.is-condensed .button-fill {
  font-size: 0.92rem;
}

.site-header.is-condensed .button::after,
.site-header.is-condensed .menu-toggle::after {
  width: 30px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(135deg, rgba(15, 34, 54, 0.98), rgba(17, 17, 17, 0.98));
  color: var(--white);
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay::before {
  content: "AU";
  position: absolute;
  right: -0.06em;
  bottom: -0.08em;
  font-size: min(45vw, 36rem);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.12em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.menu-overlay-inner {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  padding-top: 26px;
  padding-bottom: 32px;
}

.menu-overlay-top,
.overlay-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.overlay-nav {
  display: grid;
  align-content: center;
  gap: 14px;
}

.overlay-nav-link {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  width: fit-content;
  font-size: clamp(2.2rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.overlay-nav-link span {
  font-size: 0.24em;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.16em;
}

.overlay-meta a,
.menu-close {
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  color: rgba(24, 48, 75, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene {
  position: relative;
  padding: clamp(78px, 10vw, 150px) 0;
  overflow: clip;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(199, 192, 180, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(199, 192, 180, 0.08) 1px, transparent 1px);
  background-size: 8.3333vw 100%, 100% 96px;
  opacity: 0.4;
  pointer-events: none;
}

.scene[data-ghost]::after {
  content: attr(data-ghost);
  position: absolute;
  left: 50%;
  top: 42px;
  z-index: 0;
  font-size: min(18vw, 13rem);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: rgba(24, 48, 75, 0.035);
  transform: translateX(-50%) translateZ(-220px);
  pointer-events: none;
  white-space: nowrap;
}

.section-shell,
.hero-copy,
.directory-list,
.editorial-list,
.proposal-table,
.service-grid,
.pillar-list,
.article-layout,
.join-grid {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.hero,
.hero-cover {
  padding-top: 0;
}

.hero-grid,
.hero-home-grid,
.split-scene,
.article-layout,
.join-grid,
.spotlight-grid {
  display: grid;
  gap: 30px;
}

.hero-grid {
  align-items: end;
}

.hero-home-grid {
  min-height: 100svh;
  align-content: end;
  gap: 24px;
  padding-top: 132px;
  padding-bottom: clamp(34px, 8vh, 72px);
}

.page-home .hero-home-grid {
  min-height: 100dvh;
  padding-top: max(148px, 18svh);
}

.hero-cover {
  min-height: 100svh;
  color: var(--white);
  background: #111;
}

.page-home .hero-cover {
  min-height: 100dvh;
}

.hero-cover::before {
  display: none;
}

.hero-cover::after {
  content: "Sapienza";
  position: absolute;
  left: 50%;
  bottom: -0.02em;
  z-index: 1;
  font-size: min(24vw, 19rem);
  line-height: 0.78;
  font-weight: 800;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) translateZ(-200px);
  pointer-events: none;
  white-space: nowrap;
}

.hero-cover-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cover-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 20, 32, 0.16) 0%, rgba(10, 20, 32, 0.34) 42%, rgba(10, 20, 32, 0.76) 100%),
    linear-gradient(90deg, rgba(15, 34, 54, 0.68) 0%, rgba(15, 34, 54, 0.14) 42%, rgba(15, 34, 54, 0.42) 100%);
}

.hero-cover-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: brightness(0.94) saturate(0.96);
}

.hero-copy {
  display: grid;
  gap: 20px;
  max-width: min(980px, 100%);
}

.hero-copy-home {
  transform: translateZ(90px);
}

.page-home .hero-copy-home {
  max-width: min(900px, 100%);
}

.hero-side-note {
  display: grid;
  gap: 18px;
  align-self: end;
  justify-self: end;
  max-width: 34ch;
  padding-bottom: 10px;
  transform: translateZ(70px);
}

.hero-side-lines {
  display: grid;
  gap: 18px;
}

.hero-side-lines div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-side-lines span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.hero-side-lines p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-home .kicker,
.hero-home .hero-lead,
.hero-home .proof-bar,
.hero-home .hero-scroll-link,
.hero-home h1 {
  color: var(--white);
}

.hero-home h1 {
  max-width: 9ch;
}

.hero-proof {
  transform: translateZ(45px);
}

.hero-scroll-link {
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-visual {
  min-height: 42vh;
  transform: translateZ(28px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kicker,
.meta-line,
.support-copy,
.proof-bar,
.service-index,
.row-date,
.directory-index,
.pillar-number {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker,
.meta-line,
.support-copy,
.proof-bar,
.row-date,
.directory-index,
.service-index {
  color: rgba(24, 48, 75, 0.64);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--navy);
}

h1 {
  font-size: clamp(3.5rem, 11vw, 9rem);
}

h2 {
  font-size: clamp(2.2rem, 7vw, 5rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.hero-lead,
.section-head p,
.directory-copy p,
.pillar-card p,
.spotlight-panel p,
.service-card p,
.row-main p,
.proposal-row p,
.join-panel p,
.article-body p,
.editorial-form span,
.event-meta-panel span,
.event-meta-panel strong,
.article-meta p,
.program-list p,
.bullet-columns li {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-lead,
.section-head p,
.directory-copy p,
.pillar-card p,
.spotlight-panel p,
.service-card p,
.row-main p,
.proposal-row p,
.join-panel p,
.article-body p {
  max-width: 58ch;
}

.button-row,
.proof-bar,
.directory-actions,
.section-cta,
.article-cta,
.footer-links,
.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.proof-bar span {
  position: relative;
  padding-right: 20px;
}

.proof-bar span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.proof-bar span:last-child::after {
  display: none;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 38px;
  transform: translateZ(36px);
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.4), rgba(255, 253, 250, 0.08));
}

.directory-list,
.editorial-list,
.proposal-table {
  border-top: 1px solid rgba(199, 192, 180, 0.92);
}

.directory-row,
.editorial-row,
.proposal-row,
.service-card,
.pillar-card {
  display: grid;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(199, 192, 180, 0.92);
  background: transparent;
}

.directory-row,
.editorial-row,
.proposal-row {
  align-items: start;
}

.directory-copy,
.row-main {
  display: grid;
  gap: 10px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-line span {
  color: var(--green);
}

.text-link {
  width: fit-content;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.pillar-list,
.service-grid,
.bullet-columns {
  display: grid;
  gap: 0 28px;
}

.pillar-card,
.service-card {
  padding-top: 28px;
  padding-bottom: 28px;
}

.pillar-number,
.service-index {
  color: rgba(24, 48, 75, 0.34);
}

.spotlight {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 34, 54, 0.98), rgba(17, 17, 17, 0.98)),
    var(--navy-deep);
}

.spotlight::before {
  opacity: 0.12;
}

.spotlight::after {
  color: rgba(255, 255, 255, 0.08);
}

.spotlight-grid {
  align-items: end;
}

.spotlight-copy,
.spotlight-panel {
  transform: translateZ(48px);
}

.spotlight-copy h2,
.spotlight-copy p,
.spotlight-panel p,
.spotlight .kicker,
.spotlight .meta-line,
.spotlight .button {
  color: var(--white);
}

.spotlight-panel {
  display: grid;
  gap: 12px;
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.join-panel {
  padding-top: 10px;
}

.scene-social .section-head h2 {
  max-width: 11ch;
}

.social-feed-grid {
  display: grid;
  border-top: 1px solid rgba(199, 192, 180, 0.92);
}

.social-card {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(199, 192, 180, 0.92);
}

.social-card p {
  max-width: 48ch;
}

.join-scene {
  padding-bottom: clamp(100px, 12vw, 170px);
}

.editorial-form {
  display: grid;
  gap: 18px;
  transform: translateZ(45px);
}

.editorial-form label {
  display: grid;
  gap: 8px;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(24, 48, 75, 0.22);
  color: var(--ink);
}

.editorial-form textarea {
  min-height: 140px;
  resize: vertical;
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus,
.button:focus,
.menu-toggle:focus,
.menu-close:focus,
.nav-link:focus,
.text-link:focus,
.overlay-nav-link:focus,
.footer-links a:focus,
.hero-scroll-link:focus {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.filter-strip {
  margin-bottom: 22px;
  color: rgba(24, 48, 75, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.filter-strip span {
  position: relative;
  padding-right: 18px;
}

.filter-strip span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: currentColor;
}

.filter-strip span:last-child::after {
  display: none;
}

.event-meta-panel {
  display: grid;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid rgba(199, 192, 180, 0.92);
  border-bottom: 1px solid rgba(199, 192, 180, 0.92);
}

.event-meta-panel div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(199, 192, 180, 0.72);
}

.event-meta-panel div:last-child {
  border-bottom: 0;
}

.community-status {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(199, 192, 180, 0.92);
  color: rgba(24, 48, 75, 0.7);
}

.linktree-live {
  display: grid;
  gap: 34px;
}

.community-socials,
.community-sections {
  display: grid;
  gap: 26px;
}

.community-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.community-social-link,
.community-link-row {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(199, 192, 180, 0.92);
}

.community-social-link strong,
.community-link-row strong,
.community-section-title {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.community-social-link span,
.community-link-row span,
.community-empty,
.community-loading {
  color: rgba(24, 48, 75, 0.72);
}

.community-section {
  display: grid;
  gap: 10px;
}

.community-section-title {
  padding-top: 6px;
}

.community-link-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px 18px;
}

.community-link-copy {
  display: grid;
  gap: 6px;
}

.community-link-copy p {
  max-width: 58ch;
  color: rgba(24, 48, 75, 0.78);
}

.community-link-row em {
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24, 48, 75, 0.54);
}

.event-meta-panel span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(24, 48, 75, 0.54);
}

.program-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 18px;
}

.program-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(199, 192, 180, 0.92);
}

.bullet-columns ul {
  display: grid;
  gap: 12px;
}

.article-layout {
  align-items: start;
}

.article-meta {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(199, 192, 180, 0.92);
}

.article-body {
  display: grid;
  gap: 24px;
}

.article-section {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(199, 192, 180, 0.92);
  background: rgba(255, 253, 250, 0.18);
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-bio {
  max-width: 42ch;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
}

@media (min-width: 720px) {
  .hero-grid,
  .split-scene,
  .article-layout,
  .join-grid,
  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: end;
  }

  .hero-copy-home {
    grid-column: 1;
  }

  .page-home .hero-copy-home {
    grid-column: 1 / -1;
  }

  .hero-side-note {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-proof {
    grid-column: 1 / -1;
  }

  .hero-scroll-link {
    justify-self: end;
    align-self: end;
  }

  .pillar-list,
  .service-grid,
  .bullet-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-form .full {
    grid-column: 1 / -1;
  }

  .directory-row,
  .editorial-row {
    grid-template-columns: 86px minmax(0, 1fr) auto;
  }

  .proposal-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  }

  .event-meta-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .event-meta-panel div {
    border-bottom: 0;
    padding-right: 18px;
    border-right: 1px solid rgba(199, 192, 180, 0.72);
  }

  .event-meta-panel div:last-child {
    border-right: 0;
  }

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

  .community-section {
    grid-template-columns: minmax(220px, 0.36fr) 1fr;
    gap: 18px 28px;
    align-items: start;
  }

  .community-section-title {
    padding-top: 18px;
    border-top: 1px solid rgba(199, 192, 180, 0.92);
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .header-socials {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .section-head {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .pillar-list,
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .social-feed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 28px;
  }

  .social-card {
    padding-right: 22px;
    border-right: 1px solid rgba(199, 192, 180, 0.92);
    border-bottom: 0;
  }

  .social-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .site-header.is-condensed .header-shell {
    width: min(100% - max(var(--gutter), 40px), 960px);
  }
}

@media (max-width: 899px) {
  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    width: min(100% - 20px, 100%);
    grid-template-columns: auto auto;
    gap: 14px;
    min-height: 72px;
    padding-inline: 18px;
  }

  .brand span,
  .header-socials,
  .header-actions .button-outline,
  .header-actions .button-fill {
    display: none;
  }

  body::before,
  .scene[data-ghost]::after {
    font-size: min(26vw, 8rem);
  }

  .hero-cover::after {
    font-size: min(26vw, 8.4rem);
  }

  .hero-side-note {
    justify-self: start;
    max-width: 100%;
  }

  .site-header.is-condensed .header-shell {
    width: min(100% - 16px, 100%);
    min-height: 60px;
    padding-inline: 16px;
  }

  .site-header.is-condensed .header-shell::after {
    inset-inline: 12px;
  }

  .site-header.is-condensed .brand span {
    transform: none;
  }

  .site-header.is-condensed .brand img {
    width: 38px;
    height: 38px;
  }

  .site-header.is-condensed .menu-toggle::after {
    width: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
