:root {
  --black: #050505;
  --ink: #151515;
  --muted: #686868;
  --line: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --soft-white: #f5f2ea;
  --yellow: #8B2FC9;
  --yellow-dark: #6318A8;
  --charcoal: #111111;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  min-height: 56px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.nav-toggle {
  position: relative;
  z-index: 120;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  gap: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  position: fixed;
  inset: 82px 16px auto;
  z-index: 110;
  display: grid;
  align-content: start;
  gap: 0;
  max-height: calc(100svh - 100px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(5, 5, 5, 0.98);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-links a {
  border-radius: 6px;
  padding: 14px 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
}

.nav-links a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.34)),
    url("assets/images/teaching.jpeg") 62% 38% / cover;
  color: var(--white);
}

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

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.4) 38%, rgba(5, 5, 5, 0.94)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.32) 58%, rgba(5, 5, 5, 0.72));
}

.hero-content {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 98px 0 32px;
}

.hero-copy {
  max-width: 820px;
}

.hero-logo {
  width: clamp(66px, 13vw, 86px);
  height: auto;
  margin-bottom: 18px;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.85rem, 16vw, 8rem);
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 8vw, 5.5rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 6vw, 3.1rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-mission {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 3.4vw, 1.72rem);
  font-weight: 750;
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
}

.button-primary:hover {
  background: #a338e8;
}

.button-secondary {
  border: 1px solid var(--white);
  color: var(--black);
  background: var(--white);
}

.button-secondary:hover {
  background: #e8e8e8;
  border-color: #e8e8e8;
}

.service-card {
  width: min(100%, 340px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(5, 5, 5, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.service-card span,
.visit-details span,
.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-card span {
  color: var(--yellow);
}

.service-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.intro-band {
  padding: 30px 0;
  background: var(--yellow);
  color: var(--black);
}

.intro-grid {
  display: grid;
  gap: 20px;
}

.intro-stat span,
.intro-stat strong {
  display: block;
  line-height: 0.95;
  text-transform: uppercase;
}

.intro-stat span {
  font-size: 0.78rem;
  font-weight: 900;
}

.intro-stat strong {
  font-size: clamp(3.2rem, 16vw, 8rem);
  font-weight: 950;
}

.intro-line {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 4.4vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}

.about-section {
  background: var(--soft-white);
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.about-photo {
  width: 100%;
  max-height: 480px;
  margin-top: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-section .section-body {
  padding-top: clamp(24px, 4vw, 48px);
}

.leadership-section {
  background: var(--black);
  color: var(--white);
}

.two-column,
.contact-layout,
.visit-layout {
  display: grid;
  gap: clamp(30px, 6vw, 72px);
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.visit-copy p,
.section-body p {
  color: #444;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.lead {
  color: var(--black) !important;
  font-size: clamp(1.35rem, 4vw, 2.25rem) !important;
  font-weight: 850;
  line-height: 1.15;
  margin-top: 0;
}

.section-heading > *:first-child,
.section-body > *:first-child {
  margin-top: 0;
}

.mission-section {
  background: var(--black);
  color: var(--white);
}

.mission-grid {
  display: grid;
  gap: 18px;
}

.mission-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: clamp(24px, 6vw, 46px);
}

.vision-card {
  background: var(--yellow);
  color: var(--black);
}

.vision-card .eyebrow {
  color: var(--black);
}

.mission-copy {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #111;
}

.mission-card h2 {
  font-size: clamp(2.2rem, 7vw, 4.6rem);
}

.mission-card p {
  font-size: clamp(1rem, 2.4vw, 1.18rem);
}

.mission-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.scripture {
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 2px solid rgba(5, 5, 5, 0.18);
}

.scripture blockquote {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 4vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
}

.scripture figcaption {
  font-weight: 900;
}

.leader-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.leader-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 40px);
  background: #111111;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
}

.leader-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 950;
}

.leader-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 24px;
  display: block;
  border: 3px solid var(--yellow);
}

.role {
  margin-bottom: 8px;
  color: var(--yellow-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.leader-card h3 {
  color: var(--white);
}

.leader-card--family {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.family-text {
  display: flex;
  flex-direction: column;
}

.family-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.family-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.family-children {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.family-children span {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.family-children span:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.leadership-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.visit-section {
  background: #ffffff;
}

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

.visit-copy .button {
  margin-top: 24px;
}

.visit-details {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.visit-details > div {
  border-left: 5px solid var(--yellow);
  padding: 10px 0 10px 16px;
}

.visit-details strong {
  display: block;
  line-height: 1.25;
}

.map-panel {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.gallery-section {
  background: var(--black);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #191919;
  cursor: zoom-in;
  padding: 0;
  line-height: 0;
  font-size: 0;
  aspect-ratio: 4 / 3;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.34));
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 480ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

/* ── Give Section ── */
.give-section {
  background: var(--black);
  color: var(--white);
}

.give-section .eyebrow {
  color: var(--yellow);
}

.give-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.6);
}

.give-scripture {
  margin: 28px auto 0;
  max-width: 600px;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--yellow);
  text-align: left;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.give-scripture cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.give-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.give-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.give-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.give-card-icon svg {
  width: 26px;
  height: 26px;
}

.yoco-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 1px;
}

.yoco-inline svg {
  height: 0.9em;
  width: auto;
}

.give-yoco-logo {
  margin-bottom: 28px;
}

.give-yoco-logo svg {
  width: 160px;
  height: 56px;
  display: block;
}

.give-payment-logo {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}

.give-payment-logo svg {
  width: 160px;
  height: 44px;
  overflow: visible;
}

.give-card-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 28px;
  flex: 1;
  font-size: clamp(1rem, 2.5vw, 1.05rem);
  line-height: 1.6;
}

.give-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--white);
}

.give-card > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  flex: 1;
}

.bank-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-row span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.bank-row strong {
  color: var(--white);
  font-weight: 600;
  text-align: right;
}

.give-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 180ms ease, transform 180ms ease;
  text-align: center;
}

.give-btn:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

@media (min-width: 860px) {
  .give-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* ── Contact Section ── */
.contact-section {
  background: var(--yellow);
  color: var(--black);
}

.contact-copy p {
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--black);
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-card {
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card > a {
  display: block;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-social-label {
  padding: 22px 22px 0;
}

.contact-social-label span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card > a:hover strong,
.social-row a:hover,
.footer-links a:hover {
  color: var(--yellow);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.52);
}

.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon:hover {
  background: rgba(139, 47, 201, 0.1);
  border-color: rgba(139, 47, 201, 0.62);
  color: var(--yellow);
  transform: translateY(-2px);
}

.site-footer {
  padding: 46px 0;
  background: var(--black);
  color: var(--white);
}

.footer-layout {
  display: grid;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-layout p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

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

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

@media (min-width: 640px) {
  .hero-actions .button {
    min-width: 168px;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(30px, 6vw, 72px);
    align-items: center;
  }

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

}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    z-index: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-links a {
    border: 0 !important;
    border-radius: var(--radius);
    padding: 10px 13px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1;
    transition:
      background 180ms ease,
      color 180ms ease;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    min-height: 94vh;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    padding-bottom: 0;
  }

  .hero-content .hero-copy {
    margin-bottom: 140px;
  }

  .service-card {
    justify-self: end;
    margin-bottom: 46px;
  }

  .two-column,
  .visit-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

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

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


  .footer-layout {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .button {
    width: 100%;
  }

  .brand span {
    display: none;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .gallery-item {
    min-height: 255px;
  }
}
