:root {
  --ink: #0b0c0e;
  --ink-soft: #17191d;
  --yellow: #ebed04;
  --yellow-soft: #f7f82e;
  --paper: #f7f6f1;
  --white: #ffffff;
  --muted: #6d6e72;
  --line: rgba(12, 13, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

img {
  display: block;
}

.service-icon {
  color: var(--yellow);
  flex: 0 0 auto;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.arrow {
  font-size: 19px;
  line-height: 1;
}

.site-header {
  align-items: center;
  background: var(--yellow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 88px;
  left: 0;
  padding: 0 clamp(22px, 5vw, 82px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  justify-self: start;
}

.brand img {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
  height: 72px;
  object-fit: contain;
  width: 105px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 38px;
}

.site-header nav a {
  color: rgba(7, 8, 9, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--ink);
}

.header-cta {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  justify-self: end;
  padding: 12px 18px;
  color: white;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: #292c30;
  transform: translateY(-2px);
}

.hero {
  align-items: flex-end;
  background: var(--ink);
  color: white;
  display: flex;
  min-height: 790px;
  overflow: hidden;
  padding: 170px clamp(22px, 7vw, 112px) 96px;
  position: relative;
}

.hero-slides {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero-slide {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 54%;
  opacity: 0;
  position: absolute;
  width: 100%;
  transform: scale(1.025);
  transition: opacity 1.1s ease, transform 7s ease;
}

.hero-slide:nth-child(2) {
  object-position: center 55%;
}

.hero-slide:nth-child(3) {
  object-position: center 48%;
}

.hero-slide:nth-child(4) {
  object-position: center 58%;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.92) 0%, rgba(4, 5, 7, 0.65) 38%, rgba(4, 5, 7, 0.18) 72%, rgba(4, 5, 7, 0.15) 100%),
    linear-gradient(0deg, rgba(4, 5, 7, 0.62) 0%, transparent 52%);
  inset: 0;
  position: absolute;
}

.hero::after {
  background: var(--yellow);
  content: "";
  height: 7px;
  inset: auto 0 0 0;
  position: absolute;
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  align-items: center;
  color: var(--yellow);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 9px;
  letter-spacing: 0.19em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--yellow);
  display: block;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  margin: 28px 0 35px;
  max-width: 630px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 56px;
  padding: 0 27px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--yellow-soft);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-note {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 20px;
  position: absolute;
  right: clamp(22px, 7vw, 112px);
  z-index: 3;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 18px;
}

.service-band {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(22px, 7vw, 112px);
}

.service-band > div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 17px;
  min-height: 116px;
  padding: 0 clamp(18px, 3vw, 48px);
}

.service-band > div:first-child {
  padding-left: 0;
}

.service-band > div:last-child {
  border-right: 0;
}

.service-band svg {
  color: var(--yellow);
  flex: 0 0 auto;
}

.service-band span {
  color: rgba(255, 255, 255, 0.53);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 5px;
}

.service-band strong {
  color: white;
  font-size: 15px;
}

.section {
  padding: clamp(86px, 9vw, 145px) clamp(22px, 7vw, 112px);
}

.transfers {
  display: grid;
  gap: clamp(60px, 8vw, 150px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 50px;
}

.section .kicker,
.cta-section .kicker {
  color: #8a7600;
}

.section h2,
.cta-section h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 26px 0;
  max-width: 500px;
}

.text-link {
  align-items: center;
  border-bottom: 2px solid var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 12px;
  padding: 10px 0;
}

.route-list {
  border-top: 1px solid var(--line);
}

.route-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 38px 82px 22px 1fr 44px;
  min-height: 104px;
  transition: padding 200ms ease, background 200ms ease;
}

.route-item:hover {
  background: white;
  padding-left: 18px;
}

.route-number {
  color: #a2a2a2;
  font-size: 12px;
  font-weight: 800;
}

.route-from {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.route-item > svg {
  color: #9c9c9c;
}

.route-item strong {
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.025em;
}

.route-action {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 42px;
}

.route-item:hover .route-action {
  transform: rotate(-8deg) scale(1.06);
}

.tours-section {
  background: var(--ink);
  color: white;
}

.tours-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.tours-heading p:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 7px;
  max-width: 400px;
}

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

.tour-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.tour-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.72, 0.25, 1);
  width: 100%;
}

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

.tour-overlay {
  background: linear-gradient(0deg, rgba(3, 4, 5, 0.94) 0%, rgba(3, 4, 5, 0.1) 70%);
  inset: 0;
  position: absolute;
}

.tour-info {
  bottom: 0;
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
}

.tour-info > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tour-info h3 {
  font-size: clamp(25px, 2.3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 9px 0 0;
}

.tour-action {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  transition: opacity 220ms ease, max-height 220ms ease, padding-top 220ms ease;
}

.tour-card:hover .tour-action {
  max-height: 40px;
  opacity: 1;
  padding-top: 16px;
}

.tour-large {
  grid-row: span 2;
}

.tour-wide {
  grid-column: span 2;
}

.partners-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(48px, 9vw, 150px);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(86px, 9vw, 135px) clamp(22px, 7vw, 112px);
}

.partners-grid {
  display: grid;
  gap: 22px;
}

.partners-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.partners-copy > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 520px;
}

.partner-card {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(11, 12, 14, 0.09);
  display: grid;
  gap: 28px;
  grid-template-columns: 170px 1fr 52px;
  min-height: 230px;
  overflow: hidden;
  padding: 28px 34px;
  position: relative;
}

.partner-card::before {
  background: var(--yellow);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 7px;
}

.partner-logo-wrap {
  align-items: center;
  aspect-ratio: 1;
  background: #f8f8f5;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.partner-logo-wrap img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.partner-card > div:nth-child(2) > span {
  color: #837500;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partner-card h3 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 9px 0 8px;
}

.partner-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.partner-check {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.cta-section {
  align-items: center;
  background: var(--yellow);
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: 190px 1fr auto;
  padding: clamp(65px, 7vw, 105px) clamp(22px, 7vw, 112px);
}

.cta-logo {
  align-items: center;
  display: flex;
  justify-content: center;
}

.cta-logo img {
  filter: drop-shadow(0 10px 17px rgba(0, 0, 0, 0.18));
  max-height: 150px;
  max-width: 190px;
  object-fit: contain;
}

.cta-section .kicker {
  color: rgba(11, 12, 14, 0.6);
  margin-bottom: 12px;
}

.cta-copy h2 {
  font-size: clamp(44px, 5vw, 70px);
}

.cta-copy > p:last-child {
  font-size: 16px;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 580px;
}

.btn-dark {
  background: var(--ink);
  color: white;
  white-space: nowrap;
}

.btn-dark:hover {
  background: #292c30;
}

footer {
  align-items: center;
  background: #060708;
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 150px;
  padding: 26px clamp(22px, 7vw, 112px);
}

.photo-credits {
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  grid-column: 1 / -1;
  letter-spacing: 0.015em;
  line-height: 1.5;
  margin: -18px 0 0;
  text-align: center;
}

.photo-credits a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-brand {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand img {
  height: 64px;
  object-fit: contain;
  width: 76px;
}

.footer-center {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  font-size: 12px;
  gap: 24px;
}

.footer-center span,
.social-links a {
  align-items: center;
  display: flex;
  gap: 7px;
}

.social-links {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 800;
  gap: 11px;
  justify-self: end;
}

.social-links a:hover {
  color: var(--yellow);
}

.floating-whatsapp-group {
  align-items: flex-end;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 24px;
  z-index: 40;
}

.floating-whatsapp {
  align-items: center;
  background: #23c763;
  border: 2px solid white;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  color: white;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: 58px;
}

.floating-whatsapp__icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.floating-whatsapp__icon img {
  display: block;
  filter: brightness(0) invert(1);
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.whatsapp-inline svg {
  color: white;
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.cta-whatsapp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whatsapp-inline {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  justify-content: center;
}

.admin-link {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  text-transform: uppercase;
}

.floating-whatsapp:hover {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .transfers {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

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

  .tour-large {
    grid-row: span 1;
  }

  .tour-wide {
    grid-column: span 1;
  }

  .cta-section {
    grid-template-columns: 140px 1fr;
  }

  .partners-section {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .cta-whatsapp-actions {
    grid-column: 2;
    justify-self: start;
  }

  .cta-section .btn {
    justify-self: start;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-center {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 75px;
    padding: 0 18px;
  }

  .brand img {
    height: 62px;
    width: 86px;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: 730px;
    padding: 138px 20px 72px;
  }

  .hero-slide {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 5, 7, 0.92), rgba(4, 5, 7, 0.35)), linear-gradient(0deg, rgba(4, 5, 7, 0.66), transparent 58%);
  }

  .hero h1 {
    font-size: clamp(51px, 16vw, 72px);
  }

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

  .btn {
    width: 100%;
  }

  .service-band {
    grid-template-columns: 1fr;
    padding: 15px 20px;
  }

  .service-band > div,
  .service-band > div:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0;
    min-height: 86px;
    padding: 0;
  }

  .service-band > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 20px;
  }

  .section h2,
  .cta-section h2 {
    font-size: 44px;
  }

  .route-item {
    gap: 12px;
    grid-template-columns: 28px minmax(0, 1fr) 42px;
    min-height: 92px;
  }

  .route-from,
  .route-item > svg,
  .route-item > .arrow {
    display: none;
  }

  .route-item:hover {
    padding-left: 8px;
  }

  .route-item strong {
    font-size: 18px;
    line-height: 1.18;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .route-action {
    grid-column: 3;
    justify-self: end;
  }

  .tours-heading {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .tour-grid {
    grid-auto-rows: 390px;
    grid-template-columns: 1fr;
  }

  .tour-info {
    padding: 24px;
  }

  .tour-action {
    max-height: 40px;
    opacity: 1;
    padding-top: 14px;
  }

  .cta-section {
    gap: 24px;
    grid-template-columns: 1fr;
    padding: 70px 20px;
  }

  .partners-section {
    padding: 82px 20px;
  }

  .partner-card {
    gap: 18px;
    grid-template-columns: 105px 1fr;
    min-height: 170px;
    padding: 22px 20px 22px 28px;
  }

  .partner-check {
    display: none;
  }

  .partner-card h3 {
    font-size: 36px;
  }

  .cta-logo {
    justify-content: flex-start;
  }

  .cta-logo img {
    max-height: 130px;
  }

  .cta-whatsapp-actions {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
  }

  .cta-section .btn {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 40px 20px 90px;
  }

  .social-links {
    align-items: flex-start;
    justify-self: start;
  }

  .floating-whatsapp-group {
    bottom: 18px;
    right: 18px;
  }

  .floating-whatsapp {
    height: 54px;
    width: 54px;
  }
}

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

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

  .hero-slide {
    transition: none !important;
    opacity: 0;
  }

  .hero-slide.is-active {
    opacity: 1;
  }
}
