/* ============================================
   Tyqrix — The Turquoise Horizon
   Coastal Editorial × Modern Luxury
   ============================================ */

:root {
  --turquoise: #14B8A6;
  --turquoise-light: #5EEAD4;
  --ocean-mist: #99F6E4;
  --warm-white: #FEFEFC;
  --deep-navy: #1E293B;
  --sea-foam: #ECFEFF;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-fluid: cubic-bezier(0.4, 0, 0.2, 1);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --ribbon-height: 3.25rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--deep-navy);
  background-color: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--turquoise);
  text-decoration: none;
  transition: color 0.4s var(--ease-fluid);
}

a:hover {
  color: var(--deep-navy);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: 0.5rem 1rem;
  background: var(--deep-navy);
  color: var(--warm-white);
  z-index: 1000;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* —— Magazine ribbon —— */
.ribbon {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-md);
  width: min(92vw, 56rem);
  padding: 0.75rem 1.75rem;
  background: rgba(254, 254, 252, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 184, 166, 0.15);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 32px rgba(30, 41, 59, 0.06);
  animation: ribbonFade 1.4s var(--ease-fluid) forwards;
}

.ribbon__brand {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--deep-navy);
  justify-self: start;
}

.ribbon__tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise);
  text-align: center;
  white-space: nowrap;
}

.ribbon__edition {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(30, 41, 59, 0.55);
  justify-self: end;
}

@keyframes ribbonFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* —— Section utilities —— */
.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}

.visually-inline {
  display: inline;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 1.2s var(--ease-fluid) forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

.cover__content.reveal {
  animation: coverFade 1.8s var(--ease-fluid) 0.3s forwards;
  animation-timeline: auto;
}

@keyframes coverFade {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .cover__content.reveal,
  .ribbon,
  .shape {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* —— Cover / opening —— */
.cover {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--ribbon-height) + var(--space-2xl)) var(--space-md) var(--space-xl);
  overflow: hidden;
  background: var(--warm-white);
}

.cover__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
  filter: blur(0);
  opacity: 0.55;
}

.shape--1 {
  width: 55vw;
  height: 55vw;
  max-width: 42rem;
  max-height: 42rem;
  top: -15%;
  right: -12%;
  background: radial-gradient(ellipse at 30% 40%, var(--turquoise-light) 0%, var(--turquoise) 45%, transparent 70%);
  animation: drift1 18s ease-in-out infinite alternate;
}

.shape--2 {
  width: 40vw;
  height: 38vw;
  max-width: 28rem;
  max-height: 26rem;
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle at 60% 50%, var(--ocean-mist) 0%, var(--turquoise-light) 50%, transparent 75%);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  animation: drift2 22s ease-in-out infinite alternate;
}

.shape--3 {
  width: 28vw;
  height: 32vw;
  max-width: 18rem;
  max-height: 20rem;
  top: 35%;
  left: 20%;
  background: linear-gradient(135deg, var(--sea-foam) 0%, var(--ocean-mist) 60%, transparent 100%);
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  opacity: 0.7;
  animation: drift3 16s ease-in-out infinite alternate;
}

.shape--4 {
  width: 100%;
  height: 35%;
  bottom: 0;
  left: 0;
  border-radius: 100% 100% 0 0 / 80% 80% 0 0;
  background: linear-gradient(to top, var(--sea-foam) 0%, transparent 100%);
  opacity: 0.9;
  animation: drift4 14s ease-in-out infinite alternate;
}

@keyframes drift1 {
  to {
    transform: translate(-3%, 4%) rotate(3deg);
  }
}

@keyframes drift2 {
  to {
    transform: translate(5%, -3%) rotate(-4deg);
  }
}

@keyframes drift3 {
  to {
    transform: translate(4%, 6%) scale(1.05);
  }
}

@keyframes drift4 {
  to {
    transform: scaleX(1.02);
  }
}

.cover__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  text-align: center;
  padding: 0 var(--space-sm);
}

.cover__kicker {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--turquoise);
  margin-bottom: var(--space-md);
}

.cover__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
  margin-bottom: var(--space-lg);
}

.cover__lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 36rem;
  margin: 0 auto;
  color: rgba(30, 41, 59, 0.72);
  line-height: 1.85;
}

.cover__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(30, 41, 59, 0.35);
  z-index: 2;
}

.cover__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--turquoise), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* —— The Current —— */
.current {
  padding: var(--space-2xl) var(--space-md);
  background: var(--sea-foam);
}

.current__intro {
  max-width: 40rem;
  margin-bottom: var(--space-xl);
  padding-left: clamp(0rem, 8vw, 6rem);
}

.current__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr;
  gap: var(--space-md);
  max-width: 72rem;
  margin: 0 auto;
  align-items: start;
}

.current-block {
  padding: var(--space-lg) var(--space-md);
  background: var(--warm-white);
  border-top: 2px solid var(--turquoise);
  transition: transform 0.5s var(--ease-fluid), box-shadow 0.5s var(--ease-fluid);
}

.current-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(20, 184, 166, 0.08);
}

.current-block--flow {
  margin-top: 0;
}

.current-block--balance {
  margin-top: 3.5rem;
}

.current-block--motion {
  margin-top: 1.5rem;
}

.current-block__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--ocean-mist);
  display: block;
  margin-bottom: var(--space-sm);
}

.current-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-sm);
  color: var(--deep-navy);
}

.current-block p {
  font-size: 0.95rem;
  color: rgba(30, 41, 59, 0.7);
  line-height: 1.75;
}

/* —— Feature story —— */
.feature {
  padding: var(--space-2xl) var(--space-md);
  background: var(--warm-white);
}

.feature__layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) 1fr;
  gap: var(--space-xl);
  max-width: 68rem;
  margin: 0 auto;
  align-items: start;
}

.feature__pull {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--turquoise);
  border-left: 2px solid var(--turquoise-light);
  padding-left: var(--space-md);
  margin-top: var(--space-lg);
}

.feature__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  color: var(--deep-navy);
}

.feature__body {
  columns: 2;
  column-gap: var(--space-lg);
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(30, 41, 59, 0.78);
}

.feature__body p {
  margin-bottom: var(--space-md);
  break-inside: avoid;
}

.feature__body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.15em;
  margin-top: 0.05em;
  color: var(--turquoise);
}

/* —— Destinations —— */
.destinations {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--sea-foam) 100%);
}

.destinations__header {
  max-width: 68rem;
  margin: 0 auto var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.destinations__list {
  list-style: none;
  max-width: 68rem;
  margin: 0 auto;
}

.destination {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: var(--space-md);
  align-items: baseline;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  transition: padding-left 0.5s var(--ease-fluid);
}

.destination:hover {
  padding-left: var(--space-sm);
}

.destination:hover .destination__arrow {
  opacity: 1;
  transform: translateX(0);
}

.destination__index {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--turquoise);
}

.destination__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.destination__content p {
  font-size: 0.9rem;
  color: rgba(30, 41, 59, 0.6);
  max-width: 32rem;
}

.destination__arrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--turquoise-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid);
}

/* —— Horizon numbers —— */
.horizon {
  padding: var(--space-2xl) var(--space-md);
  background: var(--deep-navy);
  color: var(--warm-white);
}

.horizon .section-label {
  color: var(--turquoise-light);
}

.horizon .section-title {
  color: var(--warm-white);
}

.horizon__intro {
  max-width: 68rem;
  margin: 0 auto var(--space-xl);
}

.horizon__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  max-width: 68rem;
  margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(153, 246, 228, 0.15);
}

.metric {
  text-align: left;
  padding-right: var(--space-md);
  border-right: 1px solid rgba(153, 246, 228, 0.12);
}

.metric:last-child {
  border-right: none;
}

.metric__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--turquoise-light);
  display: block;
  margin-bottom: var(--space-sm);
}

.metric__plus,
.metric__unit {
  font-size: 0.55em;
  color: var(--ocean-mist);
}

.metric__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(254, 254, 252, 0.55);
}

/* —— Quote panel —— */
.quote-panel {
  padding: clamp(6rem, 15vw, 12rem) var(--space-md);
  background: var(--warm-white);
  text-align: center;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--deep-navy);
  max-width: 18ch;
  margin: 0 auto var(--space-md);
  animation: quoteFade 2s var(--ease-fluid) forwards;
}

.quote cite {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise);
}

@keyframes quoteFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* —— Journey —— */
.journey {
  padding: var(--space-2xl) var(--space-md);
  background: var(--sea-foam);
  overflow-x: auto;
}

.journey__header {
  max-width: 68rem;
  margin: 0 auto var(--space-xl);
}

.journey__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-width: min(100%, 56rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) 0;
  gap: var(--space-sm);
}

.journey__line {
  position: absolute;
  top: calc(var(--space-lg) + 0.35rem);
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--turquoise) 8%,
    var(--turquoise-light) 50%,
    var(--turquoise) 92%,
    transparent 100%
  );
  border-radius: 2px;
}

.journey__line::after {
  content: "";
  position: absolute;
  inset: -1px 0;
  background: linear-gradient(90deg, transparent, var(--ocean-mist), transparent);
  opacity: 0.5;
  animation: lineShimmer 8s ease-in-out infinite;
}

@keyframes lineShimmer {
  0%, 100% {
    transform: translateX(-20%);
    opacity: 0.3;
  }
  50% {
    transform: translateX(20%);
    opacity: 0.7;
  }
}

.journey__step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  min-width: 5rem;
}

.journey__dot {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto var(--space-md);
  background: var(--warm-white);
  border: 2px solid var(--turquoise);
  border-radius: 50%;
  transition: background 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid);
}

.journey__step:hover .journey__dot {
  background: var(--turquoise);
  transform: scale(1.25);
}

.journey__phase {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: var(--deep-navy);
  letter-spacing: 0.02em;
}

/* —— Invitation —— */
.invitation {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(
    145deg,
    var(--sea-foam) 0%,
    var(--ocean-mist) 40%,
    var(--turquoise-light) 100%
  );
  text-align: center;
}

.invitation__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.invitation__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep-navy);
  margin-bottom: var(--space-md);
}

.invitation__text {
  font-size: 1.05rem;
  color: rgba(30, 41, 59, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.invitation__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--deep-navy);
  padding: 1.15rem 2.75rem;
  border: none;
  transition: background 0.5s var(--ease-fluid), transform 0.4s var(--ease-fluid), letter-spacing 0.4s var(--ease-fluid);
}

.invitation__btn:hover {
  background: var(--turquoise);
  color: var(--warm-white);
  transform: translateY(-2px);
  letter-spacing: 0.3em;
}

/* —— Contact —— */
.contact {
  padding: var(--space-2xl) var(--space-md);
  background: var(--warm-white);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  max-width: 68rem;
  margin: 0 auto;
  align-items: start;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

.contact__details {
  font-style: normal;
}

.contact__details p {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.contact__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.35rem;
}

.contact__details a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--deep-navy);
}

.contact__details a:hover {
  color: var(--turquoise);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30, 41, 59, 0.5);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--deep-navy);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(30, 41, 59, 0.2);
  padding: 0.5rem 0 0.75rem;
  outline: none;
  transition: border-color 0.4s var(--ease-fluid);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--turquoise);
}

.form-submit {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep-navy);
  background: none;
  border: none;
  border-bottom: 1px solid var(--deep-navy);
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.4s var(--ease-fluid), border-color 0.4s var(--ease-fluid);
}

.form-submit:hover {
  color: var(--turquoise);
  border-bottom-color: var(--turquoise);
}

/* —— Footer —— */
.footer {
  position: relative;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  background: var(--sea-foam);
  overflow: hidden;
  text-align: center;
}

.footer__word {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 22vw, 18rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(20, 184, 166, 0.12);
  white-space: nowrap;
  user-select: none;
  margin-bottom: -2rem;
}

.footer__copy {
  position: relative;
  z-index: 1;
  color: rgba(30, 41, 59, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .ribbon {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.35rem;
    padding: 0.85rem 1.25rem;
    top: var(--space-sm);
  }

  .ribbon__brand,
  .ribbon__edition {
    justify-self: center;
  }

  .ribbon__tagline {
    order: -1;
  }

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

  .current-block--balance,
  .current-block--motion {
    margin-top: 0;
  }

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

  .feature__body {
    columns: 1;
  }

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

  .metric:nth-child(2) {
    border-right: none;
  }

  .metric {
    margin-bottom: var(--space-md);
  }

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

@media (max-width: 600px) {
  .cover {
    padding-top: calc(var(--ribbon-height) + 5rem);
  }

  .destination {
    grid-template-columns: 3rem 1fr;
  }

  .destination__arrow {
    display: none;
  }

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

  .metric {
    border-right: none;
    border-bottom: 1px solid rgba(153, 246, 228, 0.12);
    padding-bottom: var(--space-md);
  }

  .metric:last-child {
    border-bottom: none;
  }

  .journey__track {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-lg);
    padding-left: var(--space-md);
  }

  .journey__line {
    top: 0;
    bottom: 0;
    left: 0.5rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent 0%,
      var(--turquoise) 10%,
      var(--turquoise-light) 50%,
      var(--turquoise) 90%,
      transparent 100%
    );
  }

  .journey__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    text-align: left;
    align-items: center;
  }

  .journey__dot {
    margin: 0;
  }
}
