:root {
  --ink: #0a2732;
  --ink-soft: #42616c;
  --navy: #071f2a;
  --navy-2: #0b3342;
  --ocean: #14b8d4;
  --teal: #38d6b6;
  --aqua-soft: #dff8f7;
  --sky-soft: #eaf7fb;
  --paper: #f8fbfc;
  --white: #ffffff;
  --line: rgba(10, 39, 50, 0.12);
  --shadow: 0 22px 60px rgba(7, 31, 42, 0.13);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --page: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: #087d97;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.eyebrow.light {
  color: #a8f0ec;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6.8vw, 6.5rem);
  font-weight: 760;
}

h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  font-weight: 740;
}

h3 {
  font-size: 1.55rem;
}

p {
  color: var(--ink-soft);
}

.lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-bottom-color: rgba(255,255,255,0.09);
  background: rgba(5, 27, 37, 0.9);
  box-shadow: 0 8px 30px rgba(3, 17, 23, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 44px;
  flex: 0 0 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(20, 184, 212, 0.16));
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 760;
}

.brand-copy span {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.88;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 99px;
  background: var(--teal);
  transition: transform 220ms var(--ease);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
}

.lang-button {
  min-width: 38px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-button.is-active {
  color: var(--navy);
  background: var(--white);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--white);
  transition: transform 180ms ease;
}

.site-header.menu-open .menu-button span:first-child {
  transform: translateY(3.2px) rotate(45deg);
}

.site-header.menu-open .menu-button span:last-child {
  transform: translateY(-3.2px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: min(960px, 100svh);
  overflow: hidden;
  background: var(--navy);
}

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

.hero-media {
  height: 114%;
  top: -7%;
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 23, 31, 0.89) 0%, rgba(3, 23, 31, 0.67) 46%, rgba(3, 23, 31, 0.2) 75%, rgba(3, 23, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 23, 31, 0.7) 0%, rgba(3, 23, 31, 0.1) 38%, rgba(3, 23, 31, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 126px 0 172px;
}

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

.hero-subhead {
  margin-bottom: 34px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 560;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 760;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, #48e0c2, #2bc7e7);
  box-shadow: 0 15px 36px rgba(20, 184, 212, 0.24);
}

.button.ghost {
  border-color: rgba(255,255,255,0.34);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

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

.button.outline-white {
  border-color: rgba(255,255,255,0.33);
  color: var(--white);
  background: transparent;
}

.hero-service-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.18);
  background: rgba(4, 27, 36, 0.62);
  backdrop-filter: blur(16px);
}

.service-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.service-bar-grid > div {
  display: grid;
  min-height: 104px;
  padding: 24px 30px;
  align-content: center;
  gap: 6px;
  border-left: 1px solid rgba(255,255,255,0.16);
}

.service-bar-grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.service-bar-grid > div:last-child {
  padding-right: 0;
}

.service-label {
  color: #95dedc;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-bar-grid strong {
  color: var(--white);
  font-size: 1rem;
}

.intro-section {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.section-copy p:last-of-type {
  margin-bottom: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #087d97;
  font-weight: 760;
}

.text-link svg {
  width: 20px;
  transition: transform 180ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.visit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.visit-card {
  min-height: 310px;
  padding: 34px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.visit-card p {
  margin-bottom: 0;
}

.visit-card h3 {
  margin: 28px 0 10px;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
}

.dark-card {
  color: var(--white);
  background: linear-gradient(145deg, #0b3444, #061d28);
}

.ocean-card {
  color: var(--navy);
  background: linear-gradient(145deg, #54e4c5, #30c8e7);
}

.dark-card p {
  color: rgba(255,255,255,0.72);
}

.ocean-card p {
  color: rgba(7,31,42,0.72);
}

.card-kicker {
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
}

.card-icon svg {
  width: 24px;
}

.mission-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 214, 182, 0.12), transparent 34%),
    var(--paper);
}

.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.mission-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mission-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 16px 40px rgba(7,31,42,0.04);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 212, 0.3);
  box-shadow: var(--shadow);
}

.mission-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #087d97;
  background: var(--sky-soft);
  font-size: 0.78rem;
  font-weight: 820;
}

.mission-card h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.mission-card p {
  margin-bottom: 0;
}

.gatherings-section {
  background: var(--white);
}

.gatherings-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.gatherings-visual {
  position: relative;
}

.gatherings-visual picture,
.gatherings-visual img {
  height: 660px;
}

.gatherings-visual img {
  object-fit: cover;
  object-position: center 58%;
  border-radius: var(--radius-lg);
}

.visual-badge {
  position: absolute;
  right: -26px;
  bottom: 38px;
  display: grid;
  min-width: 180px;
  padding: 18px 22px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(7,31,42,0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-badge span {
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.14em;
}

.visual-badge strong {
  margin-top: 3px;
  font-size: 1rem;
}

.schedule-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.schedule-row {
  display: grid;
  min-height: 94px;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.schedule-day {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #087d97;
  background: var(--sky-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.schedule-row h3,
.schedule-row p {
  margin-bottom: 0;
}

.schedule-row h3 {
  margin-bottom: 3px;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.schedule-row p {
  font-size: 0.91rem;
}

.schedule-row time {
  color: var(--ink);
  font-weight: 820;
}

.scripture-band {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--navy);
}

.scripture-media {
  height: 122%;
  top: -11%;
  will-change: transform;
}

.scripture-media img {
  object-fit: cover;
  object-position: center 58%;
}

.scripture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,30,40,0.88), rgba(6,30,40,0.44) 58%, rgba(6,30,40,0.54));
}

.scripture-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 580px;
  max-width: 920px;
  flex-direction: column;
  justify-content: center;
}

.scripture-quote {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.scripture-ref {
  color: #9be7e4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-section {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 82px;
  align-items: center;
}

.story-copy p:last-child {
  max-width: 620px;
  margin-bottom: 0;
}

.story-photo-stack {
  position: relative;
  min-height: 670px;
}

.story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.story-photo img {
  height: 100%;
  object-fit: cover;
}

.story-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: 610px;
}

.story-photo-main img {
  object-position: center 44%;
}

.story-photo-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 350px;
  border: 8px solid var(--paper);
}

.story-photo-small img {
  object-position: center 45%;
}

.contact-section {
  padding-top: 48px;
  background: var(--paper);
}

.contact-card {
  display: grid;
  padding: 64px;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(56,214,182,0.2), transparent 40%),
    linear-gradient(135deg, #0b3444, #061d28);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
}

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

.contact-details {
  display: grid;
  gap: 28px;
}

.contact-details > div:not(.contact-actions) {
  display: grid;
  gap: 4px;
}

.contact-details span {
  color: #94dfdc;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
  color: var(--white);
  font-size: 1.05rem;
}

.contact-details a:hover {
  color: #b5f2ef;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.site-footer {
  padding: 94px 0 26px;
  background: #041820;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 58px;
}

.footer-brand-lockup {
  margin-bottom: 20px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,0.58);
}

.footer-links,
.footer-service-times {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a,
.footer-service-times strong {
  color: rgba(255,255,255,0.78);
  font-size: 0.93rem;
}

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

.footer-service-times span {
  margin-bottom: 4px;
  color: #8fdad7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  margin-top: 70px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

:focus-visible {
  outline: 3px solid #7ce8dc;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 36px, 880px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-panel {
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: rgba(5,27,37,0.97);
    transition: max-height 280ms var(--ease);
  }

  .site-header.menu-open .mobile-panel {
    max-height: 360px;
  }

  .mobile-panel nav {
    display: grid;
    width: var(--page);
    margin-inline: auto;
    padding: 10px 0 28px;
  }

  .mobile-panel a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.11);
    color: var(--white);
    font-weight: 700;
  }

  .hero {
    min-height: 760px;
    height: 92svh;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3,23,31,0.86) 0%, rgba(3,23,31,0.56) 72%, rgba(3,23,31,0.34) 100%),
      linear-gradient(0deg, rgba(3,23,31,0.78) 0%, rgba(3,23,31,0.15) 46%, rgba(3,23,31,0.18) 100%);
  }

  .service-bar-grid > div {
    padding-inline: 18px;
  }

  .two-column,
  .gatherings-layout,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .intro-grid .section-copy {
    max-width: 760px;
  }

  .gatherings-layout {
    gap: 64px;
  }

  .gatherings-visual {
    max-width: 720px;
  }

  .gatherings-visual picture,
  .gatherings-visual img {
    height: 580px;
  }

  .visual-badge {
    right: 24px;
  }

  .story-copy {
    max-width: 760px;
  }

  .story-photo-stack {
    max-width: 760px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 28px);
    --radius-lg: 28px;
    --radius-md: 22px;
  }

  .section {
    padding: 82px 0;
  }

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

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.8rem;
  }

  .brand-mark {
    width: 38px;
    height: 40px;
    flex-basis: 38px;
  }

  .language-switcher {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .hero {
    min-height: 810px;
    height: 96svh;
  }

  .hero-media img {
    object-position: 60% 50%;
  }

  .hero-content {
    align-items: flex-end;
    padding: 118px 0 206px;
  }

  h1 {
    font-size: clamp(3.05rem, 13vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .hero-subhead {
    margin-bottom: 28px;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-service-bar {
    background: rgba(4,27,36,0.84);
  }

  .service-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-bar-grid > div {
    min-height: 94px;
    padding: 18px 12px;
    border-left: 1px solid rgba(255,255,255,0.12);
  }

  .service-bar-grid > div:first-child {
    padding-left: 0;
  }

  .service-bar-grid > .service-address {
    display: none;
  }

  .service-bar-grid strong {
    font-size: 0.88rem;
  }

  .visit-cards {
    grid-template-columns: 1fr;
  }

  .visit-card {
    min-height: 240px;
  }

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

  .mission-card {
    min-height: auto;
  }

  .mission-number {
    margin-bottom: 34px;
  }

  .gatherings-visual picture,
  .gatherings-visual img {
    height: 500px;
  }

  .visual-badge {
    right: 14px;
    bottom: 14px;
  }

  .schedule-row {
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
  }

  .schedule-day {
    width: 42px;
    height: 42px;
  }

  .schedule-row h3 {
    font-size: 1rem;
  }

  .schedule-row p {
    font-size: 0.82rem;
  }

  .schedule-row time {
    font-size: 0.88rem;
  }

  .scripture-band,
  .scripture-content {
    min-height: 500px;
  }

  .scripture-media img {
    object-position: 58% 54%;
  }

  .scripture-quote {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .story-photo-stack {
    min-height: 540px;
  }

  .story-photo-main {
    width: 80%;
    height: 480px;
  }

  .story-photo-small {
    width: 50%;
    height: 260px;
    border-width: 6px;
  }

  .contact-section {
    padding-top: 30px;
  }

  .contact-card {
    padding: 42px 24px;
  }

  .contact-actions {
    display: grid;
  }

  .site-footer {
    padding-top: 72px;
  }

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

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

  .footer-bottom {
    display: grid;
    gap: 6px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
