@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --blue-900: #071b4a;
  --blue-800: #102e6d;
  --blue-700: #1b4b9b;
  --red: #b58a2a;
  --cream: #f7f3e8;
  --cream-2: #efe8d8;
  --ink: #18233f;
  --muted: #5c677d;
  --line: #d7dce8;
  --white: #fff;
  --gold: #d7b56d;
  --gold-dark: #9d711c;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.5;
}

body.menu-is-open,
body.search-is-open {
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue-900);
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.archive-strip {
  display: none;
}

.archive-inner {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 0.75rem;
}

.archive-inner p {
  margin: 0;
}

.archive-inner a {
  color: var(--blue-700);
  font-weight: 700;
}

.info-dot {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--blue-900);
  background: var(--white);
  border-bottom: 1px solid #d9deeb;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.utility-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.6rem;
  padding: 0.75rem 0;
  color: var(--blue-900);
  background: transparent;
  border: 0;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms var(--ease);
}

.utility-button:hover,
.utility-button:focus {
  color: var(--gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-link {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  color: var(--blue-900);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--blue-900), var(--gold)) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.social-link::before,
.social-link::after {
  content: "";
}

.social-link::before {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.social-link::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border: 2px solid currentColor;
  background: transparent;
  border-radius: 50%;
  box-shadow: 6px -6px 0 -3px currentColor;
  transform: translate(0, 0);
}

.social-link:hover,
.social-link:focus {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
  text-decoration: none;
  transform: translateY(-1px);
}

.search-toggle,
.menu-toggle {
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(7, 27, 74, 0.14);
  border-radius: 999px;
}

.search-toggle {
  width: 44px;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.menu-toggle {
  color: var(--white);
  gap: 0.55rem;
  padding-inline: 0.95rem 1rem;
  background:
    linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-color: rgba(215, 181, 109, 0.35);
  box-shadow: 0 14px 28px rgba(7, 27, 74, 0.18);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger,
.hamburger::before,
.hamburger::after,
.search-mark,
.search-mark::after {
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 220ms var(--ease), top 220ms var(--ease);
}

.utility-button:hover .hamburger,
.utility-button:hover .hamburger::before,
.utility-button:hover .hamburger::after,
.utility-button:focus .hamburger,
.utility-button:focus .hamburger::before,
.utility-button:focus .hamburger::after,
.utility-button:hover .search-mark::after,
.utility-button:focus .search-mark::after {
  background: var(--gold-dark);
}

.utility-button:hover .search-mark,
.utility-button:focus .search-mark {
  border-color: var(--gold-dark);
}

.search-mark {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-mark::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  content: "";
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--blue-900);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark small {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wordmark-seal {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background: url("assets/office-seal.png") center / cover no-repeat;
  border: 1px solid rgba(7, 27, 74, 0.18);
  border-radius: 50%;
  font-size: 0;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 4px rgba(7, 27, 74, 0.12);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.55rem);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: var(--blue-900);
  text-decoration: none;
  position: relative;
}

.desktop-nav a::after,
.watch-link::after,
.section-title-row a::after,
.text-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55em;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a:focus::after,
.watch-link:hover::after,
.watch-link:focus::after,
.section-title-row a:hover::after,
.section-title-row a:focus::after,
.text-link:hover::after,
.text-link:focus::after {
  transform: scaleX(1);
}

.menu-panel,
.search-panel {
  border-top: 1px solid var(--line);
  background: var(--blue-900);
  color: var(--white);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms var(--ease), transform 260ms var(--ease);
  will-change: opacity, transform;
}

.menu-panel.is-open,
.search-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 4rem;
  padding: 3.3rem 0;
}

.menu-grid nav {
  display: grid;
  gap: 1.1rem;
}

.menu-grid nav a {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-decoration: none;
  transform: translateX(0);
  transition: color 180ms var(--ease), transform 240ms var(--ease);
}

.menu-grid nav a:hover,
.menu-grid nav a:focus {
  color: var(--gold);
  transform: translateX(12px);
}

.menu-feature {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding-top: 0.5rem;
}

.menu-feature a {
  color: #dce7ff;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.search-box {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
}

.search-box label,
.kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker.light {
  color: var(--gold);
}

.search-box input,
.office-form input,
.office-form select,
.office-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.95rem 1rem;
}

.search-box button,
.office-form button {
  padding: 1rem 1.3rem;
  color: var(--white);
  background: var(--red);
  border: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.search-box button:hover,
.office-form button:hover,
.search-box button:focus,
.office-form button:focus {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - 132px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-900);
}

.home-hero {
  min-height: min(650px, calc(100vh - 132px));
  align-items: center;
  color: var(--blue-900);
  background:
    radial-gradient(circle at 8% 18%, rgba(215, 181, 109, 0.18), transparent 26%),
    linear-gradient(90deg, #f8f5ed 0 58%, #e9eef8 58% 100%);
}

.home-hero::after {
  position: absolute;
  right: 1.5rem;
  bottom: -5rem;
  width: clamp(190px, 28vw, 380px);
  aspect-ratio: 1;
  background: url("assets/office-seal-watermark.png") center / contain no-repeat;
  opacity: 0.22;
  transform: rotate(-8deg);
  content: "";
  pointer-events: none;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 18s var(--ease) forwards;
}

.home-hero img {
  left: auto;
  right: clamp(1rem, 5vw, 4rem);
  top: 50%;
  width: min(38vw, 520px);
  height: min(62%, 420px);
  object-fit: cover;
  border: 12px solid var(--white);
  box-shadow: 0 24px 60px rgba(7, 27, 74, 0.18);
  transform: translateY(-50%);
  animation: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 36, 88, 0.93), rgba(10, 36, 88, 0.64) 44%, rgba(10, 36, 88, 0.18)),
    linear-gradient(0deg, rgba(10, 36, 88, 0.82), transparent 54%);
}

.home-hero .hero-overlay {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(4.5rem, 10vw, 8rem);
}

.home-hero .hero-copy {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero-copy > * {
  animation: slideUp 780ms var(--ease) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 180ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 260ms;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.1rem;
  font-size: clamp(3.1rem, 7vw, 6.15rem);
}

.home-hero h1 {
  max-width: 700px;
  color: var(--blue-900);
  font-size: clamp(3.35rem, 7vw, 6.4rem);
}

.hero-copy p:last-child,
.page-hero p:last-child {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.home-hero .hero-copy > p:not(.kicker) {
  max-width: 600px;
  color: var(--muted);
}

.home-hero .kicker.light {
  color: var(--red);
}

.watch-link {
  display: inline-block;
  position: relative;
  margin-top: 1.3rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-underline-offset: 0.45em;
  text-decoration: none;
}

.home-hero .watch-link {
  color: var(--blue-700);
}

/* Lowell Student Association-inspired homepage treatment */
.topbar {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(7, 27, 74, 0.13);
  backdrop-filter: blur(14px);
}

.utility-button,
.social-link,
.desktop-nav a,
.wordmark {
  color: var(--blue-900);
}

.hamburger,
.hamburger::before,
.hamburger::after,
.search-mark::after {
  background: var(--blue-900);
}

.search-mark {
  border-color: var(--blue-900);
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  background: var(--white);
}

.menu-toggle {
  color: var(--white);
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
}

.lsa-hero {
  min-height: min(690px, calc(100vh - 86px));
  align-items: end;
  color: var(--white);
  background: var(--blue-900);
}

.lsa-hero::after {
  display: none;
}

.lsa-hero img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border: 0;
  box-shadow: none;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.02);
}

.lsa-hero .hero-overlay {
  display: block;
  background:
    linear-gradient(0deg, rgba(7, 27, 74, 0.58), rgba(7, 27, 74, 0.06) 56%),
    linear-gradient(90deg, rgba(7, 27, 74, 0.34), transparent 56%);
}

.lsa-hero-card {
  width: min(740px, calc(100% - 112px));
  max-width: 740px;
  margin: 0 auto 3.2rem max(4vw, calc((100vw - 1180px) / 2));
  padding: clamp(1.45rem, 2.45vw, 2rem) clamp(1.65rem, 3vw, 2.35rem);
  background: rgba(7, 27, 74, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(7, 27, 74, 0.34);
  backdrop-filter: blur(10px);
}

.home-hero .lsa-hero-card {
  padding: clamp(1.45rem, 2.45vw, 2rem) clamp(1.65rem, 3vw, 2.35rem);
}

.lsa-hero h1 {
  max-width: 680px;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(2.4rem, 3.6vw, 3.65rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.lsa-hero .hero-copy > p:not(.kicker) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.55;
}

.lsa-hero .kicker.light {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  color: var(--white);
  background: var(--blue-700);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(215, 181, 109, 0.72);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  z-index: 2;
  color: var(--white);
  font-size: 2.7rem;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--blue-900);
}

.feature-rail a {
  position: relative;
  min-height: 146px;
  padding: 1.35rem clamp(1rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  isolation: isolate;
  overflow: hidden;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.feature-rail a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 55%),
    var(--blue-800);
  opacity: 0;
  transition: opacity 260ms var(--ease);
  content: "";
}

.feature-rail a::after,
.initiative-grid a::after {
  position: absolute;
  right: 1.4rem;
  bottom: 1.25rem;
  width: 22px;
  height: 22px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0;
  transform: translate(-8px, 8px) rotate(-45deg);
  transition: opacity 220ms var(--ease), transform 260ms var(--ease);
  content: "";
}

.feature-rail a:hover,
.feature-rail a:focus {
  background: var(--blue-800);
}

.feature-rail a:hover::before,
.feature-rail a:focus::before,
.feature-rail a:hover::after,
.feature-rail a:focus::after,
.initiative-grid a:hover::after,
.initiative-grid a:focus::after {
  opacity: 1;
}

.feature-rail a:hover::after,
.feature-rail a:focus::after,
.initiative-grid a:hover::after,
.initiative-grid a:focus::after {
  transform: translate(0, 0) rotate(-45deg);
}

.feature-rail span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-rail strong {
  display: block;
  max-width: 320px;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  line-height: 1.07;
}

.administration-home {
  padding: clamp(3.6rem, 6vw, 5.3rem) 0;
}

.administration-home h2,
.initiatives h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-title-row a {
  position: relative;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(7, 27, 74, 0.18);
  border: 1px solid rgba(7, 27, 74, 0.18);
}

.admin-row a {
  position: relative;
  display: grid;
  min-height: 230px;
  align-items: end;
  padding: 1.25rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(7, 27, 74, 0.9), rgba(7, 27, 74, 0.16)),
    var(--blue-800);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.admin-row a:nth-child(1) {
  background-image: linear-gradient(0deg, rgba(10, 36, 88, 0.9), rgba(10, 36, 88, 0.1)), url("assets/mayor-lurie.jpg");
}

.admin-row a:nth-child(2) {
  background-image: linear-gradient(0deg, rgba(10, 36, 88, 0.9), rgba(10, 36, 88, 0.1)), url("assets/field-of-dreams.jpg");
}

.admin-row a:nth-child(3) {
  background-image: linear-gradient(0deg, rgba(10, 36, 88, 0.9), rgba(10, 36, 88, 0.1)), url("assets/boe-meeting.jpg");
}

.admin-row a:nth-child(4) {
  background-image: linear-gradient(0deg, rgba(10, 36, 88, 0.9), rgba(10, 36, 88, 0.1)), url("assets/chromebooks.jpg");
}

.admin-row a::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
  transition: inset 260ms var(--ease), border-color 260ms var(--ease);
}

.admin-row a::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.55;
  content: "";
}

.admin-row a:hover,
.admin-row a:focus {
  transform: translateY(-7px);
  box-shadow: 0 20px 36px rgba(7, 27, 74, 0.18);
}

.admin-row a:hover::before,
.admin-row a:focus::before {
  inset: 10px;
  border-color: rgba(255, 255, 255, 0.62);
}

.admin-row span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.05;
}

.admin-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
}

.admin-modern a {
  text-decoration: none;
}

.admin-feature-card {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: end;
  overflow: hidden;
  padding: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  background: var(--blue-900);
  border-radius: 24px;
  box-shadow: 0 24px 46px rgba(7, 27, 74, 0.16);
  isolation: isolate;
}

.admin-feature-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.admin-feature-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(7, 27, 74, 0.9), rgba(7, 27, 74, 0.08) 62%),
    radial-gradient(circle at 20% 20%, rgba(215, 181, 109, 0.24), transparent 28%);
  content: "";
}

.admin-feature-card span,
.admin-mini-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-feature-card strong {
  display: block;
  max-width: 570px;
  margin-top: 0.65rem;
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.admin-feature-card:hover img,
.admin-feature-card:focus img {
  transform: scale(1.055);
}

.admin-mini-grid {
  display: grid;
  gap: 1rem;
}

.admin-mini-grid a {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 1.35rem;
  overflow: hidden;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 27, 74, 0.1);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(7, 27, 74, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease);
}

.admin-mini-grid a::after {
  position: absolute;
  right: -2rem;
  bottom: -2.7rem;
  width: 125px;
  aspect-ratio: 1;
  background: url("assets/office-seal-watermark.png") center / contain no-repeat;
  opacity: 0.1;
  content: "";
}

.admin-mini-grid strong {
  display: block;
  margin: 0.35rem 0;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.admin-mini-grid p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.admin-mini-grid a:hover,
.admin-mini-grid a:focus {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 24px 44px rgba(7, 27, 74, 0.13);
}

.latest-home {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.latest-home h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.6rem, 5vw, 4.35rem);
}

.press-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.press-feature,
.press-side article {
  background: var(--white);
}

.press-feature {
  display: grid;
  grid-template-rows: auto 1fr;
}

.press-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.press-feature div {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-top: 6px solid var(--red);
}

.press-feature h3 {
  margin: 0.55rem 0 0;
  color: var(--blue-900);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.press-side {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.press-side article {
  min-height: 190px;
  padding: 1.45rem;
  border-top: 5px solid transparent;
  transition: border-color 220ms var(--ease), transform 260ms var(--ease);
}

.press-side article:hover,
.press-side article:focus-within {
  border-top-color: var(--red);
  transform: translateX(-4px);
}

.press-side h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.press-feature h3 a,
.press-side h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.press-feature p,
.press-side p {
  margin: 0;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-record-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--blue-900);
}

.home-record-band article {
  min-height: 170px;
  padding: 1.6rem clamp(1.1rem, 3vw, 2.2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.home-record-band strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.home-record-band span {
  color: #dbe5f7;
  font-weight: 700;
}

.home-statement {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.home-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.home-statement h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
}

.home-statement p:not(.kicker) {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.home-statement a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-underline-offset: 0.3em;
}

.lsa-updates {
  padding: clamp(3rem, 6vw, 4.8rem) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 181, 109, 0.18), transparent 30%),
    #f8f5ed;
}

.lsa-update-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
}

.announcement-card,
.scoreboard-card {
  padding: clamp(1.35rem, 3.2vw, 2.05rem);
  background: var(--white);
  border: 1px solid rgba(7, 27, 74, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(7, 27, 74, 0.08);
}

.announcement-card h2 {
  max-width: 680px;
  color: var(--blue-900);
  font-family: var(--sans);
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.announcement-card p:not(.kicker) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.announcement-card a {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.8rem 1.1rem;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.scoreboard-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.97), rgba(16, 46, 109, 0.96)),
    var(--blue-900);
}

.scoreboard-card .kicker {
  color: var(--gold);
}

.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.score-grid span {
  display: grid;
  min-height: 105px;
  align-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.lsa-welcome {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 92% 20%, rgba(215, 181, 109, 0.2), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8f5ed 100%);
}

.lsa-welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.lsa-welcome h2 {
  color: var(--blue-900);
  font-family: var(--sans);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.lsa-welcome p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
}

.connect-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.98), rgba(16, 46, 109, 0.95)),
    var(--blue-900);
  border: 1px solid rgba(215, 181, 109, 0.36);
  border-radius: 0;
  box-shadow: 0 22px 44px rgba(7, 27, 74, 0.16);
}

.connect-card::after {
  position: absolute;
  right: -4.2rem;
  bottom: -5rem;
  width: 220px;
  aspect-ratio: 1;
  background: url("assets/office-seal-watermark.png") center / contain no-repeat;
  opacity: 0.15;
  transform: rotate(-12deg);
  content: "";
  pointer-events: none;
}

.connect-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connect-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.connect-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(215, 181, 109, 0.38);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moments-home {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 181, 109, 0.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8f5ed 100%);
  color: var(--blue-900);
}

.moments-home h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--sans);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.moments-home .section-title-row a {
  color: var(--blue-700);
}

.moments-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
  background: transparent;
}

.moments-grid a {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 410px;
  padding: 0 0 1.4rem;
  overflow: hidden;
  background: var(--white);
  color: var(--blue-900);
  border: 1px solid rgba(7, 27, 74, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(7, 27, 74, 0.1);
  text-decoration: none;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.moments-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.moments-grid a:hover,
.moments-grid a:focus {
  border-color: rgba(215, 181, 109, 0.56);
  transform: translateY(-7px);
  box-shadow: 0 28px 54px rgba(7, 27, 74, 0.14);
}

.moments-grid a:hover img,
.moments-grid a:focus img {
  transform: scale(1.045);
}

.moments-grid span,
.moments-grid strong {
  margin-inline: 1.35rem;
}

.moments-grid span {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.moments-grid strong {
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
}

.instagram-home {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.instagram-home h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(7, 27, 74, 0.18);
  border: 1px solid rgba(7, 27, 74, 0.18);
}

.instagram-grid a {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 300px;
  color: var(--white);
  background: var(--blue-900);
  text-decoration: none;
}

.instagram-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 500ms var(--ease), opacity 300ms var(--ease);
}

.instagram-grid a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 74, 0.82), rgba(7, 27, 74, 0.06));
  content: "";
}

.instagram-grid span {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 1rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.05;
}

.instagram-grid a:hover img,
.instagram-grid a:focus img {
  opacity: 1;
  transform: scale(1.055);
}

.initiatives {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 9% 0%, rgba(215, 181, 109, 0.16), transparent 29%),
    #f8f5ed;
  border-top: 1px solid var(--line);
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(7, 27, 74, 0.18);
  border: 1px solid rgba(7, 27, 74, 0.18);
}

.initiative-grid a {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-height: 205px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-900);
  text-decoration: none;
  overflow: hidden;
  transition: background 220ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.initiative-grid a:hover,
.initiative-grid a:focus {
  z-index: 1;
  background: var(--blue-900);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(7, 27, 74, 0.13);
}

.initiative-grid span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

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

.initiative-grid a:hover span,
.initiative-grid a:focus span {
  color: var(--gold);
}

.initiative-grid a:hover p,
.initiative-grid a:focus p {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 74, 0.98), rgba(16, 46, 109, 0.95)),
    var(--blue-900);
  border-top: 6px solid var(--gold);
}

.pledge-home,
.press-home {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.pledge-home {
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 181, 109, 0.22), transparent 30%),
    var(--blue-900);
}

.pledge-home-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(215, 181, 109, 0.34);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}

.pledge-home-card h2,
.press-home h2 {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.06em;
}

.pledge-home-card p:not(.kicker) {
  max-width: 720px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.press-home {
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 181, 109, 0.18), transparent 30%),
    #f8f5ed;
}

.press-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.press-home-grid a {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 1.35rem;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 27, 74, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(7, 27, 74, 0.08);
  text-decoration: none;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.press-home-grid span,
.press-home-grid small {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-home-grid strong {
  display: block;
  margin: 1rem 0;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.press-home-grid a:hover,
.press-home-grid a:focus {
  border-color: rgba(215, 181, 109, 0.6);
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(7, 27, 74, 0.13);
}

.pledge-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 1.25rem;
  align-items: start;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.pledge-text,
.pledge-sign-card {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(7, 27, 74, 0.1);
}

.pledge-text {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(7, 27, 74, 0.1);
}

.pledge-text h2 {
  color: var(--blue-900);
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.pledge-text li {
  margin: 0.45rem 0;
}

.pledge-text blockquote {
  margin: 2rem 0;
  padding: 1.4rem;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 20px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}

.pledge-closing {
  color: var(--blue-900);
  font-weight: 850;
}

.pledge-meta {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pledge-sign-card {
  position: sticky;
  top: 100px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.98), rgba(16, 46, 109, 0.94)),
    var(--blue-900);
}

.pledge-sign-card h2 {
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.pledge-sign-card > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.pledge-form,
.pledge-form label {
  display: grid;
  gap: 0.55rem;
}

.pledge-form {
  gap: 0.9rem;
}

.pledge-type,
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pledge-form label {
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pledge-form input,
.pledge-form select,
.pledge-form textarea {
  min-height: 46px;
  padding: 0.78rem 0.85rem;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
}

.pledge-type label,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  line-height: 1.35;
}

.pledge-type input,
.check-row input {
  min-height: auto;
  margin-top: 0.15rem;
}

.pledge-form button {
  min-height: 52px;
  color: var(--blue-900);
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.issues-board {
  display: grid;
  gap: 1rem;
  padding-bottom: 2rem;
}

.issues-board article {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(7, 27, 74, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(7, 27, 74, 0.08);
}

.issues-board img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.issues-board h2 {
  max-width: 760px;
  color: var(--blue-900);
  font-family: var(--sans);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.issues-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 clamp(4rem, 7vw, 6rem);
}

.issues-detail article {
  padding: 1.4rem;
  background: #f8f5ed;
  border: 1px solid rgba(7, 27, 74, 0.1);
  border-radius: 22px;
}

.issues-detail span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold-dark);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.newsletter-grid h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.newsletter-grid form {
  display: grid;
  gap: 0.75rem;
}

.newsletter-grid label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-grid form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.newsletter-grid input {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 0;
}

.newsletter-grid button {
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  color: var(--white);
  background: var(--gold-dark);
  border: 0;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible,
.reveal-group > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.055);
  }

  to {
    transform: scale(1.015);
  }
}

.statement,
.page-hero {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.statement h2,
.page-hero h1,
.office-actions h2 {
  max-width: 900px;
  margin-bottom: 1rem;
  color: var(--blue-900);
  font-size: clamp(3rem, 7vw, 6rem);
}

.statement p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
}

.statement.compact {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.editorial-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.large-story {
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--cream);
  border-top: 7px solid var(--red);
}

.large-story h2 {
  color: var(--blue-900);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.large-story p {
  color: var(--muted);
  font-size: 1.1rem;
}

.text-link {
  color: var(--blue-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-stack {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.story-stack article,
.release-list article {
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

time,
.release-list p {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-stack h3,
.release-list h2 {
  margin: 0.5rem 0 0;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.story-stack a,
.release-list a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.office-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 3rem;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.action-grid a {
  display: grid;
  min-height: 150px;
  align-items: end;
  padding: 1.5rem;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 4rem 0 6rem;
}

.profile-grid article {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.portrait {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  background: var(--blue-900);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
}

.profile-grid h2,
.issue-list h2 {
  margin-bottom: 0.7rem;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-hero {
  background: var(--white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.about-hero-copy h1 {
  color: var(--blue-900);
}

.about-hero-copy p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.about-hero-image,
.photo-feature figure {
  margin: 0;
}

.about-hero-image {
  position: relative;
  padding: 1rem;
  background: var(--blue-900);
}

.about-hero-image img,
.photo-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-hero-image figcaption,
.photo-feature figcaption {
  margin-top: 0.75rem;
  color: #dbe5f7;
  font-size: 0.78rem;
  font-weight: 700;
}

.photo-feature figcaption {
  color: var(--muted);
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.photo-feature h2,
.about-timeline h2 {
  margin-bottom: 1rem;
  color: var(--blue-900);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.photo-feature p:not(.kicker) {
  color: var(--muted);
  font-size: 1.1rem;
}

.image-portrait {
  background-size: cover;
  background-position: center;
}

.chromebook-card {
  background-image: linear-gradient(0deg, rgba(7, 27, 74, 0.24), rgba(7, 27, 74, 0.06)), url("assets/sports-team-group.jpg");
}

.boe-card {
  background-image: linear-gradient(0deg, rgba(7, 27, 74, 0.24), rgba(7, 27, 74, 0.06)), url("assets/sfusd-gov-office.jpeg");
}

.field-card {
  background-image: linear-gradient(0deg, rgba(7, 27, 74, 0.24), rgba(7, 27, 74, 0.06)), url("assets/justin-mayor-photo.png");
}

.about-timeline {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #f5f2eb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline-grid article {
  min-height: 240px;
  padding: 1.7rem;
  background: var(--white);
  border-top: 5px solid var(--red);
}

.timeline-grid span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-grid h3 {
  margin: 0.75rem 0;
  color: var(--blue-900);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

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

.issue-list {
  display: grid;
  gap: 1px;
  padding: 4rem 0 6rem;
}

.issue-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.issue-list span {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.15em;
}

.record-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 0 5rem;
}

.record-stats article {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-height: 190px;
  padding: 1.5rem;
  color: var(--white);
  background: var(--blue-900);
  border-top: 5px solid var(--red);
}

.record-stats strong {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.record-stats span {
  color: #dbe5f7;
}

.record-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 5rem);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.record-two-col h2,
.orders-section h2,
.record-lists h2 {
  margin-bottom: 1rem;
  color: var(--blue-900);
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
}

.record-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.record-copy blockquote {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0 1.5rem;
  color: var(--blue-900);
  border-left: 5px solid var(--red);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  line-height: 1.12;
}

.record-copy cite {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-lists {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #f5f2eb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.record-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.record-card-grid article {
  padding: 1.7rem;
  background: var(--white);
}

.record-card-grid h3,
.orders-grid h3 {
  color: var(--blue-900);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.record-card-grid ol,
.orders-grid ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.record-card-grid li,
.orders-grid li {
  margin: 0.7rem 0;
}

.orders-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.orders-section > h2 {
  max-width: 820px;
}

.orders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.orders-grid > div {
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  box-shadow: 0 18px 34px rgba(7, 27, 74, 0.08);
}

.release-list {
  padding: 3rem 0 6rem;
}

.contact-section {
  padding: 4rem 0 7rem;
  background: var(--blue-900);
}

.office-form {
  display: grid;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  gap: 1rem;
  color: var(--white);
}

.office-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Modern Lowell-inspired surface system */
.page-hero,
.about-hero,
.administration-home,
.record-lists,
.orders-section,
.release-list,
.contact-section {
  position: relative;
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(2rem, 4vw, 3.5rem) auto;
  padding: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.96), rgba(16, 46, 109, 0.92)),
    var(--blue-900);
  border: 1px solid rgba(215, 181, 109, 0.24);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 27, 74, 0.16);
}

.page-hero::after {
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: clamp(220px, 28vw, 380px);
  aspect-ratio: 1;
  background: url("assets/office-seal-watermark.png") center / contain no-repeat;
  opacity: 0.14;
  transform: rotate(-12deg);
  content: "";
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--sans);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.page-hero .kicker,
.page-hero p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.about-hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 181, 109, 0.14), transparent 30%),
    #f8f5ed;
}

.about-hero-image,
.photo-feature figure,
.profile-grid article,
.timeline-grid article,
.record-card-grid article,
.orders-grid > div,
.release-list article,
.office-form,
.contact-card {
  border-radius: 22px;
}

.about-hero-image,
.photo-feature figure {
  overflow: hidden;
  padding: 0;
  background: var(--blue-900);
  box-shadow: 0 24px 50px rgba(7, 27, 74, 0.14);
}

.about-hero-image figcaption,
.photo-feature figcaption {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
}

.profile-grid article,
.record-card-grid article,
.orders-grid > div,
.release-list article {
  border: 1px solid rgba(7, 27, 74, 0.12);
  box-shadow: 0 16px 34px rgba(7, 27, 74, 0.07);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.profile-grid article:hover,
.record-card-grid article:hover,
.orders-grid > div:hover,
.release-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 181, 109, 0.55);
  box-shadow: 0 24px 48px rgba(7, 27, 74, 0.12);
}

.portrait,
.timeline-grid,
.record-card-grid,
.initiative-grid,
.instagram-grid,
.admin-row,
.moments-grid {
  border-radius: 22px;
}

.portrait,
.instagram-grid a,
.admin-row a,
.moments-grid a {
  overflow: hidden;
}

.timeline-grid,
.record-card-grid,
.initiative-grid {
  gap: 1rem;
  background: transparent;
  border: 0;
}

.timeline-grid article,
.record-card-grid article,
.orders-grid > div,
.record-stats article {
  border-top: 0;
}

.timeline-grid article::before,
.record-card-grid article::before,
.orders-grid > div::before,
.record-stats article::before {
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 1.1rem;
  background: var(--gold);
  border-radius: 999px;
  content: "";
}

.record-stats {
  gap: 1rem;
}

.record-stats article {
  min-height: 220px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.98), rgba(16, 46, 109, 0.95)),
    var(--blue-900);
  box-shadow: 0 18px 38px rgba(7, 27, 74, 0.13);
}

.scoreboard-card {
  border-radius: 22px;
}

.score-grid {
  gap: 1rem;
}

.score-grid span {
  min-height: 112px;
  border-radius: 16px;
  line-height: 1.18;
}

.score-grid strong {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  margin-bottom: 0.3rem;
}

.administration-home {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(3rem, 6vw, 5rem) auto;
  padding: clamp(1.1rem, 2.6vw, 1.5rem);
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 181, 109, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 237, 0.92)),
    #fff;
  border: 1px solid rgba(7, 27, 74, 0.08);
  border-radius: 28px;
}

.admin-row {
  border-radius: 24px;
}

.admin-row a {
  border-radius: 0;
}

.moments-home {
  border-radius: 0;
}

.moments-home .wrap {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 27, 74, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(7, 27, 74, 0.09);
}

.moments-grid {
  overflow: hidden;
}

.instagram-home {
  background:
    radial-gradient(circle at 80% 10%, rgba(215, 181, 109, 0.2), transparent 28%),
    #ddecff;
}

.instagram-home .wrap {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(7, 27, 74, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(7, 27, 74, 0.08);
}

.instagram-grid {
  border-radius: 24px;
}

.instagram-grid a {
  min-height: 280px;
}

.release-list {
  display: grid;
  gap: 1rem;
}

.release-list article {
  padding: 1.5rem;
  background: var(--white);
}

.contact-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background:
    linear-gradient(180deg, #f8f5ed 0%, #fff 100%);
}

.contact-presidential {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.98), rgba(16, 46, 109, 0.95)),
    var(--blue-900);
}

.contact-card::after {
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 260px;
  aspect-ratio: 1;
  background: url("assets/office-seal-watermark.png") center / contain no-repeat;
  opacity: 0.16;
  transform: rotate(-12deg);
  content: "";
}

.contact-card h2 {
  position: relative;
  z-index: 1;
  max-width: 440px;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.contact-routes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.contact-routes span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(215, 181, 109, 0.42);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-form {
  width: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(7, 27, 74, 0.12);
  box-shadow: 0 24px 50px rgba(7, 27, 74, 0.1);
}

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.98), rgba(10, 36, 88, 0.96)),
    var(--blue-900);
  border-top: 6px solid var(--red);
}

.footer::after {
  position: absolute;
  right: clamp(-7rem, -8vw, -3rem);
  bottom: clamp(-8rem, -10vw, -4rem);
  z-index: -1;
  width: clamp(220px, 31vw, 430px);
  aspect-ratio: 1;
  background: url("assets/office-seal-watermark.png") center / contain no-repeat;
  opacity: 0.34;
  transform: rotate(-12deg);
  transform-origin: center;
  content: "";
  pointer-events: none;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.footer .wordmark {
  color: var(--white);
  align-items: center;
}

.footer .wordmark-seal {
  border-color: rgba(255, 255, 255, 0.7);
}

.footer-primary {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1rem 2.4rem;
  justify-self: end;
  width: min(100%, 540px);
}

.footer-primary a {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.05;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-bottom p {
  margin: 0;
  color: #dbe5f7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.4rem;
}

.footer-policy a {
  color: #dbe5f7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.policy-page {
  min-height: 58vh;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.policy-page h1 {
  max-width: 900px;
  color: var(--blue-900);
}

.policy-page p:not(.kicker) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.12rem;
}

.article-page {
  background:
    linear-gradient(90deg, rgba(7, 27, 74, 0.04), transparent 34%),
    var(--white);
}

.article-shell {
  max-width: 900px;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-underline-offset: 0.28em;
}

.article-shell h1 {
  max-width: 900px;
  color: var(--blue-900);
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.article-meta {
  padding: 1rem 0 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-shell .lead {
  color: var(--blue-900);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.16;
}

.article-shell p:not(.kicker):not(.lead),
.article-list {
  color: var(--muted);
  font-size: 1.12rem;
}

.article-shell blockquote {
  margin: 2rem 0;
  padding: 1.5rem 0 0 1.5rem;
  color: var(--blue-900);
  border-left: 5px solid var(--red);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.article-image {
  width: 100%;
  margin: 1.2rem 0 2rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-list {
  padding-left: 1.25rem;
}

.article-list li {
  margin: 0.75rem 0;
}

.photo-story-home {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 181, 109, 0.18), transparent 28%),
    linear-gradient(180deg, #fff, #f6f8fc);
}

.photo-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.photo-story-grid article {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(7, 27, 74, 0.14);
  isolation: isolate;
}

.photo-story-grid article:nth-child(2) {
  min-height: 360px;
  align-self: end;
}

.photo-story-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.photo-story-grid article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(7, 27, 74, 0.9), rgba(7, 27, 74, 0.12) 64%),
    radial-gradient(circle at 18% 18%, rgba(215, 181, 109, 0.3), transparent 30%);
  content: "";
}

.photo-story-grid article:hover img {
  transform: scale(1.06);
}

.photo-story-grid article > div {
  position: absolute;
  left: clamp(1.35rem, 3vw, 2.2rem);
  right: clamp(1.35rem, 3vw, 2.2rem);
  bottom: clamp(1.35rem, 3vw, 2.2rem);
}

.photo-story-grid h2 {
  max-width: 680px;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

.photo-story-grid p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
}

.about-deep-profile {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.profile-photo-stack {
  display: grid;
  gap: 1rem;
}

.profile-photo-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(7, 27, 74, 0.14);
}

.profile-photo-stack img:nth-child(2) {
  width: 74%;
  margin-left: auto;
  margin-top: -4rem;
  border: 10px solid var(--white);
}

.profile-longform {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(229, 238, 250, 0.94), rgba(247, 243, 232, 0.82));
  border: 1px solid rgba(7, 27, 74, 0.08);
  border-radius: 30px;
}

.profile-longform p,
.agenda-grid p,
.final-word p {
  color: #3f4b66;
  font-size: 1.08rem;
}

.movie-quote {
  padding: clamp(4.2rem, 7vw, 7rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(215, 181, 109, 0.2), transparent 32%),
    linear-gradient(135deg, var(--blue-900), #123c86);
}

.movie-quote-card {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.16);
}

.movie-quote blockquote {
  margin: 1.2rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.movie-quote blockquote p {
  margin-bottom: 0.65rem;
}

.movie-quote cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-deep-dive {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--cream);
}

.agenda-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.agenda-grid h2,
.final-word h2 {
  color: var(--blue-900);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.agenda-grid figure,
.final-word {
  margin: 0;
}

.agenda-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 56px rgba(7, 27, 74, 0.14);
}

.agenda-grid figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-word {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.final-word blockquote {
  margin: 2rem 0 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  background: var(--blue-900);
  border-radius: 28px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.15;
}

.sitemap-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.sitemap-page article {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(135deg, #fff, #eef5ff);
  border: 1px solid rgba(7, 27, 74, 0.1);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(7, 27, 74, 0.08);
}

.sitemap-page h2 {
  margin-bottom: 0.5rem;
  color: var(--blue-900);
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 850;
}

.sitemap-page a {
  color: var(--blue-800);
  font-weight: 750;
  text-decoration-color: rgba(7, 27, 74, 0.24);
  text-underline-offset: 0.28em;
}

.error-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 18%, rgba(215, 181, 109, 0.2), transparent 28%),
    linear-gradient(135deg, #f7f3e8, #dcecff);
}

.error-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 2rem;
  padding: 4rem 0;
}

.error-card {
  max-width: 760px;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 74, 0.96), rgba(27, 75, 155, 0.94));
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(7, 27, 74, 0.18);
}

.error-card h1 {
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 850;
  letter-spacing: -0.06em;
}

.error-card p:not(.kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.secondary-button.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 850px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .nav-shell {
    min-height: 82px;
  }

  .desktop-nav {
    display: none;
  }

  .wordmark {
    font-size: 1.35rem;
  }

  .wordmark-seal {
    width: 48px;
    height: 48px;
  }

  .utility-button {
    font-size: 0;
  }

  .menu-grid,
  .editorial-grid,
  .office-actions,
  .footer-main,
  .footer-bottom,
  .issue-list article {
    grid-template-columns: 1fr;
  }

  .footer-primary {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
  }

  .footer .wordmark {
    white-space: normal;
  }

  .footer-policy {
    justify-content: flex-start;
  }

  .feature-rail,
  .profile-grid,
  .photo-story-grid,
  .about-deep-profile,
  .agenda-grid,
  .sitemap-page,
  .action-grid,
  .admin-row,
  .admin-modern,
  .pledge-home-card,
  .pledge-page,
  .pledge-type,
  .form-two,
  .press-home-grid,
  .issues-board article,
  .issues-detail,
  .initiative-grid,
  .moments-grid,
  .instagram-grid,
  .home-statement-grid,
  .lsa-update-grid,
  .lsa-welcome-grid,
  .press-showcase,
  .home-record-band,
  .about-hero-grid,
  .photo-feature,
  .timeline-grid,
  .record-stats,
  .record-two-col,
  .record-card-grid,
  .orders-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .hero img {
    transform: none;
    animation: none;
  }

  .home-hero {
    min-height: 620px;
  }

  .lsa-hero img {
    display: block;
  }

  .lsa-hero-card {
    width: min(100% - 32px, 560px);
    margin: 0 auto 3.4rem;
  }

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

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .press-side,
  .newsletter-grid,
  .newsletter-grid form div,
  .contact-presidential {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .administration-home,
  .instagram-home .wrap,
  .moments-home .wrap {
    width: min(100% - 32px, 1180px);
    border-radius: 22px;
  }

  .social-link,
  .search-toggle,
  .menu-toggle {
    min-width: 42px;
  }

  .pledge-sign-card {
    position: static;
  }

  .pledge-home-card,
  .press-home .wrap,
  .pledge-page,
  .issues-board,
  .issues-detail {
    width: min(100% - 32px, 1180px);
  }

  h1,
  .statement h2,
  .page-hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .archive-inner {
    align-items: flex-start;
    padding: 0.7rem 0;
  }

  .wordmark small {
    font-size: 0.55rem;
  }

  .wordmark {
    gap: 0.55rem;
    font-size: 1.08rem;
  }

  .wordmark-seal {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}
