:root {
  --navy-950: #04162f;
  --navy-900: #071f3f;
  --navy-800: #0c3157;
  --blue: #159bc2;
  --green: #568d3d;
  --green-light: #7cad4c;
  --gold: #ffb637;
  --cream: #f6f0e5;
  --cream-deep: #e8ddc8;
  --white: #fffdf8;
  --ink: #10253a;
  --muted: #687786;
  --shadow: 0 26px 70px rgba(4, 22, 47, 0.16);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(4, 22, 47, 0.91);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: #fff8e9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-name b {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible {
  color: white;
}

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

.nav-cta {
  padding: 13px 20px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 182, 55, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ffc95f;
  transform: translateY(-2px);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
}

.menu-button span {
  width: 21px;
  height: 2px;
  margin: 0 auto;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: white;
  background-color: var(--navy-900);
  background-image: url("assets/hero-coreto.webp");
  background-position: center center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 22, 47, 0.94) 0%, rgba(4, 22, 47, 0.76) 36%, rgba(4, 22, 47, 0.18) 70%),
    linear-gradient(0deg, rgba(4, 22, 47, 0.62) 0%, transparent 40%);
}

.hero::after {
  position: absolute;
  top: -170px;
  left: -160px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(255, 182, 55, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 182, 55, 0.035), 0 0 0 140px rgba(255, 182, 55, 0.025);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 150px;
  background: linear-gradient(transparent, rgba(4, 22, 47, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  height: 100%;
  min-height: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 110px 0 84px;
}

.hero-copy {
  width: min(620px, 64%);
}

.hero-logo-wrap {
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #fff8e9;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  display: block;
  background: var(--gold);
  border-radius: 999px;
}

.eyebrow.dark {
  color: var(--green);
}

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

h1,
h2 {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.6vw, 6.4rem);
  line-height: 0.93;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-copy > p {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.72;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 0 15px 34px rgba(255, 182, 55, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc65a;
  box-shadow: 0 18px 38px rgba(255, 182, 55, 0.3);
  transform: translateY(-3px);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.17);
  transform: translateY(-3px);
}

.hero-note {
  align-self: flex-end;
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  background: rgba(4, 22, 47, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-note small {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

.pin {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 182, 55, 0.12);
  border-radius: 12px;
}

.pin svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 23px;
  height: 36px;
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.scroll-cue span::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  animation: scroll-dot 1.7s infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 13px); }
}

.section {
  padding: 120px 0;
}

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

.experience {
  position: relative;
  background:
    radial-gradient(circle at 90% 10%, rgba(21, 155, 194, 0.09), transparent 28%),
    var(--cream);
}

.experience::before {
  position: absolute;
  top: 0;
  left: 6%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(12, 49, 87, 0.06);
}

.section-heading,
.places-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2,
.places-heading h2,
.journey h2 {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.section-heading h2 em {
  color: var(--green);
}

.section-heading > p,
.places-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 300px;
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(12, 49, 87, 0.1);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(86, 141, 61, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.feature-card.featured {
  color: white;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.feature-card > span {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(16, 37, 58, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-card.featured > span {
  color: rgba(255, 255, 255, 0.28);
}

.feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 56px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(86, 141, 61, 0.12);
  border-radius: 18px;
}

.feature-card.featured .feature-icon {
  color: var(--gold);
  background: rgba(255, 182, 55, 0.12);
}

.feature-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.feature-card h3 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.feature-card.featured h3 {
  color: white;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.feature-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.city-progress {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 28px;
  background: #fffaf0;
  border: 1px solid rgba(12, 49, 87, 0.09);
  border-radius: 18px;
}

.progress-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pulse {
  width: 12px;
  height: 12px;
  display: block;
  background: var(--green-light);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(124, 173, 76, 0.13);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 12px rgba(124, 173, 76, 0); }
}

.progress-copy small {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.progress-copy strong {
  color: var(--navy-900);
  font-size: 0.94rem;
}

.city-progress > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.places {
  position: relative;
  color: white;
  background: var(--navy-950);
}

.places::after {
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(255, 182, 55, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 182, 55, 0.02), 0 0 0 120px rgba(255, 182, 55, 0.015);
}

.places-heading {
  position: relative;
  z-index: 2;
}

.places-heading h2 {
  color: white;
}

.places-heading > p {
  color: rgba(255, 255, 255, 0.64);
}

.places-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.place-card {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.19);
}

.place-large {
  grid-row: 1 / 3;
}

.place-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.place-large img {
  object-position: center;
}

.place-card:hover img {
  transform: scale(1.055);
}

.place-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 22, 47, 0.92), rgba(4, 22, 47, 0.04) 70%);
}

.place-label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.place-label small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.place-label h3 {
  margin-bottom: 5px;
  color: white;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.place-label p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.place-number {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(4, 22, 47, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  font-size: 0.67rem;
  font-weight: 900;
}

.journey {
  min-height: 570px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy-900);
}

.journey-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 63, 0.96), rgba(7, 31, 63, 0.76)),
    url("assets/catedral.webp") center / cover;
  transform: scale(1.04);
}

.journey-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, transparent 0%, black 60%);
}

.journey-shell {
  width: var(--shell);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 46px;
}

.journey-logo {
  width: 150px;
  height: 150px;
  overflow: hidden;
  background: #fff8e9;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  transform: rotate(-3deg);
}

.journey-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey h2 {
  color: white;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

footer {
  color: rgba(255, 255, 255, 0.65);
  background: #031126;
}

.footer-shell {
  width: var(--shell);
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-brand {
  color: white;
}

.footer-shell > p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  font-size: 0.72rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .menu-button {
    display: grid;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 4px;
    padding: 15px;
    background: rgba(4, 22, 47, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav > a:not(.nav-cta) {
    padding: 14px 16px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    height: auto;
    background-position: 56% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(4, 22, 47, 0.93), rgba(4, 22, 47, 0.48)),
      linear-gradient(0deg, rgba(4, 22, 47, 0.68), transparent 55%);
  }

  .hero-content {
    min-height: 760px;
    align-items: center;
    padding: 120px 0 94px;
  }

  .hero-copy {
    width: min(650px, 100%);
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading,
  .places-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

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

  .feature-card {
    min-height: 250px;
  }

  .feature-icon {
    margin-bottom: 36px;
  }

  .city-progress {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .places-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .place-card,
  .place-large {
    min-height: 390px;
    grid-row: auto;
  }

  .journey-shell {
    grid-template-columns: 110px 1fr;
    gap: 30px;
  }

  .journey-logo {
    width: 110px;
    height: 110px;
    border-radius: 24px;
  }

  .journey-shell > .button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    padding: 34px 0;
  }

  .footer-shell > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 20px;
  }

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

  .brand-icon {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .main-nav {
    inset: 72px 14px auto;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero {
    background-position: 57% center;
  }

  .hero-logo-wrap {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 22px;
  }

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

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-copy > p {
    margin-bottom: 26px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .places-heading h2,
  .journey h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .feature-card {
    min-height: 240px;
    padding: 28px;
  }

  .place-card,
  .place-large {
    min-height: 330px;
  }

  .place-label {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .journey {
    min-height: 610px;
  }

  .journey-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .journey-logo {
    margin: 0 auto;
  }

  .journey .eyebrow {
    justify-content: center;
  }

  .journey-shell > .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-shell > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-meta {
    align-items: center;
  }
}

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

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

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