:root {
  --ink: #1f2933;
  --muted: #5f6b76;
  --line: #d9e0e6;
  --panel: #ffffff;
  --soft: #f4f7f9;
  --brand: #184e5f;
  --brand-dark: #103746;
  --accent: #8a6421;
  --shadow: 0 14px 32px rgba(31, 41, 51, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 57px;
  background: #ffffff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: var(--brand);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(24, 78, 95, 0.35);
  outline-offset: 2px;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 0;
}

.logo {
  color: var(--brand-dark);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(16, 55, 70, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-dark);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.08);
}

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

.nav-toggle-line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: background 180ms ease;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.nav-toggle-input:checked + .nav-toggle .nav-toggle-line {
  background: transparent;
}

.nav-toggle-input:checked + .nav-toggle .nav-toggle-line::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle-input:checked + .nav-toggle .nav-toggle-line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 680px;
  padding: 96px max(20px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(90deg, rgba(10, 22, 29, 0.64) 0%, rgba(10, 22, 29, 0.34) 44%, rgba(10, 22, 29, 0.06) 100%),
    linear-gradient(180deg, rgba(182, 139, 63, 0.16), rgba(16, 55, 70, 0.10));
}

.hero::before,
.hero::after,
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.hero::before {
  background-image: url("assets/portada.png");
  background-position: 62% 28%;
  animation: heroFirstImage 40s infinite;
}

.hero::after {
  background-image: url("assets/run.webp");
  background-position: center 38%;
  opacity: 0;
  animation: heroSecondImage 40s infinite;
}

.hero-slide-jornalist {
  background-image: url("assets/jornalist.png");
  background-position: 53% center;
  opacity: 0;
  animation: heroThirdImage 40s infinite;
}

.hero-slide-lucy {
  background-image: url("assets/lucy11.png");
  background-position: center 38%;
  opacity: 0;
  animation: heroFourthImage 40s infinite;
}

.hero-copy {
  position: relative;
  max-width: 700px;
}

@keyframes heroFirstImage {
  0%,
  22% {
    opacity: 1;
  }

  27%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroSecondImage {
  0%,
  22% {
    opacity: 0;
  }

  27%,
  47% {
    opacity: 1;
  }

  52%,
  100% {
    opacity: 0;
  }
}

@keyframes heroThirdImage {
  0%,
  47% {
    opacity: 0;
  }

  52%,
  72% {
    opacity: 1;
  }

  77%,
  100% {
    opacity: 0;
  }
}

@keyframes heroFourthImage {
  0%,
  72% {
    opacity: 0;
  }

  77%,
  94% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero h1,
.page-hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1.05;
}

.hero p,
.page-hero p,
.section-heading p {
  color: var(--muted);
}

.hero h1 {
  color: #ffffff;
  max-width: 760px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.hero p {
  color: rgba(255, 255, 255, 0.94);
  max-width: 620px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.30);
}

.hero .eyebrow {
  color: #f6d58b;
}

.hero .button-secondary {
  border-color: #ffffff;
  background: var(--brand-dark);
  color: #ffffff;
}

.hero .button-secondary:hover {
  background: #184e5f;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero .button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.hero-button-primary {
  gap: 10px;
  border-color: #f6d58b;
  background: linear-gradient(135deg, #f6d58b, #b68b3f);
  color: #14222b;
}

.hero-button-primary:hover {
  background: linear-gradient(135deg, #ffe3a4, #c99b49);
}

.hero-button-primary span {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-button-secondary {
  backdrop-filter: blur(8px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: #ffffff;
  color: var(--brand);
}

.button-secondary:hover {
  background: var(--soft);
}

.section,
.page-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.intro-heading {
  position: relative;
  padding-top: 46px;
  padding-bottom: 34px;
  background: #ffffff;
}

.intro-heading::before {
  display: block;
  width: 72px;
  height: 3px;
  margin: 0 auto 22px;
  background: var(--accent);
  content: "";
}

.intro-heading .section-heading {
  margin-bottom: 0;
}

.intro-heading h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.12;
}

.intro-heading .eyebrow {
  margin-bottom: 10px;
}

.why-us-section,
.how-it-works-section {
  padding-top: 54px;
  padding-bottom: 58px;
}

.why-us-section .section-heading,
.how-it-works-section .section-heading {
  margin-bottom: 34px;
}

.why-us-section h2,
.how-it-works-section h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: 0.04em;
}

.why-us-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-us-grid article,
.process-grid article {
  min-height: 150px;
  padding: 24px;
  border-top: 3px solid var(--accent);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.07);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid rgba(182, 139, 63, 0.42);
  border-radius: 50%;
  color: var(--brand-dark);
}

.why-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.why-us-grid h3,
.process-grid h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.05rem;
  line-height: 1.3;
}

.page-hero {
  max-width: 860px;
  text-align: center;
}

.page-hero p:last-child {
  margin-right: auto;
  margin-left: auto;
  max-width: 720px;
}

.muted {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1120px) / 2));
  padding-left: max(20px, calc((100% - 1120px) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mobile-scroll-hint {
  display: none;
}

main > .section .centered-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: 0.04em;
}

.service-grid,
.destination-preview,
.destination-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.destination-preview article,
.destination-card,
.package-card,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.07);
}

.info-card {
  padding: 24px;
}

.info-card h3,
.destination-preview h3,
.destination-card h2,
.package-card h2,
.contact-panel h2,
.reference-list h2 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  line-height: 1.2;
}

.info-card p,
.destination-preview p,
.destination-card p,
.package-card p,
.contact-panel p,
.reference-list p {
  color: var(--muted);
}

.destination-preview article,
.destination-card,
.package-card {
  overflow: hidden;
}

.destination-preview article.no-border,
.destination-card.no-border {
  border: 0;
}

.destination-preview img,
.destination-card img,
.package-card img {
  width: 100%;
  height: 190px;
  object-fit: var(--media-fit, cover);
  object-position: var(--media-pos, center);
  background: var(--soft);
}

.destination-preview img {
  transition: transform 260ms ease;
}

.destination-preview article:hover img {
  transform: scale(1.04);
}

.destination-preview h3,
.destination-preview p,
.destination-preview .card-link,
.destination-card h2,
.destination-card p,
.package-card h2,
.package-card p,
.package-card ul {
  margin-right: 20px;
  margin-left: 20px;
}

.destination-preview h3,
.destination-card h2,
.package-card h2 {
  margin-top: 20px;
}

.card-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.destination-official-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.destination-official-link:focus-visible {
  outline: 3px solid rgba(24, 78, 95, 0.35);
  outline-offset: 4px;
}

.package-contact-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.package-contact-link:focus-visible {
  outline: 3px solid rgba(24, 78, 95, 0.35);
  outline-offset: 4px;
}

.refuel-section {
  padding-top: 58px;
  padding-bottom: 64px;
}

.refuel-section .section-heading {
  margin-bottom: 34px;
}

.refuel-section h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: 0.04em;
}

.refuel-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.refuel-feature,
.refuel-note {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.07);
}

.refuel-feature {
  display: flex;
  flex-direction: column;
}

.refuel-feature img,
.refuel-note img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 4px;
  object-position: var(--media-pos, center);
}

.refuel-feature span,
.refuel-note span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.refuel-feature h3,
.refuel-note h3 {
  margin: 12px 0 10px;
  color: var(--brand-dark);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.refuel-feature h3,
.refuel-note h3 {
  font-size: 1.2rem;
}

.refuel-feature p,
.refuel-note p {
  margin: 0;
  color: var(--muted);
}

.packages-section {
  padding-top: 58px;
  padding-bottom: 64px;
}

.packages-section .section-heading {
  margin-bottom: 34px;
}

.packages-section h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: 0.04em;
}

.home-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-package-grid .package-card {
  border-top: 3px solid var(--accent);
}

.home-package-grid .package-card img {
  height: 160px;
}

.home-package-grid .package-card h2 {
  font-size: 1.15rem;
}

.home-package-grid .package-card ul {
  display: grid;
  gap: 7px;
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-package-grid .package-card li::marker {
  color: var(--accent);
}

.home-package-grid .price {
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-size: 1.08rem;
}

.testimonials {
  padding-top: 24px;
  padding-bottom: 72px;
}

.testimonial-card {
  position: relative;
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid rgba(182, 139, 63, 0.34);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
}

.testimonial-card::before {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 2.3rem;
  line-height: 1;
  content: "\201C";
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.testimonial-card h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1rem;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding-top: 24px;
  padding-bottom: 72px;
  text-align: center;
}

.final-cta-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 28px;
  border: 1px solid rgba(246, 213, 139, 0.72);
  border-radius: 6px;
  background: var(--brand-dark);
  color: #ffffff;
}

.final-cta-box h2 {
  max-width: 780px;
  margin: 0 auto 26px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.final-cta-box .button {
  border-color: #f6d58b;
  background: linear-gradient(135deg, #f6d58b, #b68b3f);
  color: #14222b;
}

.final-cta-box .button:hover {
  background: linear-gradient(135deg, #ffe3a4, #c99b49);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 38px;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: var(--media-pos, center);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.price {
  color: var(--brand-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.package-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.featured {
  border-top: 4px solid var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #b9c4cc;
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.contact-panel {
  padding: 24px;
}

.reference-list {
  max-width: 860px;
  margin: 0 auto;
}

.reference-list p {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(20px, calc((100% - 1120px) / 2));
  background: var(--brand-dark);
  color: #ffffff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 860px) {
  body {
    padding-top: 65px;
  }

  .site-header {
    z-index: 1000;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 9;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(16, 55, 70, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 42px rgba(16, 55, 70, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-toggle-input:checked ~ .nav-links {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: none;
    background: var(--soft);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid,
  .destination-preview,
  .destination-grid,
  .package-grid,
  .testimonial-grid,
  .why-us-grid,
  .process-grid,
  .home-package-grid {
    grid-template-columns: 1fr 1fr;
  }

  .refuel-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero-copy {
    max-width: 560px;
  }

  .page-hero {
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .final-cta-box {
    padding: 34px 24px;
  }

  .refuel-feature h3,
  .refuel-note h3 {
    line-height: 1.14;
    letter-spacing: -0.015em;
  }

  .refuel-feature p,
  .refuel-note p,
  .testimonial-card p {
    line-height: 1.38;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 560px) {
  .navbar,
  .section,
  .page-hero {
    width: min(100% - 28px, 1120px);
  }

  .section,
  .page-hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .mobile-scroll-hint {
    display: block;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .nav-links {
    width: 100%;
  }

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

  .destination-grid,
  .package-grid,
  .home-package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .destination-preview {
    display: flex;
    position: relative;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    padding-left: 2px;
    scroll-padding-left: 2px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .destination-preview::after {
    position: sticky;
    right: 0;
    width: 28px;
    min-width: 28px;
    background: linear-gradient(90deg, rgba(244, 247, 249, 0), rgba(244, 247, 249, 0.96));
    content: "";
    pointer-events: none;
  }

  .refuel-layout,
  .testimonial-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    padding-left: 2px;
    scroll-padding-left: 2px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .destination-preview article {
    flex: 0 0 72%;
    min-height: 100%;
    scroll-snap-align: start;
  }

  .refuel-feature,
  .refuel-note,
  .testimonial-card {
    min-height: 100%;
    scroll-snap-align: start;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero {
    align-items: flex-start;
    min-height: 560px;
    padding: 28px 14px 62px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 130px;
    gap: 8px;
  }

  .hero .button {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
    box-shadow: none;
  }

  .hero-button-primary {
    border-color: #f6d58b;
    background: #f6d58b;
    color: #14222b;
  }

  .hero-button-secondary {
    border-color: #ffffff;
    background: #103746;
    color: #ffffff;
  }

  .hero::before {
    background-position: 70% top !important;
  }

  .hero::after {
    background-position: 60% top !important;
  }

  .hero-slide-jornalist {
    background-position: 58% top !important;
  }

  .hero-slide-lucy {
    background-position: center top !important;
  }

  .two-column img {
    height: 280px;
    object-position: var(--media-pos-mobile, var(--media-pos, center 40%));
  }

  .destination-preview img,
  .destination-card img,
  .package-card img,
  .refuel-feature img,
  .refuel-note img {
    height: 118px;
    object-position: var(--media-pos-mobile, var(--media-pos, center));
  }

  .contact-form,
  .contact-panel,
  .info-card,
  .refuel-feature,
  .refuel-note,
  .testimonial-card,
  .why-us-grid article,
  .process-grid article {
    padding: 20px;
  }

  .why-us-grid article {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    text-align: center;
  }

  .why-us-grid h3 {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .why-us-grid .why-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .why-us-grid .why-icon svg {
    width: 20px;
    height: 20px;
  }

  .process-grid article {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    text-align: center;
  }

  .process-grid h3 {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .process-grid .why-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .process-grid .why-icon svg {
    width: 20px;
    height: 20px;
  }

  .destination-preview h3,
  .destination-preview p,
  .destination-preview .card-link,
  .destination-card h2,
  .destination-card p,
  .package-card h2,
  .package-card p,
  .package-card ul {
    margin-right: 14px;
    margin-left: 14px;
  }

  .destination-preview h3,
  .destination-card h2,
  .package-card h2 {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 0.94rem;
  }

  .destination-preview p,
  .destination-card p,
  .package-card p,
  .refuel-feature p,
  .refuel-note p,
  .testimonial-card p,
  .page-hero p:last-child {
    overflow: visible;
  }

  .home-package-grid .package-card ul,
  .package-grid .package-card ul {
    display: none;
  }

  .destination-preview article,
  .destination-card,
  .package-card {
    min-height: 100%;
  }

  .destination-preview article,
  .package-card {
    display: flex;
    flex-direction: column;
  }

  .destination-preview p,
  .destination-card p,
  .package-card p:not(.price) {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.32;
    max-width: 22ch;
    text-wrap: balance;
  }

  .home-package-grid .price,
  .package-card .price {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .refuel-feature,
  .refuel-note,
  .testimonial-card {
    min-height: 0;
  }

  .refuel-layout {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    padding-left: 0;
    scroll-padding-left: 0;
    scroll-snap-type: none;
  }

  .refuel-feature,
  .refuel-note {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px;
    overflow: hidden;
  }

  .refuel-feature {
    grid-column: 1 / -1;
  }

  .refuel-feature h3,
  .refuel-note h3 {
    display: block;
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.1;
    letter-spacing: -0.015em;
    max-width: 13ch;
    margin-right: 0;
    margin-left: 0;
    text-wrap: balance;
  }

  .refuel-feature h3 {
    max-width: none;
    text-wrap: pretty;
  }

  .refuel-feature p,
  .refuel-note p {
    font-size: 0.76rem;
    line-height: 1.18;
    letter-spacing: -0.01em;
    max-width: 27ch;
    margin-right: 0;
    margin-left: 0;
    text-wrap: pretty;
  }

  .refuel-feature img,
  .refuel-note img {
    height: 120px;
    margin-bottom: 10px;
  }

  .refuel-feature img {
    object-position: center 48%;
  }

  .refuel-feature span,
  .refuel-note span {
    margin-bottom: 5px;
    font-size: 0.66rem;
  }

  .testimonial-card {
    padding: 10px 11px;
  }

  .testimonial-card::before {
    margin-bottom: 6px;
    font-size: 1.6rem;
  }

  .testimonial-card p {
    margin-bottom: 6px;
    font-size: 0.64rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
    max-width: 16ch;
    margin-right: 0;
    margin-left: 0;
    text-wrap: pretty;
  }

  .testimonial-card h3 {
    font-size: 0.7rem;
    line-height: 1.08;
  }

  .testimonial-card span {
    font-size: 0.6rem;
    line-height: 1.08;
  }

  .refuel-feature,
  .refuel-note,
  .testimonial-card {
    text-align: left;
  }

  .testimonial-grid {
    grid-auto-columns: 42%;
    gap: 8px;
    padding-left: 0;
  }

  .card-link {
    margin-bottom: 16px;
    margin-top: auto;
  }

  .reference-list p {
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-top: 22px;
    padding-bottom: 22px;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 420px) {
  .logo {
    max-width: calc(100% - 64px);
    font-size: 1rem;
  }

  .hero h1,
  .page-hero h1,
  .section-heading h2 {
    line-height: 1.1;
  }

  .muted {
    padding-right: 14px;
    padding-left: 14px;
  }

  .final-cta-box {
    padding: 30px 18px;
  }

  .destination-grid,
  .package-grid,
  .home-package-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .destination-preview {
    gap: 10px;
  }

  .mobile-scroll-hint {
    font-size: 0.68rem;
  }

  .destination-preview article {
    flex-basis: 78%;
  }

  .destination-preview img,
  .destination-card img,
  .package-card img {
    height: 104px;
  }

  .destination-preview h3,
  .destination-card h2,
  .package-card h2 {
    font-size: 0.88rem;
    line-height: 1.15;
    max-width: 16ch;
    text-wrap: balance;
  }

  .destination-preview p,
  .destination-card p,
  .package-card p:not(.price) {
    font-size: 0.84rem;
    line-height: 1.28;
    max-width: 20ch;
  }

  .home-package-grid .price,
  .package-card .price {
    font-size: 0.9rem;
  }

  .refuel-layout {
    grid-template-columns: 1fr;
  }

  .refuel-feature,
  .refuel-note {
    padding: 14px;
  }

  .refuel-feature img,
  .refuel-note img {
    height: 108px;
  }

  .testimonial-grid {
    grid-auto-columns: 50%;
  }
}
