:root {
  --color-bg: #f5faed;
  --color-surface: #ffffff;
  --color-surface-alt: #eef5df;
  --color-text: #22310f;
  --color-muted: #4a5c33;
  --color-primary: #93be19;
  --color-primary-strong: #415a0e;
  --color-secondary: #2ca6c7;
  --color-accent: #074882;
  --color-dark: #415a0e;
  --shadow-soft: 0 10px 30px rgba(7, 72, 130, 0.18);
  --shadow-card: 0 8px 20px rgba(65, 90, 14, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.section-subtitle {
  margin: 0.9rem 0 2rem;
  max-width: 60ch;
  color: var(--color-muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 72, 130, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f1fbff;
}

.logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.brand-name {
  font-size: 1.03rem;
  font-weight: 600;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: 72px 0 auto 0;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  background: rgba(7, 72, 130, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav a {
  color: #dff4ff;
  font-weight: 500;
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.lang-switch {
  margin-top: 0.35rem;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.25rem;
  width: fit-content;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #e5f7ff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

.hero {
  position: relative;
  min-height: clamp(520px, 88vh, 760px);
  display: grid;
  align-items: center;
  background: url("assets/hero.jpg")
    center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  color: #fff;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #d9f4fb;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0.7rem 0 0;
  max-width: 18ch;
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.1;
}

.hero-text {
  margin: 1rem 0 0;
  max-width: 55ch;
  color: #e5f7ff;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--color-primary-strong);
  box-shadow: 0 12px 28px rgba(65, 90, 14, 0.35);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero-tours-btn {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.hero-tours-btn:hover,
.hero-tours-btn:focus-visible {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 12px 24px rgba(7, 72, 130, 0.25);
}

.hero-tours-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.tours-cta-wrap {
  margin-top: 1.35rem;
  text-align: center;
}

.tours-cta {
  min-width: 180px;
  padding: 0.85rem 1.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tours-cta::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.25s ease;
}

.tours-cta:hover::after,
.tours-cta:focus-visible::after {
  transform: translateX(4px);
}

.tours-cta:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.cards,
.transport-grid {
  display: grid;
  gap: 1rem;
}

.transport {
  position: relative;
  background: #f3f8e7;
  overflow: hidden;
  border-top: 1px solid rgba(44, 166, 199, 0.2);
  border-bottom: 1px solid rgba(44, 166, 199, 0.2);
}

.transport::before {
  content: "";
  position: absolute;
  inset: -15% 0 -15% 0;
  background: url("assets/transporte-section.jpg") center / cover no-repeat;
  opacity: 0.14;
  filter: blur(8px) saturate(1.05);
  transform: scale(1.05);
}

.transport-wrap {
  display: grid;
  gap: 1.8rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.transport-copy {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(44, 166, 199, 0.22);
  box-shadow: 0 16px 36px rgba(7, 72, 130, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.transport-copy:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(7, 72, 130, 0.16);
}

.transport-copy::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 14px;
  width: 4px;
  border-radius: 999px;
  background: var(--color-secondary);
}

.transport-copy > * {
  position: relative;
  z-index: 1;
}

.transport-copy .section-subtitle {
  margin-bottom: 1.5rem;
}

.transport-label {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-secondary);
  font-weight: 700;
}

.transport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
}

.transport-tag {
  padding: 0.5rem 0.9rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(7, 72, 130, 0.18);
  box-shadow: 0 6px 14px rgba(7, 72, 130, 0.08);
  font-weight: 600;
  font-size: 0.9rem;
  color: #074882;
  letter-spacing: 0.01em;
}

.transport-actions {
  margin-top: 1.2rem;
}

.transport-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 26px rgba(7, 72, 130, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.transport-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 30px rgba(7, 72, 130, 0.28);
  opacity: 0.95;
}

.card,
.transport-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(44, 166, 199, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover,
.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(7, 72, 130, 0.2);
}

.card h3,
.transport-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p,
.transport-card p {
  margin: 0;
  color: var(--color-muted);
}

.transport-card {
  position: relative;
  padding-top: 3.4rem;
  backdrop-filter: blur(6px);
  border-color: rgba(44, 166, 199, 0.18);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

.transport-card:hover {
  transform: translateY(-8px);
  border-color: rgba(44, 166, 199, 0.4);
  box-shadow: 0 18px 36px rgba(7, 72, 130, 0.22);
}

.transport-grid .transport-card:nth-child(1) {
  transition-delay: 0.04s;
}

.transport-grid .transport-card:nth-child(2) {
  transition-delay: 0.08s;
}

.transport-grid .transport-card:nth-child(3) {
  transition-delay: 0.12s;
}

.transport-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(44, 166, 199, 0.35);
  box-shadow: 0 8px 16px rgba(7, 72, 130, 0.14);
}

.transport-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-secondary);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.transport-card:hover .transport-icon svg {
  transform: rotate(-8deg) scale(1.05);
}

.transport-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 18px 40px rgba(7, 72, 130, 0.2);
  border: 1px solid rgba(44, 166, 199, 0.35);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.transport-media:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(7, 72, 130, 0.28);
}

.transport-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-lg) - 14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 1;
  pointer-events: none;
}

.transport-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.transport-media:hover .transport-image {
  transform: scale(1.04);
}

.transport-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 72, 130, 0.9);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: transportFloat 6s ease-in-out infinite;
}

.transport-cta {
  position: relative;
  overflow: hidden;
}

.transport-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.transport-cta:hover::after {
  opacity: 1;
}

@keyframes transportFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-width: 2px;
  display: grid;
  gap: 0.75rem;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--tour-accent, var(--color-secondary));
}

.tour-card--adventure {
  --tour-accent: var(--color-accent);
}

.tour-card--nature {
  --tour-accent: var(--color-primary);
}

.tour-card--culture {
  --tour-accent: var(--color-secondary);
}

.tour-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(44, 166, 199, 0.35);
  box-shadow: 0 8px 16px rgba(7, 72, 130, 0.14);
}

.tour-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--tour-accent, var(--color-secondary));
}

.tour-media {
  margin: -1.25rem -1.25rem 0;
  border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(44, 166, 199, 0.28);
}

.tour-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.tour-card:hover .tour-image {
  transform: scale(1.06);
}

.tour-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.tour-list {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.tour-list li {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: var(--color-surface-alt);
  border: 1px solid rgba(65, 90, 14, 0.16);
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.92rem;
}

.tour-link {
  margin-top: 0.15rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  background: var(--tour-accent, var(--color-secondary));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.tour-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.parallax-gallery {
  padding: 0;
  margin: 0;
}

.parallax-item {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.parallax-item::before {
  content: "";
  position: absolute;
  inset: -40px 0;
  background: var(--parallax-bg) center / cover no-repeat;
  transform: translateY(var(--parallax-offset, 0px));
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 72, 130, 0.4);
}

.parallax-content {
  position: relative;
  z-index: 1;
  color: #f5fcff;
  text-align: center;
  padding: 1.2rem;
}

.parallax-content h3 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.6rem);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.42);
}

.parallax-content p {
  margin: 0.7rem auto 0;
  max-width: 45ch;
  color: #e9f7ff;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  font-weight: 500;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

.about {
  position: relative;
  background: #ffffff;
  border-top: 1px solid rgba(7, 72, 130, 0.1);
  border-bottom: 1px solid rgba(7, 72, 130, 0.1);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(7, 72, 130, 0.05), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(147, 190, 25, 0.08), transparent 40%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.about-head {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
}

.about-label {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  font-weight: 700;
}

.about-head p {
  color: var(--color-muted);
  margin: 0.6rem 0 0;
}

.about-stats {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(7, 72, 130, 0.12);
  border-bottom: 1px solid rgba(7, 72, 130, 0.12);
  max-width: 980px;
  margin: 1.8rem auto 0;
  grid-template-columns: 1fr;
}

.stat {
  text-align: center;
  padding: 2.1rem 1.2rem;
  display: grid;
  gap: 0.8rem;
  align-items: center;
  position: relative;
}

.stat:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(7, 72, 130, 0.12);
  display: none;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #93be19;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  display: block;
  font-weight: 800;
  font-size: 2.4rem;
  color: #2ca6c7;
}

.stat-text {
  color: var(--color-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

.contact {
  padding: 4.5rem 0;
  background: #f2f7e6;
}

.contact-wrap {
  display: grid;
  gap: 1.6rem;
  align-items: stretch;
}

.contact-panel {
  background: #415a0e;
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(7, 72, 130, 0.18);
}

.contact-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d9edc0;
  font-weight: 700;
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.contact-email {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: #f1f7dd;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: #93be19;
  color: #ffffff;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 12px 24px rgba(7, 72, 130, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(7, 72, 130, 0.26);
}

.contact-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-top: auto;
  filter: brightness(0) invert(1);
}

.contact-form-card {
  background: #0a1b3a;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(7, 72, 130, 0.18);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.4rem;
  color: #dfe9ff;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(147, 190, 25, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #93be19;
  box-shadow: 0 0 0 3px rgba(147, 190, 25, 0.25);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.contact-submit {
  margin-top: 0.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: #2ca6c7;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(7, 72, 130, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(7, 72, 130, 0.26);
}

.footer {
  background: var(--color-accent);
  color: #d6ecf7;
  padding: 1.2rem 0;
}

.footer-wrap {
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .cards,
  .transport-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transport-wrap {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .transport-media,
  .transport-image {
    min-height: 420px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1.6rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat:not(:first-child)::before {
    display: block;
  }

  .cta-wrap {
    padding: 2.5rem;
  }

  .contact-wrap {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border-top: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
  }

  .nav a {
    color: #e9f9ff;
    padding: 0.5rem 0.8rem;
  }

  .lang-switch {
    margin-top: 0;
    margin-left: 0.4rem;
  }

  .hero-content {
    padding: 5.5rem 0 5rem;
  }

  .cards,
  .transport-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .transport-wrap {
    grid-template-columns: 1.1fr 0.9fr;
  }

  #form-status {
    margin: 0.85rem 0 0;
    font-weight: 600;
    font-size: 0.92rem;
  }

  #form-status.is-ok {
    color: #2a6e06;
  }

  #form-status.is-error {
    color: #b3261e;
  }

  .about-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-wrap {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .reveal,
  .btn,
  .card,
  .transport-card,
  .menu-toggle span,
  .nav {
    transition: none !important;
  }

  .parallax-item::before {
    transform: none !important;
  }

  .transport-badge {
    animation: none;
  }

  .transport-card,
  .transport-media,
  .transport-copy,
  .transport-cta {
    transition: none;
  }

  .transport-icon svg,
  .transport-image {
    transition: none;
  }
}
