/*
Theme Name: Bradford at Night
Theme URI: https://bradfordatnight.org
Author: Urban Spark
Description: Custom WordPress theme for Bradford at Night.
Version: 1.2.3
Requires at least: 6.7
Requires PHP: 8.3
Text Domain: bradford-at-night
*/

:root {
  --navy: #111938;
  --navy-soft: #1b2448;
  --gold: #f4c542;
  --gold-dark: #dbad27;
  --ivory: #f8f5ec;
  --white: #ffffff;
  --ink: #151827;
  --muted: #656978;
  --line: rgba(17, 25, 56, 0.15);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
summary {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 36px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.single .site-header,
.page:not(.home) .site-header,
.blog .site-header,
.archive .site-header,
.error404 .site-header {
  background: var(--navy);
}

.logo-link {
  justify-self: start;
}

.site-logo {
  display: block;
  width: clamp(148px, 12vw, 190px);
  height: auto;
}

.footer-logo {
  display: block;
  width: min(270px, 100%);
  height: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 20px);
  grid-template-rows: repeat(2, 20px);
  gap: 3px;
}

.brand-grid i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: currentColor;
  color: var(--navy);
  font-size: 13px;
  line-height: 1;
  font-style: normal;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-name b {
  font-size: 18px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 2px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

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

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("assets/images/og.png") center center / cover no-repeat;
  transform: scale(1.015);
  animation: hero-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  background: linear-gradient(
    0deg,
    rgba(8, 13, 34, 0.9) 0%,
    rgba(8, 13, 34, 0.38) 20%,
    transparent 48%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 190px clamp(24px, 8vw, 128px) 56px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin: 0 12px 3px 0;
  background: var(--gold-dark);
}

.eyebrow.light {
  color: var(--white);
}

.hero-intro {
  max-width: 580px;
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
  text-shadow: 0 2px 20px rgba(8, 13, 34, 0.8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-width: 230px;
  padding: 19px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

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

.button.gold:hover,
.button.gold:focus-visible {
  background: #ffd75c;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
}

.light-link {
  color: var(--white);
}

.hero-note {
  display: none;
}

.hero-note span {
  color: var(--gold);
  font-weight: 800;
}

.hero-note strong {
  font-size: 12px;
}

.section {
  padding: 120px clamp(24px, 8vw, 128px);
}

.intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 10vw, 180px);
}

.intro h2,
.section-heading h2,
.news-top h2,
.membership h2 {
  max-width: 740px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.intro-copy {
  padding-top: 36px;
}

.intro-copy p,
.section-heading > p:last-child,
.membership-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.48;
  font-weight: 540;
}

.intro-copy .text-link {
  margin-top: 26px;
}

.pillars {
  padding-top: 36px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.7fr;
  gap: 42px;
  align-items: end;
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
  align-self: start;
}

.section-heading > p:last-child {
  margin: 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  min-height: 330px;
  padding: 32px 28px 36px 0;
  border-right: 1px solid var(--line);
}

.pillar + .pillar {
  padding-left: 28px;
}

.pillar:last-child {
  border-right: 0;
}

.pillar > span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pillar h3 {
  margin: 100px 0 18px;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -0.035em;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.director {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) 1.18fr;
  min-height: 700px;
  background: var(--navy);
  color: var(--white);
}

.director-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.director-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 25, 56, 0.55), transparent 58%);
}

.director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.75) contrast(1.04);
}

.director blockquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 90px clamp(48px, 8vw, 130px);
}

.director q {
  display: block;
  max-width: 790px;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.director q::before,
.director q::after {
  color: var(--gold);
}

.director footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 50px;
  font-size: 14px;
}

.director footer span {
  color: rgba(255, 255, 255, 0.62);
}

.news {
  background: #fff;
}

.news-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.news-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.news-image {
  grid-column: 1 / -1;
  display: block;
  height: 360px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--navy);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-image img,
.news-card:focus-visible .news-image img {
  transform: scale(1.035);
}

.news-meta {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3 {
  max-width: 580px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.news-arrow {
  align-self: end;
  font-size: 22px;
}

.membership {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 160px);
  background: var(--navy-soft);
  color: var(--white);
}

.membership h2 {
  color: var(--white);
}

.membership-heading > p {
  max-width: 580px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.65);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-list > article > span {
  padding-top: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.benefit-list h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.benefit-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  padding: 80px clamp(24px, 8vw, 128px) 28px;
  background: #0b1128;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.65fr;
  gap: 80px;
}

.footer-main > div:first-child > p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.footer .eyebrow {
  margin-bottom: 22px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 18px;
}

.footer address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.admin-bar .site-header {
  top: 32px;
}

.content-shell {
  min-height: 70vh;
  padding: 190px clamp(24px, 8vw, 128px) 120px;
  background: var(--ivory);
}

.content-header {
  max-width: 980px;
  margin-bottom: 64px;
}

.content-header h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.post-list,
.article-content {
  max-width: 980px;
}

.post-summary {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.post-summary h2 {
  max-width: 780px;
  margin: 8px 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.post-summary p,
.entry-content {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.post-date {
  color: var(--gold-dark) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-image {
  margin-bottom: 48px;
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.entry-content {
  max-width: 760px;
}

.entry-content h2,
.entry-content h3 {
  color: var(--navy);
}

.entry-content a {
  text-decoration: underline;
  text-decoration-color: var(--gold-dark);
  text-underline-offset: 3px;
}

/* Editable Gutenberg homepage */
.home .wp-site-blocks,
.home main > .wp-block-group,
.home main > .wp-block-cover {
  margin-block-start: 0;
}

.home-hero {
  min-height: min(900px, 100vh);
  color: var(--white);
}

.home-hero .wp-block-cover__background {
  background: linear-gradient(
    0deg,
    rgba(8, 13, 34, 0.92) 0%,
    rgba(8, 13, 34, 0.38) 25%,
    rgba(8, 13, 34, 0.04) 58%
  ) !important;
  opacity: 1 !important;
}

.home-hero .wp-block-cover__inner-container {
  width: 100%;
  align-self: flex-end;
}

.home-hero-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 190px clamp(24px, 8vw, 128px) 56px;
}

.home-hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
  text-shadow: 0 2px 20px rgba(8, 13, 34, 0.8);
}

.home-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.home-actions .wp-block-button__link,
.membership-block .wp-block-button__link {
  min-width: 230px;
  padding: 19px 22px;
  border-radius: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-actions .is-style-outline .wp-block-button__link {
  min-width: auto;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--white);
}

.home-section {
  padding: 120px clamp(24px, 8vw, 128px);
}

.intro-block > .wp-block-columns {
  gap: clamp(60px, 10vw, 180px);
}

.home-section h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-kicker {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin: 0 12px 3px 0;
  background: var(--gold-dark);
}

.intro-block .home-lead {
  margin-top: 36px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.48;
  font-weight: 540;
}

.intro-block .wp-block-column:last-child > p:not(.home-lead),
.work-heading > p:last-child,
.membership-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.home-text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
}

.work-block {
  padding-top: 36px;
}

.work-heading {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.7fr;
  gap: 42px;
  align-items: end;
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line);
}

.work-heading h2,
.work-heading p {
  margin-bottom: 0;
}

.pillar-columns {
  gap: 0;
}

.pillar-block {
  min-height: 330px;
  padding: 32px 28px 36px 0;
  border-right: 1px solid var(--line);
}

.pillar-block + .pillar-block {
  padding-left: 28px;
}

.pillar-block:last-child {
  border-right: 0;
}

.pillar-number {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pillar-block h3 {
  margin: 100px 0 18px;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -0.035em;
}

.pillar-block p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.director-block {
  gap: 0;
  min-height: 700px;
  margin-bottom: 0;
  background: var(--navy);
  color: var(--white);
}

.director-block > .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-block .wp-block-image {
  height: 100%;
  min-height: 700px;
  margin: 0;
}

.director-block .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.director-quote {
  padding: 90px clamp(48px, 8vw, 130px);
}

.director-quote .home-kicker {
  color: var(--white);
}

.director-quote blockquote {
  margin: 0;
}

.director-quote blockquote > p {
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.director-quote cite {
  display: block;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-style: normal;
}

.news-block {
  background: var(--white);
}

.news-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.news-heading h2 {
  margin-bottom: 0;
}

.home-news-query .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-news-query .wp-block-post {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.home-news-query .wp-block-post-featured-image {
  height: 360px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--navy);
}

.home-news-query .wp-block-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-query .wp-block-post-date {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-news-query .wp-block-post-title {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.membership-block {
  background: var(--navy-soft);
  color: var(--white);
}

.membership-block > .wp-block-columns {
  gap: clamp(70px, 10vw, 160px);
}

.membership-block h2 {
  color: var(--white);
}

.membership-copy > p {
  color: rgba(255, 255, 255, 0.65);
}

.benefit-block {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-block > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  width: 100%;
}

.benefit-block > .wp-block-group__inner-container > .wp-block-group {
  width: 100%;
  min-width: 0;
  max-width: none !important;
  margin: 0 !important;
}

.benefit-block > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container,
.benefit-block > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > * {
  width: 100%;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.benefit-block:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-block .pillar-number {
  color: var(--gold);
}

.benefit-block h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.benefit-block p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 0;
    border-bottom: 2px solid var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    width: min(280px, 82vw);
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--ivory);
    color: var(--navy);
    box-shadow: 0 18px 50px rgba(8, 13, 34, 0.25);
  }

  .mobile-menu nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
  }

  .section-heading {
    grid-template-columns: 1fr 1.5fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar:nth-child(2) {
    border-right: 0;
  }

  .pillar:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .director {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .work-heading {
    grid-template-columns: 1fr 1.5fr;
  }

  .work-heading > p:last-child {
    grid-column: 2;
  }

  .pillar-columns {
    flex-wrap: wrap !important;
  }

  .pillar-block {
    flex-basis: 50% !important;
  }
}

@media (max-width: 760px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    height: 82px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    background-position: center;
  }

  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(8, 13, 34, 0.94) 0%,
      rgba(8, 13, 34, 0.5) 32%,
      transparent 58%
    );
  }

  .hero-copy {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding: 420px 24px 40px;
  }

  .hero-intro {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .section {
    padding: 84px 24px;
  }

  .intro,
  .section-heading,
  .membership {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

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

  .pillar,
  .pillar + .pillar {
    min-height: auto;
    padding: 28px 0 34px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .pillar h3 {
    margin: 42px 0 14px;
  }

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

  .director-image {
    min-height: 480px;
  }

  .director blockquote {
    padding: 70px 24px 80px;
  }

  .news-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .news-image {
    height: 260px;
  }

  .membership {
    gap: 60px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero {
    min-height: 720px !important;
  }

  .home-hero-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding: 420px 24px 40px;
  }

  .home-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-section {
    padding: 84px 24px;
  }

  .intro-block > .wp-block-columns,
  .work-heading,
  .membership-block > .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-heading > p:last-child {
    grid-column: auto;
  }

  .pillar-block,
  .pillar-block + .pillar-block {
    flex-basis: 100% !important;
    min-height: auto;
    padding: 28px 0 34px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .pillar-block h3 {
    margin-top: 42px;
  }

  .director-block {
    flex-direction: column;
  }

  .director-block .wp-block-image {
    min-height: 480px;
  }

  .director-quote {
    padding: 70px 24px 80px;
  }

  .news-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-news-query .wp-block-post-template {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
