/* ==========================================================================
   Maverick Expeditions
   Hand-written stylesheet — no framework, no build step.

   Contents
     1.  Fonts
     2.  Tokens
     3.  Reset & base
     4.  Layout helpers
     5.  Buttons
     6.  Header & navigation
     7.  Hero
     8.  Services
     9.  Destinations
     10. Circular gallery / about
     11. Highlights carousel
     12. FAQ
     13. Marquee
     14. Mission
     15. Testimonials
     16. Journal
     17. Footer
     18. Preloader
     19. Reveal animations
     20. Hover effects
     21. Utilities & motion
     22. Responsive
   ========================================================================== */

/* 1. Fonts ---------------------------------------------------------------- */

@font-face {
  font-family: "Erode";
  src: url("../fonts/Erode-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Erode";
  src: url("../fonts/Erode-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Erode";
  src: url("../fonts/Erode-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Erode";
  src: url("../fonts/Erode-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

/* 2. Tokens --------------------------------------------------------------- */

:root {
  /* palette */
  --ink: #090909;
  --ink-soft: #131313;
  --lime: #ddff6d;
  --paper: #ffffff;
  --paper-mute: #eaeaea;
  --grey: #bababa;

  --on-dark: #ffffff;
  --on-dark-mute: rgba(255, 255, 255, 0.7);
  --on-dark-faint: rgba(255, 255, 255, 0.3);
  --on-light: #090909;
  --on-light-mute: rgba(9, 9, 9, 0.7);

  /* type */
  --font-display: "Erode", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step-hero: clamp(2.75rem, 6.9vw, 6.25rem);   /* 44 → 100px */
  --step-section: clamp(2.25rem, 5.5vw, 5rem);   /* 36 → 80px  */
  --step-card: clamp(1.375rem, 2.1vw, 1.875rem); /* 22 → 30px  */
  --step-lead: clamp(1rem, 1.25vw, 1.125rem);    /* 16 → 18px  */

  /* structure */
  --container: 1345px;
  --gutter: 15px;
  --radius: 20px;
  --radius-sm: 12px;
  --section-y: clamp(70px, 9vw, 135px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 88px;
}

/* 3. Reset & base --------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  /* Deliberately NOT `scroll-behavior: smooth`. The momentum scroller in
     main.js drives window.scrollTo every frame; a CSS smooth behaviour would
     animate each of those tiny steps as well and the page would crawl.
     Anchor links pass behavior:"smooth" explicitly instead. */
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--on-light-mute);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--on-light);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* 4. Layout helpers ------------------------------------------------------- */

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section--dark {
  background: var(--ink);
  color: var(--on-dark-mute);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5 {
  color: var(--on-dark);
}

.section--darker {
  background: var(--ink-soft);
  color: var(--on-dark-mute);
}

.section--darker h2,
.section--darker h3 {
  color: var(--on-dark);
}

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

.section-head {
  display: grid;
  gap: 24px 60px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 70px);
}

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
  }
}

.section-title {
  font-size: var(--step-section);
  text-transform: capitalize;
  text-wrap: balance;
}

.section-lead {
  max-width: 46ch;
  font-size: var(--step-lead);
  line-height: 1.625;
}

.section--dark .section-lead,
.section--darker .section-lead {
  color: var(--on-dark-mute);
}

/* 5. Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.btn--light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--lime);
  border-color: var(--lime);
}

.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-dark);
}

.btn--dark:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.btn--ghost {
  border-color: currentColor;
}

.btn--ghost:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.btn__pip {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: -18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
}

.btn--light .btn__pip,
.btn:hover .btn__pip {
  background: var(--ink);
  color: var(--lime);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--on-light);
}

.link-arrow svg {
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover svg {
  transform: translate(4px, -4px);
}

/* 6. Header & navigation -------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  color: var(--on-dark);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
}

.header__nav--end {
  justify-content: flex-end;
}

.header__logo img {
  width: 171px;
  height: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-size: 1rem;
  color: var(--on-dark-mute);
  transition: color 0.25s var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--on-dark);
}

.nav-link svg {
  opacity: 0.7;
}

.header__menu-toggle,
.header__globe {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--on-dark-faint);
  border-radius: 50%;
  color: var(--on-dark);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.header__menu-toggle:hover,
.header__globe:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 34px);
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(360px, 88vw);
  padding: 28px 26px;
  background: var(--ink-soft);
  color: var(--on-dark);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}

.drawer[data-open="true"] {
  transform: none;
}

.drawer__close {
  display: block;
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
}

.drawer__list {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.drawer__list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
}

.drawer__list a:hover {
  color: var(--lime);
}

.drawer__meta {
  margin-top: 30px;
  display: grid;
  gap: 8px;
  color: var(--on-dark-mute);
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.backdrop[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

/* 7. Hero ----------------------------------------------------------------- */

/* The hero is a pinned, scroll-scrubbed sequence in three scenes, matching the
   reference build:

     scene 1  centre card rises from below the fold
     scene 2  the eyebrow swaps for the headline and the six side cards fan out
     scene 3  everything settles into a bottom row and the CTA appears

   `.hero` supplies the scroll distance; `.hero__pin` sticks for its duration
   and JS writes transforms from a single scroll-progress value. */

.hero {
  position: relative;
  height: calc(100vh + var(--hero-scroll, 4000px));
  background: var(--ink);
  color: var(--on-dark);
}

.hero__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  width: 100%;
  padding-inline: var(--gutter);
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero__title-1,
.hero__title-2 h1 {
  /* .hero__title-1 is a <p>: it is decorative and scrolls away, so the only
     real page heading is the one inside .hero__title-2 */
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  text-transform: capitalize;
}

.hero__title-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding-inline: var(--gutter);
  transform: translate(-50%, -50%);
}

.hero__title-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding-inline: var(--gutter);
  opacity: 0;
  visibility: hidden;
}

.hero__title-2 em {
  font-style: normal;
  color: var(--lime);
}

.hero__cta {
  max-width: 900px;
  margin: 2rem auto 0;
  opacity: 0;
  color: var(--on-dark-mute);
  font-size: var(--step-lead);
  line-height: 1.556;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 1.75rem;
}

.hero__gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.img-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 484px;
  height: 570px;
  margin-top: -285px;
  margin-left: -242px;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  will-change: transform;
}

.img-card img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.img-caption {
  position: absolute;
  left: 50%;
  bottom: -46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  white-space: nowrap;
  color: var(--on-dark);
  font-size: 1.4375rem;
  opacity: 0;
}

/* Cards are stacked dead centre until the timeline moves them. */
.hero__gallery .img-card {
  transform: translate3d(0, 100%, 0);
  opacity: 0;
}

.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 21;
  display: grid;
  gap: 8px;
  justify-items: center;
  transform: translateX(-50%);
  color: var(--on-dark-mute);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.4s var(--ease);
}

.hero__scroll-hint svg {
  animation: hint-bob 1.8s var(--ease) infinite;
}

@keyframes hint-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}


/* 8. Services ------------------------------------------------------------- */

.services__head {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}

.services__head .section-lead {
  max-width: none;
  margin-top: 22px;
}

.card-grid {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(40px, 5vw, 70px);
}

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 35px;
  border: 1px solid var(--on-dark-faint);
  border-radius: var(--radius);
  background: var(--ink);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.service-card:hover {
  border-color: var(--lime);
  transform: translateY(-6px);
}

.service-card__icon {
  color: var(--lime);
}

.service-card__title {
  margin: 35px 0 30px;
  font-size: var(--step-card);
  line-height: 1.33;
  text-transform: capitalize;
}

.service-card__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 716 / 346;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__text {
  margin-top: 30px;
  font-size: 1.125rem;
  line-height: 1.62;
  color: var(--on-dark-mute);
}

/* 9. Destinations --------------------------------------------------------- */

.destinations {
  display: grid;
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
}

@media (min-width: 1024px) {
  .destinations {
    grid-template-columns: minmax(0, 27rem) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 90px);
  }
}

.dest-list {
  margin: 36px 0 40px;
  border-top: 1px solid rgba(9, 9, 9, 0.12);
}

.section--dark .dest-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.dest-list li {
  border-bottom: 1px solid rgba(9, 9, 9, 0.12);
}

.section--dark .dest-list li {
  border-color: rgba(255, 255, 255, 0.14);
}

.dest-list a {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 80px;
  color: var(--grey);
  transition: color 0.3s var(--ease);
}

.dest-list a:hover {
  color: var(--on-light);
}

.section--dark .dest-list a:hover {
  color: var(--lime);
}

.dest-list__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 700;
  text-transform: capitalize;
  transition: transform 0.3s var(--ease);
}

.dest-list a:hover .dest-list__name {
  transform: translateX(8px);
}

.dest-list__count,
.dest-list__index {
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  opacity: 0.75;
}

/* auto-scrolling tour columns */
.tour-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  height: clamp(520px, 60vw, 760px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

@media (min-width: 620px) {
  .tour-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tour-columns__track {
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
  align-content: start;
  animation: ticker-up 34s linear infinite;
}

.tour-columns__track--down {
  animation-direction: reverse;
}

.tour-columns:hover .tour-columns__track {
  animation-play-state: paused;
}

@keyframes ticker-up {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-columns__track {
    animation: none;
  }
}

.tour-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 313 / 439;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.tour-card:hover img {
  transform: scale(1.07);
}

.tour-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 22px;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 9, 0) 0%,
    rgba(9, 9, 9, 0.85) 55%
  );
  color: var(--on-dark);
}

/* two classes so this beats the generic `.section--dark h3` colour rule */
.tour-card .tour-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--lime);
  text-transform: capitalize;
}

.tour-card__text {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--on-dark-mute);
}

/* 10. Circular gallery / about -------------------------------------------- */

.about {
  display: grid;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}

@media (min-width: 1024px) {
  .about {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

/* A wheel of photo cards whose hub sits off-screen to the left, so only the
   right-hand arc is visible. Each card is pinned at the same spot and rotated
   around that far-off origin, 30° apart. */
.wheel {
  position: relative;
  min-height: 852px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wheel__container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wheel__card {
  position: absolute;
  left: 250px;
  top: -140px;
  width: 326px;
  height: 269px;
  border-radius: var(--radius);
  overflow: hidden;
  transform-origin: -350px center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.45));
  opacity: 0;
  transform: rotate(-75deg) scale(0) translateX(-100px);
}

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

/* JS adds .is-fanned once the wheel scrolls into view */
.wheel.is-fanned .wheel__card {
  animation: fan-out 1.2s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fan-out {
  0% {
    opacity: 0;
    transform: rotate(-75deg) scale(0) translateX(-100px);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(var(--card-rotation)) scale(1) translateX(0);
  }
}

.wheel__card:nth-child(1)  { --card-rotation: -66deg; --delay: 0.10s; z-index: 22; }
.wheel__card:nth-child(2)  { --card-rotation: -36deg; --delay: 0.25s; z-index: 21; }
.wheel__card:nth-child(3)  { --card-rotation:  -6deg; --delay: 0.40s; z-index: 20; }
.wheel__card:nth-child(4)  { --card-rotation:  24deg; --delay: 0.55s; z-index: 19; }
.wheel__card:nth-child(5)  { --card-rotation:  54deg; --delay: 0.70s; z-index: 18; }
.wheel__card:nth-child(6)  { --card-rotation:  84deg; --delay: 0.85s; z-index: 17; }
.wheel__card:nth-child(7)  { --card-rotation: 114deg; --delay: 1.00s; z-index: 16; }
.wheel__card:nth-child(8)  { --card-rotation: 144deg; --delay: 1.15s; z-index: 15; }
.wheel__card:nth-child(9)  { --card-rotation: 174deg; --delay: 1.30s; z-index: 14; }
.wheel__card:nth-child(10) { --card-rotation: 204deg; --delay: 1.45s; z-index: 13; }
.wheel__card:nth-child(11) { --card-rotation: 234deg; --delay: 1.60s; z-index: 12; }
.wheel__card:nth-child(12) { --card-rotation: 264deg; --delay: 1.75s; z-index: 11; }

@media (max-width: 1200px) {
  .wheel {
    min-height: 640px;
  }
  .wheel__container {
    transform: translateY(-50%) scale(0.78);
    transform-origin: left center;
  }
}

@media (max-width: 767px) {
  .wheel {
    min-height: 440px;
  }
  .wheel__container {
    transform: translateY(-50%) scale(0.55);
  }
}

.about__body .section-lead {
  margin-top: 24px;
  max-width: 48ch;
}

.about__body .btn {
  margin-top: 34px;
}


/* 11. Highlights carousel ------------------------------------------------- */

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: clamp(18px, 2vw, 30px);
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 auto;
  width: calc((100% - clamp(18px, 2vw, 30px) * 2) / 3);
}

@media (max-width: 1023px) {
  .carousel__slide {
    width: calc((100% - clamp(18px, 2vw, 30px)) / 2);
  }
}

@media (max-width: 680px) {
  .carousel__slide {
    width: 100%;
  }
}

.carousel__nav {
  display: flex;
  gap: 12px;
}

.carousel__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.carousel__btn[disabled] {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.highlight-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 813 / 800;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.highlight-card:hover img {
  transform: scale(1.06);
}

/* two classes so this beats the generic `.section--dark h3` colour rule */
.highlight-card .highlight-card__label {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 82%;
  padding: 22px 28px;
  border-top-right-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  transition: opacity 0.35s var(--ease);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: capitalize;
}

.highlight-card__reveal {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0), rgba(9, 9, 9, 0.92));
  color: var(--on-dark);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.highlight-card:hover .highlight-card__reveal,
.highlight-card:focus-within .highlight-card__reveal {
  transform: none;
  opacity: 1;
}

.highlight-card:hover .highlight-card__label,
.highlight-card:focus-within .highlight-card__label {
  opacity: 0;
}

.highlight-card__reveal h3 {
  color: var(--on-dark);
  font-size: 1.5rem;
  text-transform: capitalize;
}

.highlight-card__reveal p {
  margin: 12px 0 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--on-dark-mute);
}

.highlight-card__reveal .link-arrow {
  color: var(--lime);
}

/* 12. FAQ ----------------------------------------------------------------- */

.faq {
  display: grid;
  gap: clamp(36px, 4vw, 70px);
  align-items: center;
}

@media (min-width: 960px) {
  .faq {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.faq__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1620 / 1262;
  object-fit: cover;
}

.faq__list {
  margin-top: 34px;
  border-top: 1px solid rgba(9, 9, 9, 0.12);
}

.accordion__item {
  border-bottom: 1px solid rgba(9, 9, 9, 0.12);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--on-light);
  text-align: left;
  transition: background-color 0.3s var(--ease);
}

.accordion__item[data-open="true"] .accordion__trigger {
  background: var(--lime);
}

.accordion__sign {
  flex: 0 0 auto;
  font-size: 1.375rem;
  line-height: 1;
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.accordion__item[data-open="true"] .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__panel > div {
  overflow: hidden;
}

.accordion__panel p {
  margin: 0;
  padding: 14px 24px 26px;
  font-size: 1rem;
  line-height: 1.7;
}

/* 13. Marquee ------------------------------------------------------------- */

.marquee {
  display: flex;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  user-select: none;
}

.marquee__track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  animation: marquee 26s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 2.1875rem);
  font-weight: 600;
  line-height: 3;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* 14. Mission ------------------------------------------------------------- */

.mission {
  position: relative;
  text-align: center;
}

.mission__quote {
  position: relative;
  z-index: 2;
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(1.875rem, 4.4vw, 4rem);
  line-height: 1.12;
  text-transform: none;
}

.mission .btn {
  position: relative;
  z-index: 2;
  margin-top: 36px;
}

.mission__collage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mission__collage img {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
  object-fit: cover;
}

.mission.is-revealed .mission__collage img {
  opacity: 1;
  transform: none;
}

.mission__collage img:nth-child(1) {
  top: 2%;
  left: 2%;
  width: 17%;
  aspect-ratio: 362 / 429;
  --delay: 0.05s;
}
.mission__collage img:nth-child(2) {
  top: 6%;
  right: 3%;
  width: 21%;
  aspect-ratio: 464 / 328;
  --delay: 0.15s;
}
.mission__collage img:nth-child(3) {
  bottom: 6%;
  left: 9%;
  width: 12%;
  aspect-ratio: 240 / 214;
  --delay: 0.25s;
}
.mission__collage img:nth-child(4) {
  bottom: 2%;
  right: 6%;
  width: 16%;
  aspect-ratio: 357 / 421;
  --delay: 0.35s;
}
.mission__collage img:nth-child(5) {
  top: 42%;
  left: 0;
  width: 13%;
  aspect-ratio: 302 / 351;
  --delay: 0.45s;
}

@media (max-width: 900px) {
  .mission__collage {
    display: none;
  }
}

/* 15. Testimonials -------------------------------------------------------- */

.testimonials__head {
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
}

.quote-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--on-dark-mute);
  transition: transform 0.4s var(--ease);
}

.quote-card:nth-child(even) {
  background: var(--paper);
  color: var(--on-light-mute);
}

.quote-card:hover {
  transform: translateY(-8px);
}

.quote-card__text {
  flex: 1;
  margin: 0 0 34px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.quote-card__person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-card__person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.quote-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--on-dark);
}

.quote-card:nth-child(even) .quote-card__name {
  color: var(--on-light);
}

.quote-card__place {
  font-size: 0.9375rem;
}

/* 16. Journal ------------------------------------------------------------- */

.post-card__media {
  border-radius: var(--radius);
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 854 / 668;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.post-card:hover .post-card__media img {
  transform: scale(1.06);
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 12px;
  font-size: 0.9375rem;
  color: var(--on-light-mute);
}

.post-card__meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.post-card__title {
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}

.post-card__title a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.4s var(--ease);
}

.post-card:hover .post-card__title a {
  background-size: 100% 1px;
}

.journal__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: clamp(30px, 4vw, 50px);
}

/* 17. Footer -------------------------------------------------------------- */

.footer {
  padding-block: clamp(60px, 7vw, 110px) 0;
  background: var(--ink);
  color: var(--on-dark-mute);
}

.footer__top {
  display: grid;
  gap: clamp(40px, 5vw, 60px);
}

@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  }
}

.footer__contact li + li {
  margin-top: 14px;
}

.footer__contact a {
  font-size: 1.125rem;
  transition: color 0.25s var(--ease);
}

.footer__contact a:hover {
  color: var(--lime);
}

.footer__brand {
  margin-top: clamp(40px, 6vw, 90px);
}

.footer__brand img {
  width: 200px;
}

.footer__cols {
  display: grid;
  gap: 34px;
}

@media (min-width: 560px) {
  .footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer__col h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--on-dark);
  text-transform: capitalize;
}

.footer__col li + li {
  margin-top: 10px;
}

.footer__col a:hover {
  color: var(--lime);
}

.newsletter {
  margin-top: clamp(36px, 5vw, 64px);
}

.newsletter h3 {
  font-size: 1.5rem;
  color: var(--on-dark);
  text-transform: capitalize;
}

.newsletter p {
  max-width: 52ch;
  margin: 14px 0 24px;
}

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

.newsletter__form input {
  flex: 1 1 16rem;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--on-dark-faint);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--on-dark);
  font: inherit;
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter__form input:focus {
  border-color: var(--lime);
  outline: none;
}

.newsletter__note {
  margin-top: 12px;
  font-size: 0.875rem;
}

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(50px, 6vw, 80px);
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9375rem;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--on-dark-faint);
  border-radius: 50%;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.footer__social a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

/* 18. Preloader ----------------------------------------------------------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1),
    visibility 0.6s;
}

.preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__circle {
  position: absolute;
  inset: 0;
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.preloader__mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  animation: preloader-spin 1.2s linear infinite;
}

.preloader__line {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.44),
    rgba(255, 255, 255, 0)
  );
}

.preloader__line::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #000;
  z-index: 9;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

.preloader__logo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}

.preloader__logo img {
  height: 45px;
  width: auto;
  margin-inline: auto;
}

/* 19. Reveal animations --------------------------------------------------- */

/* One class per motion, mirroring the reference theme's names. Elements stay
   hidden until JS adds .animated, then run once.

   Gated on `.js`, which an inline script in <head> sets. If scripting is off
   or main.js fails to load, nothing is ever hidden and the page reads fine. */
.js .wow {
  visibility: hidden;
}

.js .wow.animated {
  visibility: visible;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0s);
}

.fadeInUp.animated      { animation-name: fadeInUp; }
.RotatingY.animated     { animation-name: RotatingY; }
.skewInRight.animated   { animation-name: skewInRight; }
.zoomInSmall.animated   { animation-name: zoomInSmall; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to   { opacity: 1; transform: none; }
}

@keyframes RotatingY {
  from { opacity: 0; transform: perspective(500px) rotateX(-20deg); }
  to   { opacity: 1; transform: perspective(500px) rotateX(0deg); }
}

@keyframes skewInRight {
  from { opacity: 0; transform: translate3d(60px, 0, 0) skewX(6deg); }
  to   { opacity: 1; transform: none; }
}

@keyframes zoomInSmall {
  from { opacity: 0; transform: scale(0.67); }
  to   { opacity: 1; transform: scale(1); }
}

.skewInRight.animated {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
}

/* 20. Hover effects ------------------------------------------------------- */

/* Text slides up and its clone follows, so the label appears to roll over. */
.btn-parallax .btn__label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
}

.btn-parallax .btn__label span {
  display: block;
  transition: transform 0.42s var(--ease);
}

.btn-parallax .btn__label span::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}

.btn-parallax:hover .btn__label span {
  transform: translateY(-100%);
}

/* Underline that wipes in from the left and out to the right. */
.title-hover-line {
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0 1px;
  transition: background-size 0.5s var(--ease), background-position 0s 0.5s;
}

.post-card:hover .title-hover-line,
.title-hover-line:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size 0.5s var(--ease);
}

/* Image drifts as it scales, rather than a straight zoom. */
.hover-image {
  position: relative;
  overflow: hidden;
}

.hover-image img {
  transition: transform 0.5s ease;
}

.hover-image:hover img,
.post-card:hover .hover-image img,
.highlight-card:hover .hover-image img,
.service-card:hover .hover-image img {
  transform: scale(1.07) translateX(-10px);
}


/* 21. Utilities & motion -------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .wow,
  .wow.animated,
  .img-card,
  .wheel__card,
  .mission__collage img {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--on-dark-faint);
  border-radius: 50%;
  background: var(--ink);
  color: var(--on-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s, background-color 0.3s;
}

.to-top[data-visible="true"] {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

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

/* 22. Responsive ---------------------------------------------------------- */

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .header__logo {
    justify-self: start;
  }

  .header__end {
    justify-self: end;
  }
}

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

@media (max-width: 1024px) {
  /* below the pin breakpoint the hero is a static composition, so it only
     needs one viewport of height */
  .hero {
    height: auto;
    padding-block: clamp(90px, 14vw, 140px) clamp(60px, 9vw, 110px);
  }

  .hero__pin {
    position: static;
    height: auto;
  }

  .hero__stage {
    height: auto;
  }

  .hero__text {
    position: static;
    transform: none;
  }

  .hero__title-1 {
    display: none;
  }

  .hero__title-2 {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-inline: 0;
  }

  .hero__cta {
    opacity: 1;
  }

  .hero__gallery {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: auto;
    height: auto;
    margin-top: clamp(30px, 6vw, 48px);
    transform: none;
    pointer-events: auto;
  }

  .img-card,
  .hero__gallery .img-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    margin: 0;
    opacity: 1;
    transform: none;
  }

  .img-card img {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .img-card.img-center {
    grid-column: 1 / -1;
  }

  .img-card.img-center img {
    aspect-ratio: 16 / 10;
  }

  .img-caption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(9, 9, 9, 0.6);
    backdrop-filter: blur(6px);
    font-size: 0.8125rem;
    white-space: normal;
    opacity: 1;
    transform: none;
  }

  .hero__scroll-hint {
    display: none;
  }
}

@media (max-width: 620px) {
  .tour-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .tour-columns__track:last-child {
    display: none;
  }

  .service-card {
    padding: 26px;
  }

  .quote-card {
    padding: 30px 26px;
  }
}

/* sticky-header states set by JS */
.header {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.is-stuck {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header.is-hidden {
  transform: translateY(-100%);
}

/* 23. Service tiles ------------------------------------------------------- */

.services__head {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}

.services__head .section-lead {
  max-width: none;
  margin-top: 22px;
}

.service-grid {
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: clamp(40px, 5vw, 70px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

@media (min-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-tile {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 32px;
  border: 1px solid var(--on-dark-faint);
  border-radius: var(--radius);
  background: var(--ink);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease),
    background-color 0.35s var(--ease);
}

.service-tile:hover {
  border-color: var(--lime);
  transform: translateY(-6px);
}

.service-tile__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(221, 255, 109, 0.1);
  color: var(--lime);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.service-tile:hover .service-tile__icon {
  background: var(--lime);
  color: var(--ink);
}

.service-tile__title {
  margin: 26px 0 12px;
  font-size: 1.375rem;
  line-height: 1.3;
  text-transform: capitalize;
}

.service-tile__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--on-dark-mute);
}

/* 24. Why choose us ------------------------------------------------------- */

.why {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

@media (min-width: 1024px) {
  .why {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }
}

.why__stack {
  display: grid;
  gap: 16px;
}

.why__stack img {
  width: 100%;
  aspect-ratio: 716 / 346;
  object-fit: cover;
  border-radius: var(--radius);
}

/* the middle frame is inset from the left; take the offset out of its width
   so the stack can never push past its column */
.why__stack img:nth-child(2) {
  width: calc(100% - clamp(20px, 6%, 56px));
  margin-left: clamp(20px, 6%, 56px);
}

.why__list {
  margin-top: clamp(30px, 4vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why__num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lime);
}

.why__list h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.why__list p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--on-dark-mute);
}

/* 25. Attractions --------------------------------------------------------- */

.attractions {
  display: grid;
  gap: clamp(24px, 2.6vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.attractions__col {
  padding: 28px 26px 30px;
  border-radius: var(--radius);
  background: var(--paper);
}

.attractions__state {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: capitalize;
}

.attractions__list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--on-light-mute);
}

.attractions__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}

.attractions__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: clamp(30px, 4vw, 46px);
  font-size: var(--step-lead);
}
