@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-variable-latin-ext.woff2?v=1") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-variable-latin.woff2?v=1") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-latin-ext.woff2?v=1") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-latin.woff2?v=1") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-600-latin-ext.woff2?v=1") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-600-latin.woff2?v=1") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #071927;
  --navy-soft: #0d2435;
  --yellow: #f4be2a;
  --yellow-dark: #d99e00;
  --blue: #1769ff;
  --white: #ffffff;
  --fog: #f6f9fc;
  --line: #d9e0e6;
  --text: #071927;
  --muted: #586875;
  --whatsapp: #25d366;
  --whatsapp-dark: #062c17;
  --display: "Archivo", Arial, sans-serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --shell: 1500px;
  --header-h: 88px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 22px);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input { font-family: var(--body); }

img,
svg { display: block; }

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,
a { touch-action: manipulation; }
button,
summary { cursor: pointer; }

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 95%;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

em { color: var(--yellow); font-style: normal; }
strong { font-weight: 700; }
::selection { background: var(--yellow); color: var(--navy); }

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

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

.shell-compact {
  width: min(calc(100% - 80px), 1320px);
  margin-inline: auto;
}

.section { padding-block: clamp(88px, 8vw, 138px); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-180%);
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header { top: 32px; }

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 34px;
}

.wordmark {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wordmark-ist {
  min-width: 66px;
  padding-right: 10px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.wordmark-ist i {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-copy b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.wordmark-copy small {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 180ms ease;
}

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

.header-call {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 18px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-call:hover { background: var(--blue); transform: translateY(-2px); }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 6px auto;
  background: var(--navy);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  display: grid;
  padding: 8px 40px 22px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.hero { padding: 42px 0 0; }

.hero-stage {
  min-height: min(590px, calc(100vh - 142px));
  display: grid;
  grid-template-columns: minmax(380px, 450px) minmax(0, 1fr);
  gap: clamp(18px, 1.5vw, 24px);
  align-items: stretch;
  justify-content: space-between;
  border: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 3.2vw, 48px);
  padding-right: clamp(22px, 2vw, 30px);
  background: var(--white);
}

.hero-copy h1 {
  max-width: 630px;
  font-size: clamp(3.1rem, 3.8vw, 4.8rem);
  font-stretch: 85%;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 530px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.7;
}

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

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--yellow); color: var(--navy); }
.button-primary:hover { background: var(--navy); color: var(--white); }
.button-whatsapp { background: var(--whatsapp); color: var(--whatsapp-dark); }
.button-whatsapp:hover { background: #19bb52; color: var(--whatsapp-dark); }
.button-white { background: var(--white); color: var(--navy); }

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #dfe5e8;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 5.5s ease;
}

.hero-slide.is-active { opacity: 1; transform: scale(1); }

.slider-controls {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 16px;
  left: 50%;
  display: flex;
  gap: 4px;
  padding: 0;
  transform: translateX(-50%);
  background: transparent;
}

.slider-controls button {
  position: relative;
  width: 44px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
}

.slider-controls button::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 6px;
  left: 4px;
  height: 3px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 1px 4px rgba(7, 25, 39, 0.3);
  transition: background-color 180ms ease, transform 180ms ease;
}

.slider-controls button.is-active::before {
  transform: scaleX(1.08);
  background: var(--yellow);
}

.slider-toggle {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 4px 14px rgba(7, 25, 39, 0.22);
  transition: background-color 180ms ease, transform 180ms ease;
}

.js .slider-toggle { display: grid; }
.slider-toggle[hidden] { display: none; }

.slider-toggle:hover,
.slider-toggle:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.slider-toggle__icon {
  width: 12px;
  height: 14px;
  background: linear-gradient(90deg, currentColor 0 34%, transparent 34% 66%, currentColor 66% 100%);
}

.slider-toggle.is-paused .slider-toggle__icon {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  background: none;
}

.about-intro {
  padding-block: clamp(72px, 6vw, 96px);
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(380px, 450px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.about-heading {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(24px, 2vw, 32px);
  padding: clamp(36px, 3.2vw, 48px);
  background: var(--fog);
}

.about-heading > p,
.destination-heading > p {
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-heading h2 {
  max-width: 390px;
  font-size: clamp(3.2rem, 4.35vw, 4.35rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-transform: uppercase;
}

.about-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(38px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}

.about-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.78;
}

.about-copy a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--navy);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.destination-flow {
  padding-block: clamp(86px, 7vw, 116px);
  background: var(--white);
}

.destination-layout {
  display: grid;
  grid-template-columns: minmax(380px, 450px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.destination-layout > * { min-width: 0; }

.destination-heading h2 {
  max-width: 500px;
  margin-top: 22px;
  font-size: clamp(3.35rem, 3.75vw, 4rem);
  font-stretch: 85%;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.destination-heading > span {
  max-width: 430px;
  display: block;
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.7;
}

.destination-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--fog);
  list-style: none;
}

.destination-list li {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: clamp(0.72rem, 0.85vw, 0.88rem);
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.destination-list li:nth-child(2n) { border-right-color: transparent; }
.destination-list li:last-child {
  grid-column: 1 / -1;
  border-right-color: transparent;
}
.destination-list li:hover,
.destination-list li.is-current { background: var(--yellow); color: var(--navy); }

.route-services {
  padding-block: clamp(82px, 7vw, 112px);
  background: var(--navy);
  color: var(--white);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(42px, 4vw, 64px);
  align-items: start;
}

.route-heading {
  position: static;
  display: grid;
  grid-template-columns: minmax(430px, 520px) minmax(0, 1fr);
  gap: clamp(48px, 4vw, 68px);
  align-items: end;
}

.route-heading h2 {
  max-width: 520px;
  font-size: clamp(3.15rem, 3.8vw, 4rem);
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-transform: uppercase;
}

.route-heading-copy {
  padding: 6px 0 2px;
}

.route-heading-copy p {
  max-width: 720px;
  margin: 0;
  color: #b6c2ca;
  font-size: 1rem;
  line-height: 1.75;
}

.route-heading-copy a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 0 20px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.service-list article {
  min-width: 0;
  min-height: 220px;
  grid-column: span 3;
  padding: clamp(26px, 2.4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: background-color 220ms ease, color 220ms ease;
}

.service-list article:nth-last-child(-n + 3) { grid-column: span 4; }

.service-list article > i {
  color: var(--yellow);
  font-size: 2rem;
}

.service-list article:hover { background: var(--yellow); color: var(--navy); }
.service-list article:hover > i { color: var(--navy); }

.service-list h3 {
  max-width: 420px;
  margin-top: 28px;
  font-size: clamp(1.35rem, 1.55vw, 1.72rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
  word-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list p {
  max-width: 460px;
  margin: 14px 0 0;
  color: #b6c2ca;
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-list article:hover p { color: var(--navy); }

.process {
  padding-block: clamp(82px, 7vw, 112px);
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(420px, 530px) minmax(0, 840px);
  gap: clamp(52px, 4vw, 72px);
  align-items: center;
  justify-content: space-between;
}

.process-layout > h2 {
  max-width: 610px;
  font-size: clamp(3rem, 4.35vw, 5rem);
  text-transform: uppercase;
}

.process-rail {
  width: 100%;
  max-width: 840px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  justify-self: end;
  background: var(--fog);
}

.process-rail::before { display: none; }

.process-rail article {
  position: relative;
  min-width: 0;
  padding: 24px 22px 22px;
  border-right: 1px solid var(--line);
}

.process-rail article:last-child { border-right: 0; }

.process-rail article::before { display: none; }
.process-rail article > i { color: var(--navy); font-size: 1.45rem; }

.process-rail h3 {
  margin-top: 15px;
  font-size: clamp(1.12rem, 1.35vw, 1.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.process-rail p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dossier { background: var(--fog); }

.dossier-head {
  display: block;
  margin-bottom: 44px;
}

.dossier-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dossier-head h2 {
  max-width: none;
  font-size: clamp(3.2rem, 4.6vw, 5rem);
  font-stretch: 95%;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
}

.dossier-reading {
  display: block;
  width: min(calc(100% - 80px), var(--shell));
}

.dossier-body {
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.dossier-intro {
  padding: 0;
  border: 0;
  background: transparent;
}

.dossier-intro p,
.chapter-copy p {
  margin: 0;
  color: #243643;
  font-size: 1rem;
  line-height: 1.85;
}

.dossier-intro p + p,
.chapter-copy p + p { margin-top: 28px; }

.dossier-body:not(.is-open) .dossier-intro p:first-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.dossier-body:not(.is-open) .dossier-intro p:nth-child(n + 2),
.dossier-body:not(.is-open) .dossier-chapter { display: none; }

.dossier-chapter {
  padding: 62px 0 0;
  scroll-margin-top: calc(var(--header-h) + 30px);
}

.chapter-copy h3 {
  max-width: none;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: clamp(1.9rem, 2.2vw, 2.65rem);
  font-stretch: 88%;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.dossier-toggle-wrap {
  display: flex;
  width: 100%;
  max-width: none;
  justify-content: flex-end;
  margin-left: 0;
  margin-top: 34px;
}

.dossier-toggle {
  width: 238px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  gap: 0;
  padding: 0 0 0 20px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease;
}

.dossier-toggle:hover { background: var(--navy); color: var(--white); }
.dossier-toggle i {
  min-height: 56px;
  display: grid;
  align-self: stretch;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.dossier-toggle:hover i { background: var(--yellow); color: var(--navy); }
.dossier-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.faq { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(420px, 530px) minmax(0, 840px);
  gap: clamp(52px, 4vw, 72px);
  align-items: start;
  justify-content: space-between;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 34px);
}

.faq-intro h2 {
  max-width: 390px;
  font-size: clamp(3.1rem, 3.8vw, 4.25rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.faq-intro h2 em {
  display: inline-block;
  white-space: nowrap;
}

.faq-intro > p {
  max-width: 30ch;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--navy);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-intro > a span { color: var(--blue); }
.faq-list { max-width: none; }

.faq-list details {
  border-top: 1px solid var(--line);
  background: transparent;
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 22px;
  padding: 15px 0;
  font-family: var(--display);
  font-size: clamp(0.96rem, 1.08vw, 1.06rem);
  font-weight: 750;
  line-height: 1.3;
  list-style: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--navy);
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: currentColor;
}

.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-list summary:hover,
.faq-list details[open] summary { color: var(--blue); }
.faq-list details[open] summary i { border-color: var(--yellow); background: var(--yellow); color: var(--navy); }
.faq-list details[open] summary i::after { display: none; }

.faq-list details > p {
  max-width: 880px;
  margin: 0;
  padding: 0 58px 24px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.driver-callout {
  padding-block: clamp(72px, 6vw, 100px);
  background: var(--navy);
  color: var(--white);
}

.driver-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(420px, 530px) minmax(0, 840px);
  gap: clamp(52px, 4vw, 72px);
  align-items: center;
  justify-content: space-between;
}

.driver-kicker,
.contact-kicker {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.driver-kicker { color: var(--yellow); }

.driver-copy h2 {
  color: var(--white);
  font-size: clamp(3rem, 4.2vw, 4.75rem);
  text-transform: uppercase;
}

.driver-copy > p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: #b7c4cc;
  line-height: 1.7;
}

.driver-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.driver-actions a {
  min-width: 0;
  min-height: 158px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  padding: 28px 30px;
  background: var(--yellow);
  color: var(--navy);
  transition: transform 180ms ease, filter 180ms ease;
}

.driver-actions a:last-child { background: var(--white); }
.driver-actions a:hover { z-index: 1; transform: translateY(-4px); filter: brightness(0.96); }
.driver-actions a > i:first-child { font-size: 1.45rem; }
.driver-actions a > i:last-child { justify-self: end; font-size: 0.9rem; }

.driver-actions span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.driver-actions small {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.driver-actions strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 820;
  line-height: 1.05;
}

.contact {
  padding-block: clamp(76px, 6vw, 104px);
  background: var(--fog);
  color: var(--navy);
}

.contact-lead { min-width: 0; }
.contact-kicker { color: var(--blue); }

.contact h2 {
  max-width: 580px;
  font-size: clamp(3rem, 4.2vw, 4.75rem);
  letter-spacing: -0.055em;
}

.contact-lead > div > p:last-child {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-phone,
.contact-whatsapp {
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  transition: transform 180ms ease, filter 180ms ease;
}

.contact-phone { background: var(--navy); color: var(--white); }
.contact-whatsapp { background: var(--whatsapp); color: var(--whatsapp-dark); }
.contact-phone:hover,
.contact-whatsapp:hover { transform: translateX(4px); filter: brightness(0.96); }

.contact-phone > i:first-child,
.contact-whatsapp > i:first-child {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.25rem;
}

.contact-phone > i:last-child,
.contact-whatsapp > i:last-child { justify-self: end; font-size: 0.88rem; }

.contact-phone span,
.contact-whatsapp span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--display);
  font-size: clamp(1.16rem, 1.45vw, 1.45rem);
  font-weight: 820;
}

.contact-phone small,
.contact-whatsapp small {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 66px 0 28px;
  background: #03111c;
  color: var(--white);
}

.footer-grid {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-brand strong {
  padding-right: 30px;
  border-right: 1px solid #72808b;
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.footer-brand p {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.75rem, 1vw, 0.94rem);
  line-height: 1.85;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
}

.footer-nav a {
  color: #bdc8d0;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-nav a:hover { color: var(--yellow); }

.footer-quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-quick a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid #51616e;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.footer-quick a:first-child:hover { border-color: var(--yellow); background: var(--yellow); color: var(--navy); }
.footer-quick a:last-child { border-color: #128c4a; color: var(--whatsapp); }
.footer-quick a:last-child:hover { background: var(--whatsapp); color: var(--whatsapp-dark); }

.runway-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  color: var(--yellow);
}

.runway-line span {
  height: 3px;
  flex: 1;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 18px, transparent 18px 28px);
}

.runway-line i { transform: rotate(-10deg); font-size: 1.25rem; }

.legal {
  margin-top: 26px;
  color: #84919b;
  font-size: 0.74rem;
  text-align: center;
}

.mobile-actions { display: none; }

@media (hover: hover) {
  .destination-list li { cursor: default; }
  .destination-list li:hover,
  .destination-list li.is-current {
    z-index: 1;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(7, 25, 39, 0.11);
  }
}

@media (max-width: 1380px) {
  .desktop-nav { display: none; }
  .header-call { margin-left: auto; }
  .menu-toggle { display: block; }
}

@media (max-width: 1220px) {
  :root { --header-h: 78px; }
  .shell-wide,
  .shell-compact { width: min(calc(100% - 56px), var(--shell)); }
  .desktop-nav { display: none; }
  .header-call { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero-stage { grid-template-columns: minmax(380px, 450px) minmax(0, 1fr); gap: 24px; }
  .hero-copy { padding: clamp(38px, 4vw, 60px); }
  .hero-copy h1 { font-size: clamp(3rem, 4.8vw, 4.2rem); }
  .hero-media { min-height: 520px; }
  .destination-layout { grid-template-columns: minmax(380px, 430px) minmax(0, 1fr); gap: 24px; }
  .service-list article { min-height: 210px; grid-column: span 4; }
  .service-list article:nth-child(n + 10) { grid-column: span 6; }
  .process-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-layout > h2 { max-width: 760px; }
  .process-rail { max-width: none; justify-self: stretch; }
}

@media (max-width: 1080px) {
  .hero-stage { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .about-layout { grid-template-columns: minmax(0, 1fr); }
  .about-heading { min-height: 260px; }
  .destination-layout { grid-template-columns: 1fr; gap: 48px; }
  .destination-heading h2 { max-width: 720px; }
  .route-heading h2 { max-width: 720px; }
  .driver-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .driver-copy,
  .contact-lead { max-width: 720px; }
  .chapter-copy h3 { white-space: normal; }
  .dossier-head h2 { white-space: normal; }
}

@media (max-width: 900px) {
  .shell-wide,
  .shell-compact { width: min(calc(100% - 40px), var(--shell)); }
  .header-call span { display: none; }
  .header-call { width: 48px; min-height: 48px; justify-content: center; padding: 0; }
  .hero { padding-top: 24px; }
  .hero-stage { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .hero-copy { min-height: 470px; }
  .hero-copy h1 { max-width: 720px; font-size: clamp(3.6rem, 9vw, 5.4rem); }
  .hero-media { min-height: 520px; }
  .destination-layout,
  .route-layout { grid-template-columns: 1fr; }
  .destination-layout,
  .route-layout { gap: 58px; }
  .destination-heading h2 { max-width: 760px; }
  .route-heading { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .route-heading h2 { max-width: 720px; }
  .service-list article,
  .service-list article:nth-child(n + 9),
  .service-list article:nth-child(n + 10) { min-height: 210px; grid-column: span 6; }
  .service-list article:last-child { grid-column: 1 / -1; }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .faq-intro h2 { font-size: clamp(2.75rem, 5.4vw, 3.25rem); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 72px; }
  .shell-wide,
  .shell-compact { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding-block: 78px; }
  body { padding-bottom: 64px; }
  .header-inner { gap: 10px; }
  .wordmark { gap: 10px; }
  .wordmark-ist { min-width: 42px; gap: 0; padding-right: 10px; }
  .wordmark-ist > span { display: none; }
  .wordmark-ist i { width: 30px; height: 30px; flex-basis: 30px; font-size: 0.76rem; }
  .wordmark-copy b { max-width: 190px; font-size: 0.78rem; }
  .wordmark-copy small { margin-top: 5px; font-size: 0.49rem; letter-spacing: 0.22em; }
  .header-call { display: none; }
  .menu-toggle { width: 44px; height: 44px; margin-left: auto; }
  .mobile-nav { padding-inline: 14px; }
  .hero { padding-top: 14px; }
  .hero-stage { width: 100%; }
  .hero-copy { min-height: 0; padding: 42px 28px 46px; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.2rem); line-height: 0.9; }
  .hero-copy > p { margin-top: 26px; font-size: 0.96rem; line-height: 1.62; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
  .button { min-width: 0; min-height: 54px; gap: 8px; padding-inline: 8px; font-size: 0.72rem; letter-spacing: 0.02em; }
  .hero-media { min-height: 0; aspect-ratio: 4 / 3; }
  .hero-slide:nth-child(3) { object-position: 57% center; }
  .hero-slide:nth-child(4) { object-position: 54% center; }
  .slider-controls { right: auto; bottom: 8px; left: 50%; }
  .slider-controls button { width: 38px; height: 28px; }
  .slider-toggle { right: 8px; bottom: 8px; width: 38px; height: 38px; }
  .about-intro { padding-block: 68px; }
  .about-layout { gap: 18px; }
  .about-heading { min-height: 230px; padding: 30px 28px; }
  .about-heading h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .about-copy { padding: 30px 6px 24px; }
  .about-copy p { font-size: 1rem; line-height: 1.72; }
  .destination-flow { padding-block: 74px; }
  .destination-layout { gap: 38px; }
  .destination-heading h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
    font-stretch: 80%;
  }
  .process-layout > h2 { font-size: clamp(2.55rem, 12vw, 4.3rem); }
  .destination-list { grid-template-columns: minmax(0, 1fr); }
  .destination-list li,
  .destination-list li:last-child { min-height: 74px; grid-column: auto; padding: 16px 18px; border-right-color: transparent; font-size: 0.68rem; }
  .route-layout { gap: 48px; }
  .route-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.2rem);
    letter-spacing: -0.02em;
    overflow-wrap: normal;
  }
  .service-list { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .service-list article,
  .service-list article:nth-child(n + 9),
  .service-list article:nth-child(n + 10),
  .service-list article:last-child { min-height: 0; grid-column: 1 / -1; padding: 32px 26px 34px; }
  .service-list h3 { margin-top: 28px; font-size: clamp(1.55rem, 7.5vw, 2.5rem); }
  .process-layout { gap: 38px; }
  .process-rail { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .process-rail article { padding: 24px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-rail article:last-child { border-bottom: 0; }
  .process-rail::before,
  .process-rail article::before { display: none; }
  .process-rail h3 { margin-top: 18px; }
  .dossier-head { margin-bottom: 30px; }
  .dossier-kicker { margin-bottom: 12px; font-size: 0.62rem; }
  .dossier-head h2 { font-size: 2.25rem; }
  .dossier-intro { padding: 0; border: 0; }
  .dossier-intro p,
  .chapter-copy p { font-size: 0.94rem; line-height: 1.75; }
  .dossier-chapter { padding-top: 54px; }
  .chapter-copy h3 { font-size: clamp(2rem, 9vw, 3rem); }
  .dossier-toggle { width: 100%; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-intro { position: static; }
  .faq-intro h2 { font-size: 2.9rem; }
  .faq-intro > p { margin-top: 18px; }
  .faq-intro > a { margin-top: 20px; }
  .faq-list summary { min-height: 68px; gap: 14px; padding: 15px 0; font-size: 0.92rem; }
  .faq-list summary i { width: 28px; height: 28px; }
  .faq-list details > p { padding: 0 42px 24px 0; font-size: 0.9rem; }
  .driver-layout { gap: 34px; }
  .driver-copy h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .driver-actions { grid-template-columns: 1fr; }
  .driver-actions a { min-height: 112px; padding: 22px; }
  .contact { padding-block: 58px; }
  .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact h2 { font-size: clamp(2.65rem, 12vw, 3.8rem); }
  .contact-phone,
  .contact-whatsapp { min-height: 82px; padding: 16px 18px; }
  .site-footer { padding-top: 62px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-brand { grid-column: auto; gap: 18px; }
  .footer-brand strong { padding-right: 18px; font-size: clamp(5rem, 26vw, 7.2rem); }
  .footer-brand p { font-size: 0.68rem; }
  .footer-nav { gap: 12px 20px; }
  .footer-quick { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .footer-quick a { justify-content: center; padding-inline: 12px; }
  .runway-line { margin-top: 50px; }
  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -12px 30px rgba(7, 25, 39, 0.16);
  }
  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--display);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-actions a:last-child { background: var(--whatsapp); color: var(--whatsapp-dark); }
  .mobile-actions a:only-child { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
