:root {
  /* Paleta alineada a https://www.taoscab.com/ */
  --bg: #000000;
  --bg-elevated: #292929;
  --bg-soft: #303030;
  --surface-light: #f2f2f2;
  --surface-warm: #e9e8e6;
  --surface-white: #ffffff;
  --text: #ffffff;
  --text-muted: #f1f1f1;
  --ink: #000000;
  --ink-muted: #444444;
  --gold: #c6a34b;
  --gold-soft: #d4b56a;
  --gold-deep: #a8873a;
  --line: rgba(198, 163, 75, 0.35);
  --line-dark: rgba(0, 0, 0, 0.08);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  --font-display: "Inter", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --header-h: 4.5rem;
  --max: 1120px;
  --whatsapp: #25d366;
  --fab-green: #86cd91;
  --page-pad: clamp(1rem, 3vw, 1.5rem);
  --section-y: clamp(3.5rem, 8vw, 5.5rem);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --radius-pill: 2rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--safe-top) + 0.75rem);
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open,
body.is-nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

/* Blur on a pseudo so it does NOT create a containing block for the fixed mobile nav */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.92);
}

.header-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  padding-inline: var(--page-pad);
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  height: 2.15rem;
  width: auto;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  padding: 0;
  justify-content: center;
  align-items: center;
  justify-self: end;
  grid-column: 3;
  z-index: 2;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 5px));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 5px));
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav {
  display: contents;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  grid-column: 2;
}

.nav-list > li > a,
.submenu-trigger,
.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #f1f1f1;
  transition: color 0.25s ease;
  padding: 0.35rem 0;
}

.nav-list > li > a:hover,
.submenu-trigger:hover,
.footer-nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translate(-50%, 0.35rem);
  min-width: 15.5rem;
  padding: 0.55rem 0;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease;
}

.submenu button:hover {
  color: var(--gold);
  background: rgba(198, 163, 75, 0.08);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-inner > .site-nav .nav-social,
.site-nav .nav-social {
  grid-column: 3;
  justify-self: end;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-social a:hover {
  opacity: 1;
  color: var(--gold-soft);
  transform: scale(1.08);
}

.nav-social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

/* —— Hero & sections —— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.experiences-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.experiences-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay,
.experiences-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-content,
.experiences-content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--safe-top) + 3.5rem) var(--page-pad) 4.5rem;
  animation: riseIn 1s ease both;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  width: min(18rem, 70vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.hero h1,
.section-intro h2,
.about-copy h2,
.experiences-content h2,
.areas h3,
.modal-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 18ch;
  color: #f1f1f1;
  margin-inline: auto;
}

.hero p,
.section-intro p,
.experiences-content p,
.about-copy p,
.fleet-body p,
.service-body p,
.faq-item p,
.modal-body > p,
.modal-lead,
.fleet-card-body p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 42rem;
}

.hero p,
.experiences-content p {
  color: #f1f1f1;
  margin-inline: auto;
  max-width: 36rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border: 0;
  border-radius: var(--radius-pill);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  touch-action: manipulation;
}

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

.btn:focus-visible,
.text-link:focus-visible,
.filter-chip:focus-visible,
.nav-social a:focus-visible,
.submenu button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-gold {
  background: var(--gold);
  color: #ffffff;
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: #ffffff;
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: #ffffff;
}

.text-link {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
  padding: 0;
}

.text-link:hover {
  border-bottom-color: var(--gold);
}

.section {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

/* Bandas a ancho completo como en taoscab.com */
.fleet,
.services,
.about,
.faqs {
  max-width: none;
  width: 100%;
  padding-inline: max(var(--page-pad), calc((100% - var(--max)) / 2));
}

.fleet {
  background: var(--surface-light);
  color: var(--ink);
}

.services {
  background: var(--surface-warm);
  color: var(--ink);
}

.about,
.faqs {
  background: var(--surface-white);
  color: var(--ink);
}

.fleet .section-intro h2,
.fleet .section-intro p,
.services .section-intro h2,
.services .section-intro p,
.about .about-copy h2,
.about .about-copy p,
.faqs .section-intro h2,
.faqs .section-intro p {
  color: var(--ink);
}

.fleet .section-intro p,
.services .section-intro p,
.about .about-copy p,
.faqs .section-intro p,
.fleet .fleet-body p,
.services .service-body p,
.faqs .faq-item p {
  color: var(--ink-muted);
}

.fleet .fleet-body h3,
.services .service-body h3,
.about .areas h3 {
  color: var(--ink);
}

.section-intro {
  margin-bottom: 2.5rem;
}

.section-intro h2,
.about-copy h2,
.experiences-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.fleet-grid,
.services-grid {
  display: grid;
  gap: 1.75rem;
}

.fleet-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Media zoom — efecto general al interactuar con imágenes */
.media-zoom,
.fleet-media,
.service-media,
.fleet-card-media,
.modal-media,
.experiences-bg {
  overflow: hidden;
}

.media-zoom img,
.fleet-media img,
.service-media img,
.fleet-card-media img,
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fleet-item:hover .fleet-media img,
.service-item:hover .service-media img,
.fleet-card:hover .fleet-card-media img,
.modal-media:hover img,
.media-zoom:hover img {
  transform: scale(1.08) translate3d(-1%, -0.5%, 0);
}

.fleet-item,
.service-item,
.fleet-card {
  background: var(--surface-white);
  border: 1px solid var(--line-dark);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.fleet-card {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.fleet-card .fleet-card-body p,
.fleet-card .fleet-card-tag {
  color: var(--text-muted);
}

.fleet-card .fleet-card-body h3 {
  color: var(--text);
}

.fleet-item:hover,
.service-item:hover,
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.fleet-media,
.service-media {
  aspect-ratio: 16 / 11;
  background: #111;
}

.fleet-body,
.service-body {
  padding: 1.4rem 1.25rem 1.6rem;
}

.fleet-body h3,
.service-body h3,
.fleet-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.experiences {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 70vh;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.experiences:hover .experiences-bg img {
  transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  animation-play-state: paused;
}

.experiences-bg img {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.experiences-content {
  padding: 6rem var(--page-pad);
  justify-self: center;
  width: 100%;
}

.experiences-content h2 {
  max-width: 18ch;
  margin-inline: auto;
  color: #fff;
}

.experiences-content .btn {
  margin-top: 0.5rem;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.areas {
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line-dark);
}

.areas h3 {
  font-size: 1.5rem;
  color: var(--ink);
}

.areas-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
}

.areas-columns li {
  padding: 0.35rem 0;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line-dark);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line-dark);
  background: var(--surface-light);
  padding: 0 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.2;
}

.faq-item[open] summary::after {
  content: "–";
}

.site-footer {
  margin-top: 0;
  padding: 4rem 0 calc(6.5rem + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg);
  color: var(--text);
}

.footer-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--page-pad);
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.footer-tagline,
.footer-city,
.footer-copy {
  color: var(--text-muted);
  margin: 0;
}

.footer-contact,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-contact a {
  color: var(--gold-soft);
}

.footer-inner .nav-social {
  grid-column: auto;
  justify-self: start;
  flex-wrap: wrap;
}

/* —— Modals —— */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.78);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(90vh, 840px);
  overflow: auto;
  background: linear-gradient(180deg, #17171a, #101012);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: riseIn 0.35s ease;
}

.modal-dialog-wide {
  width: min(100%, 920px);
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 860px);
  padding: 0;
}

.modal-service .modal-dialog-wide {
  overflow: hidden;
}

.modal-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal-service .modal-media {
  flex: none;
  aspect-ratio: auto;
  height: clamp(140px, 22vh, 200px);
  max-height: 200px;
}

.modal-service .modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
}

.modal-service .modal-media:hover img {
  transform: scale(1.06);
}

.modal-service .service-modal-body {
  overflow: visible;
  padding: 1.25rem 1.5rem 1.5rem;
}

.modal-service .modal-body h2 {
  margin-top: 0.15rem;
  margin-bottom: 0.75rem;
}

.modal-cta-bar {
  flex: 0 0 auto;
  padding: 0.85rem 1.5rem 1.15rem;
  border-top: 1px solid var(--line);
  background: rgba(12, 12, 14, 0.98);
  display: flex;
  justify-content: center;
  z-index: 2;
}

.service-modal-tagline {
  color: var(--gold-soft);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  max-width: none;
}

.service-block {
  margin: 1.5rem 0;
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.85rem;
  color: var(--text);
}

.service-block h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: var(--gold-soft);
}

.service-pillars,
.service-practical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.service-pillar,
.service-practical-item,
.service-extra {
  border: 1px solid rgba(198, 163, 75, 0.18);
  background: rgba(20, 20, 22, 0.65);
  padding: 0.9rem 1rem;
}

.service-pillar p,
.service-practical-item p,
.service-extra p,
#service-modal-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: none;
}

#service-modal-intro p + p {
  margin-top: 0.75rem;
}

.service-extra + .service-extra {
  margin-top: 0.75rem;
}

.service-closing {
  margin: 1.25rem 0 0.5rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  max-width: none;
}

.service-faqs {
  display: grid;
  gap: 0.55rem;
}

.service-faq {
  border: 1px solid var(--line);
  padding: 0 0.9rem;
  background: rgba(16, 16, 18, 0.8);
}

.service-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

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

.service-faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: var(--font-body);
}

.service-faq[open] summary::after {
  content: "–";
}

.service-faq p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  max-width: none;
}

@media (max-width: 720px) {
  .service-pillars,
  .service-practical {
    grid-template-columns: 1fr;
  }
}

.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
}

.modal-media {
  aspect-ratio: 16 / 9;
  background: #0a0a0b;
}

.modal-service .modal-media {
  aspect-ratio: auto;
}

.modal:not([hidden]) .modal-media img {
  animation: mediaReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-service:not([hidden]) .modal-media img {
  animation: mediaRevealCompact 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.modal-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  padding-right: 2rem;
}

.modal-highlights {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.modal-highlights li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
}

.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-chip {
  min-height: 2.25rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: #f1f1f1;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover {
  color: #fff;
  border-color: var(--gold);
}

.filter-chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.fleet-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fleet-card[hidden] {
  display: none !important;
}

.fleet-card-media {
  aspect-ratio: 16 / 11;
  background: #111;
}

.fleet-card-body {
  padding: 1rem 1rem 1.2rem;
}

.fleet-card-tag {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.fleet-card-body h3 {
  font-size: 1.35rem;
}

.fleet-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
}

/* —— Contact FAB (Chaty-like) —— */
.contact-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, calc(1rem + var(--safe-bottom)));
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.contact-fab-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.7rem 1.1rem 0.7rem 0.85rem;
  background: var(--fab-green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  animation: waggle 2.8s ease-in-out infinite;
}

.contact-fab.is-open .contact-fab-toggle {
  animation: none;
}

.fab-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #dd0000;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fab-icon {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
}

.fab-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.fab-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-fab-channels {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  animation: riseIn 0.25s ease;
}

.contact-fab-channels[hidden] {
  display: none !important;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.contact-channel:hover {
  transform: translateX(-3px);
}

.channel-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
}

.channel-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: #fff;
}

.channel-label {
  font-size: 0.85rem;
  font-weight: 600;
  padding-right: 0.25rem;
}

.contact-fab-close {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
}

.contact-fab-close:hover {
  color: var(--gold-soft);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes waggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-8deg);
  }
  20% {
    transform: rotate(8deg);
  }
  30% {
    transform: rotate(-6deg);
  }
  40% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

@keyframes mediaReveal {
  from {
    transform: scale(1.12) translate3d(0, 2%, 0);
    opacity: 0.65;
  }
  to {
    transform: scale(1.01);
    opacity: 1;
  }
}

@keyframes mediaRevealCompact {
  from {
    transform: scale(1.08);
    opacity: 0.7;
  }
  to {
    transform: scale(1.02);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .experiences-bg img,
  .contact-fab-toggle,
  .modal-dialog,
  .modal-backdrop,
  .contact-fab-channels,
  .modal:not([hidden]) .modal-media img {
    animation: none !important;
  }

  .media-zoom img,
  .fleet-media img,
  .service-media img,
  .fleet-card-media img,
  .modal-media img,
  .experiences-bg img {
    transition: none !important;
    transform: none !important;
  }

  .fleet-item:hover,
  .service-item:hover,
  .fleet-card:hover {
    transform: none;
  }
}

/* —— Large tablets / small laptops —— */
@media (max-width: 1100px) {
  .nav-list {
    gap: 0.25rem 0.75rem;
  }

  .nav-list > li > a,
  .submenu-trigger {
    font-size: 0.8rem;
  }

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

/* —— Tablet / mobile nav —— */
@media (max-width: 960px) {
  :root {
    --header-h: 4rem;
  }

  .fleet-grid,
  .services-grid,
  .about-layout,
  .fleet-modal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + var(--safe-top));
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.25rem var(--page-pad) calc(1.5rem + var(--safe-bottom));
    background: rgba(0, 0, 0, 0.985);
    border-bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 90;
    grid-column: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-list > li > a,
  .submenu-trigger {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.85rem 0.15rem;
    font-size: 1rem;
    letter-spacing: 0;
    min-height: 2.75rem;
  }

  .submenu,
  .has-submenu.is-open .submenu {
    display: none !important;
  }

  .nav-social {
    justify-self: start;
    gap: 0.85rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .nav-social a {
    width: 2.6rem;
    height: 2.6rem;
  }

  .nav-social svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }

  .hero-brand {
    width: min(14rem, 68vw);
  }

  .experiences {
    min-height: 56vh;
  }

  .experiences-content {
    padding: 4.5rem var(--page-pad);
  }

  .fleet-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.45rem;
    padding-bottom: 0.35rem;
    margin-inline: -0.15rem;
    padding-inline: 0.15rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-height: 2.5rem;
  }

  .faq-item summary {
    font-size: 1.15rem;
    padding: 1rem 0;
  }

  .faq-item {
    padding: 0 1rem;
  }
}

/* —— Compact phones / small tablets —— */
@media (max-width: 720px) {
  .service-pillars,
  .service-practical,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 2rem;
  }

  .areas-columns {
    gap: 0.35rem 1.25rem;
  }

  .modal-dialog-wide {
    width: min(100%, 100vw);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 3.75rem;
    --page-pad: 1rem;
  }

  .brand-logo {
    height: 1.75rem;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + var(--safe-top) + 2.5rem);
    padding-bottom: 3rem;
    padding-inline: var(--page-pad);
  }

  .hero h1 {
    max-width: 20ch;
    font-size: clamp(2.15rem, 9vw, 2.8rem);
  }

  .hero p {
    font-size: 0.98rem;
    max-width: 28rem;
  }

  .hero-brand {
    width: min(12.5rem, 72vw);
    margin: 0 auto 1.1rem;
  }

  .section-intro h2,
  .about-copy h2,
  .experiences-content h2 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .fleet-grid,
  .services-grid,
  .fleet-modal-grid,
  .areas-columns {
    grid-template-columns: 1fr;
  }

  .fleet-body,
  .service-body {
    padding: 1.15rem 1rem 1.35rem;
  }

  .fleet-body h3,
  .service-body h3 {
    font-size: 1.45rem;
  }

  .btn {
    width: 100%;
    max-width: 22rem;
  }

  .fleet-body .btn,
  .service-body .btn,
  .fleet-card-body .btn,
  .section-cta .btn,
  .areas .btn {
    width: 100%;
    max-width: none;
  }

  .text-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .experiences {
    min-height: 48vh;
  }

  .experiences-content {
    padding: 3.5rem var(--page-pad);
  }

  .experiences-content h2 {
    max-width: 16ch;
  }

  .footer-contact,
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .modal {
    padding: 0;
    align-items: stretch;
  }

  .modal-dialog,
  .modal-dialog-wide {
    width: 100%;
    max-height: 100%;
    max-height: 100dvh;
    min-height: 100%;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .modal-service .modal-media {
    height: 140px;
    max-height: 140px;
  }

  .modal-service .service-modal-body {
    padding: 1rem 1.1rem 1.25rem;
  }

  .modal-service .modal-body h2 {
    font-size: 1.65rem;
  }

  .service-block {
    margin: 1.15rem 0;
  }

  .service-block h3 {
    font-size: 1.25rem;
  }

  .modal-cta-bar {
    padding: 0.75rem 1rem calc(0.9rem + var(--safe-bottom));
  }

  .modal-cta-bar .btn {
    width: 100%;
  }

  .modal-close {
    top: calc(0.55rem + var(--safe-top));
    right: 0.65rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .fleet-card-body h3 {
    font-size: 1.25rem;
  }

  .contact-fab {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, calc(0.75rem + var(--safe-bottom)));
  }

  .fab-text {
    display: none;
  }

  .contact-fab-toggle {
    width: 3.4rem;
    height: 3.4rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .channel-label {
    font-size: 0.8rem;
  }
}

/* —— Very small phones —— */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.95rem;
  }

  .nav-list > li > a,
  .submenu-trigger {
    font-size: 0.88rem;
  }

  .modal-service .modal-media {
    height: 120px;
    max-height: 120px;
  }
}

/* —— Landscape phones —— */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 1.5rem;
  }

  .hero-brand {
    width: 9rem;
    margin-bottom: 0.65rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .modal-service .modal-media {
    height: 96px;
    max-height: 96px;
  }

  .modal-dialog-wide {
    max-height: 100dvh;
  }
}

/* —— Touch: disable sticky hover lift on coarse pointers —— */
@media (hover: none) {
  .fleet-item:hover,
  .service-item:hover,
  .fleet-card:hover {
    transform: none;
    box-shadow: none;
  }

  .fleet-item:active,
  .service-item:active,
  .fleet-card:active {
    transform: translateY(-2px);
  }
}

/* —— Login —— */
.nav-login-btn {
  min-height: 2.4rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  margin-left: 0.35rem;
}

.login-dialog {
  width: min(100%, 420px);
  max-height: none;
}

.login-body {
  padding: 2rem 1.5rem 1.75rem;
}

.login-brand {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.login-body h2 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.5rem;
}

.login-lead {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.login-form {
  display: grid;
  gap: 0.85rem;
}

.login-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #f1f1f1;
}

.login-form input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  background: #141414;
  color: #fff;
  font: inherit;
}

.login-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.login-error {
  color: #ff8f8f;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 960px) {
  .nav-login-btn {
    width: 100%;
    margin: 0.75rem 0 0;
  }
}
