@font-face {
  font-family: "RalewayZA";
  src: url("/assets/raleway-regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "RalewayZA";
  src: url("/assets/raleway-bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700 900;
}

:root {
  color-scheme: dark;
  --ink: #030914;
  --ink-soft: #071525;
  --card: rgba(7, 20, 35, 0.86);
  --white: #f5f7f8;
  --muted: #8b9aa8;
  --gold: #d5aa55;
  --gold-pale: #efd996;
  --line: rgba(211, 229, 241, 0.13);
  --shell: 620px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "RalewayZA", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-pale);
}

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-pale);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -8%, rgba(23, 91, 137, 0.2), transparent 32%),
    linear-gradient(180deg, #030914 0%, #04101d 52%, #02070f 100%);
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(178, 209, 230, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178, 209, 230, 0.1) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.ambient__glow {
  position: absolute;
  top: var(--pointer-y, 26%);
  left: var(--pointer-x, 50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
  background: #1396e2;
  transform: translate(-50%, -50%);
  transition: top 0.8s ease-out, left 0.8s ease-out;
}

.shell {
  width: min(calc(100% - 28px), var(--shell));
  margin-inline: auto;
}

.profile {
  position: relative;
  padding: 50px 20px 24px;
  text-align: center;
}

.profile::after {
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(213, 170, 85, 0.55), transparent);
}

.profile__signature {
  width: 184px;
  margin: 15px auto 0;
}

.profile__avatar-ring {
  display: grid;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  padding: 3px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 205deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  box-shadow: 0 10px 32px rgba(16, 83, 141, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.profile__avatar-ring img {
  width: 100%;
  height: 100%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(213, 170, 85, 0.11);
  background: var(--gold-pale);
}

.profile__roles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 10px;
  color: var(--gold-pale);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile__roles span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.profile h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.profile h1 em,
.paths__heading h2 em,
.concierge h2 em,
.manifesto blockquote em {
  color: var(--gold-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.profile__bio {
  max-width: 430px;
  margin: 15px auto 0;
  color: #91a0ad;
  font-size: 0.92rem;
  line-height: 1.58;
}

.profile__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 0;
  margin: 24px auto 0;
  max-width: 430px;
}

.profile__proof span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 2px 12px;
  border-right: 1px solid rgba(213, 170, 85, 0.2);
}

.profile__proof span:last-child {
  border-right: 0;
}

.profile__proof strong {
  color: var(--gold-pale);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.profile__proof small {
  margin-top: 5px;
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.quick {
  padding: 18px 0 12px;
}

.route-button {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(235, 215, 157, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(213, 170, 85, 0.12), rgba(9, 39, 62, 0.3) 56%, rgba(5, 15, 27, 0.86)),
    var(--card);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.route-button:hover {
  border-color: rgba(239, 217, 150, 0.52);
  transform: translateY(-2px);
}

.route-button__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(239, 217, 150, 0.38);
  border-radius: 50%;
  background: rgba(213, 170, 85, 0.06);
  color: var(--gold-pale);
}

.route-button__icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.route-button__copy strong,
.route-button__copy small {
  display: block;
}

.route-button__copy strong {
  font-size: 0.86rem;
}

.route-button__copy small {
  margin-top: 4px;
  color: #788b9a;
  font-size: 0.73rem;
}

.route-button__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 0.93rem;
}

.featured {
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid rgba(211, 229, 241, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(10, 34, 54, 0.95), rgba(5, 14, 26, 0.98));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.featured__art {
  height: auto;
  overflow: hidden;
  background: #031225;
}

.featured__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 616 / 185;
  object-fit: cover;
}

.featured__body {
  padding: 16px 18px 17px;
}

.featured__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--gold-pale);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.featured h2 {
  margin: 0;
  font-size: 1.48rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.featured p {
  margin: 7px 0 13px;
  color: #8fa0ad;
  font-size: 0.8rem;
}

.featured a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  color: #12140e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured a:hover {
  box-shadow: 0 12px 32px rgba(213, 170, 85, 0.18);
  transform: translateY(-1px);
}

.featured__arrow {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 20, 14, 0.12);
}

.featured__arrow svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.paths {
  padding-top: 50px;
}

.paths__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 3px 18px;
  text-align: center;
}

.paths__heading p {
  margin: 0 0 7px;
  color: var(--gold-pale);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.paths__heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.paths__controls {
  display: flex;
  gap: 6px;
  padding-bottom: 2px;
}

.paths__controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #aebbc5;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.paths__controls button:hover {
  border-color: rgba(239, 217, 150, 0.4);
  background: rgba(213, 170, 85, 0.08);
  color: var(--gold-pale);
}

.paths__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 282px));
  justify-content: center;
  gap: 14px;
  overflow: visible;
  padding: 1px 1px 8px;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.paths__track::-webkit-scrollbar {
  display: none;
}

.path-card {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 229, 241, 0.12);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.23);
  scroll-snap-align: start;
  isolation: isolate;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.path-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 44%,
    rgba(2, 8, 16, 0.08) 55%,
    rgba(2, 8, 16, 0.62) 76%,
    rgba(2, 8, 16, 0.97) 100%
  );
}

.path-card:hover {
  border-color: rgba(239, 217, 150, 0.62);
  box-shadow: 0 0 0 1px rgba(213, 170, 85, 0.12), 0 22px 58px rgba(6, 72, 111, 0.24);
  transform: translateY(-3px);
}

.path-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #07111c;
}

.path-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 8, 16, 0.12), transparent 28%);
}

.path-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.path-card:hover .path-card__image img {
  transform: scale(1.035);
}

.path-card__image > span {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 11px;
  padding: 6px 8px;
  border: 1px solid rgba(239, 217, 150, 0.22);
  border-radius: 99px;
  background: rgba(3, 9, 20, 0.64);
  color: var(--gold-pale);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.path-card__body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  padding: 80px 54px 17px 17px;
}

.path-card h3 {
  margin: 0;
  font-size: 1.24rem;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.path-card p {
  margin: 7px 0 0;
  color: #a7b4bd;
  font-size: 0.78rem;
  line-height: 1.48;
}

.path-card a {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid rgba(239, 217, 150, 0.34);
  border-radius: 50%;
  background: rgba(213, 170, 85, 0.1);
  color: var(--gold-pale);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.path-card a svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.path-card a:hover {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  color: #12140e;
  transform: translateY(-1px);
}

.paths__hint {
  display: none;
  margin: 7px 2px 0;
  color: #526575;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
}

.paths__hint span {
  margin-right: 5px;
  color: var(--gold);
}

.manifesto {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  margin-top: 52px;
  border: 1px solid rgba(211, 229, 241, 0.12);
  border-radius: 24px;
  background: #020914;
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.3);
}

.manifesto::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 9, 20, 0.05) 22%, rgba(2, 9, 20, 0.42) 47%, #020914 84%);
}

.manifesto__portrait {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.manifesto__portrait::before,
.manifesto__portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: url("/assets/manifesto-empresario-v2.webp") center center / cover no-repeat;
}

.manifesto__portrait::before {
  filter: grayscale(0.78) contrast(1.04) brightness(0.97);
}

.manifesto__portrait::after {
  opacity: 0.68;
  filter: saturate(1) contrast(1.01) brightness(1.01);
  -webkit-mask-image: radial-gradient(
    ellipse 58% 105% at 44% 48%,
    #000 0%,
    rgba(0, 0, 0, 0.78) 28%,
    rgba(0, 0, 0, 0.48) 55%,
    rgba(0, 0, 0, 0.2) 78%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 58% 105% at 44% 48%,
    #000 0%,
    rgba(0, 0, 0, 0.78) 28%,
    rgba(0, 0, 0, 0.48) 55%,
    rgba(0, 0, 0, 0.2) 78%,
    transparent 100%
  );
}

.manifesto__body {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 22px;
}

.manifesto__body > p {
  margin: 0 0 13px;
  color: var(--gold-pale);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.manifesto__body > span {
  display: block;
  margin-top: 17px;
  color: #718493;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact {
  padding-top: 13px;
}

.contact > a {
  display: grid;
  min-height: 70px;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(211, 229, 241, 0.12);
  border-radius: 18px;
  background: rgba(7, 20, 35, 0.76);
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact > a:hover {
  border-color: rgba(239, 217, 150, 0.35);
  transform: translateY(-2px);
}

.contact__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 12px;
  background: linear-gradient(145deg, #e4cd84, #ad7e2e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 7px 18px rgba(137, 92, 19, 0.2);
  color: #fff;
}

.contact__icon svg {
  width: 21px;
  fill: currentColor;
  stroke: none;
}

.contact strong,
.contact small {
  display: block;
}

.contact strong {
  font-size: 0.82rem;
}

.contact small {
  margin-top: 4px;
  color: #718493;
  font-size: 0.7rem;
}

.contact i {
  color: var(--gold-pale);
  font-style: normal;
}

.footer {
  padding: 44px 12px 34px;
  text-align: center;
}

.footer img {
  width: 100px;
  margin: 0 auto 12px;
  opacity: 0.62;
}

.footer p {
  margin: 0;
  color: #425563;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.concierge {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.concierge.is-open {
  visibility: visible;
  opacity: 1;
}

.concierge__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 3, 9, 0.79);
  backdrop-filter: blur(11px);
}

.concierge__panel {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 28px), 570px);
  max-height: calc(100svh - 28px);
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(235, 215, 157, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(27, 109, 158, 0.22), transparent 35%),
    linear-gradient(145deg, #081829, #020813 70%);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.68);
  transform: translateY(20px) scale(0.985);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.concierge.is-open .concierge__panel {
  transform: translateY(0) scale(1);
}

.concierge__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #91a1ae;
  cursor: pointer;
}

.concierge__close svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.concierge__step {
  margin-bottom: 14px;
  color: var(--gold-pale);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concierge h2 {
  margin: 0;
  padding-right: 28px;
  font-size: clamp(1.65rem, 6vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.concierge__options {
  display: grid;
  gap: 7px;
  margin-top: 24px;
}

.concierge__options button {
  display: grid;
  min-height: 62px;
  grid-template-columns: 28px 1fr 24px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(218, 233, 243, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.concierge__options button:hover {
  border-color: rgba(235, 212, 151, 0.32);
  background: rgba(213, 170, 85, 0.07);
  transform: translateX(3px);
}

.concierge__options button span {
  color: var(--gold-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
}

.concierge__options button strong {
  font-size: 0.79rem;
  line-height: 1.35;
}

.concierge__options button i {
  color: #687c8c;
  font-size: 0.94rem;
  font-style: normal;
}

.is-recommended {
  animation: recommend 1.7s ease;
}

@keyframes recommend {
  0%, 100% { box-shadow: 0 16px 44px rgba(0, 0, 0, 0.23); }
  18%, 70% { border-color: rgba(239, 217, 150, 0.75); box-shadow: 0 0 0 4px rgba(213, 170, 85, 0.1), 0 22px 62px rgba(0, 0, 0, 0.45); }
}

@media (min-width: 640px) {
  .featured__body { padding: 14px 18px 16px; }
}

@media (max-width: 520px) {
  .shell {
    width: min(calc(100% - 20px), var(--shell));
  }

  .profile {
    padding: 38px 14px 23px;
  }

  .profile__avatar-ring {
    width: 90px;
    height: 90px;
  }

  .profile__signature {
    width: 164px;
  }

  .profile__roles {
    margin-top: 17px;
    font-size: 0.64rem;
  }

  .profile__bio {
    font-size: 0.97rem;
  }

  .profile__proof {
    margin-top: 21px;
  }

  .profile__proof span {
    padding: 2px 8px;
  }

  .profile__proof strong {
    font-size: 0.98rem;
  }

  .profile__proof small {
    font-size: 0.6rem;
    letter-spacing: 0.035em;
  }

  .route-button__copy strong {
    font-size: 0.89rem;
  }

  .route-button__copy small {
    font-size: 0.76rem;
  }

  .featured__body {
    padding: 14px 16px 15px;
  }

  .featured__meta {
    font-size: 0.62rem;
  }

  .featured p {
    font-size: 0.84rem;
  }

  .featured a {
    font-size: 0.76rem;
  }

  .paths {
    padding-top: 44px;
  }

  .paths__heading p {
    font-size: 0.62rem;
  }

  .paths__controls button {
    width: 32px;
    height: 32px;
  }

  .paths__track {
    --mobile-card: min(84vw, 310px);
    width: calc(100% + 20px);
    grid-template-columns: none;
    grid-auto-columns: var(--mobile-card);
    grid-auto-flow: column;
    justify-content: start;
    gap: 12px;
    overflow-x: auto;
    margin-left: -10px;
    padding: 2px calc((100% - var(--mobile-card)) / 2) 10px;
    scroll-padding-inline: calc((100% - var(--mobile-card)) / 2);
  }

  .paths__hint {
    display: block;
    font-size: 0.64rem;
  }

  .path-card h3 {
    font-size: 1.3rem;
  }

  .path-card p {
    font-size: 0.82rem;
  }

  .manifesto {
    min-height: 410px;
  }

  .manifesto__body > p {
    font-size: 0.62rem;
  }

  .manifesto__body > span {
    font-size: 0.62rem;
  }

  .contact strong {
    font-size: 0.86rem;
  }

  .contact small {
    font-size: 0.73rem;
  }

  .footer p {
    font-size: 0.56rem;
  }

  .concierge__step {
    font-size: 0.62rem;
  }

  .concierge__options button strong {
    font-size: 0.82rem;
  }

  .concierge {
    place-items: end center;
  }

  .concierge__panel {
    width: 100%;
    max-height: 92svh;
    padding: 29px 17px calc(20px + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 26px 26px 0 0;
    transform: translateY(100%);
  }
}

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

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