/* ============================================================
   ÚLTIMA VUELTA TRANSPORT — Premium CSS 2026
   Aligned with production HTML selectors
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Mohave:ital,wght@0,300;0,400;0,500;0,600;0,700;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Custom properties ─────────────────────────────────── */
:root {
  --black:   #000000;
  --dark:    #0c0c0c;
  --dark-2:  #141414;
  --dark-3:  #1c1c1c;
  --silver:  #b8b8b8;
  --silver-l:#e2e2e2;
  --white:   #ffffff;
  --nav-h:   80px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.87, 0, 0.13, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
body.loaded {}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: none; font: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ─── Preloader ──────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.pre-logo { width: 200px; }
.pre-logo img { width: 100%; height: auto; }
.pre-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.pre-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--white);
  border-radius: 1px;
  transition: width 0.05s linear;
}
.pre-counter {
  font-family: 'Mohave', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--silver);
}

/* ─── Custom cursor ──────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  will-change: transform;
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s;
}
.cursor-dot.active { transform: scale(0.5); }
.cursor-ring.active {
  width: 64px;
  height: 64px;
  border-color: rgba(255,255,255,0.6);
}

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background 0.4s, backdrop-filter 0.4s, transform 0.4s;
}
.nav.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.nav.hidden {
  transform: translateY(-100%);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: 'Mohave', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-l);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--white); }
.nav-link.active::after { width: 100%; }

.nav-link.nav-cta {
  color: var(--black);
  background: var(--white);
  padding: 10px 24px;
  border: 1px solid var(--white);
  transition: background 0.3s, color 0.3s;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: transparent; color: var(--white); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-parallax {
  position: absolute;
  inset: -10% 0 0 0;
  width: 100%;
  height: 120%;
}
.hero-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  will-change: transform;
  background: var(--black);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.65) 70%,
    rgba(0,0,0,0.95) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Mohave', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--silver);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Mohave', sans-serif;
  font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--silver-l);
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver-l);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.br-desk { display: block; }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-text {
  font-family: 'Mohave', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--silver));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  font-family: 'Mohave', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  transition: all 0.35s var(--ease-out-expo);
  cursor: none;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

/* ─── Marquee text strip ─────────────────────────────────── */
.marquee-text {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-text .marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-text .marquee-track span {
  font-family: 'Mohave', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 0 36px;
}
.marquee-text .marquee-track span.dot {
  color: rgba(255,255,255,0.25);
  padding: 0;
  font-size: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Sections ──────────────────────────────────────────── */
.section {
  position: relative;
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  font-family: 'Mohave', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section-title {
  font-family: 'Mohave', sans-serif;
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--silver);
}
.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver-l);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Service cards grid ─────────────────────────────────── */
.services-section { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.4s;
}
.service-card:hover { border-color: rgba(255,255,255,0.15); }
.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 32px;
}
.service-card-num {
  font-family: 'Mohave', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--silver);
  display: block;
  margin-bottom: 10px;
}
.service-card-title {
  font-family: 'Mohave', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.service-card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-link {
  font-family: 'Mohave', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out-expo);
}
.service-card:hover .service-card-link { gap: 14px; }

/* ─── Stats ──────────────────────────────────────────────── */
.stats-section {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Mohave', sans-serif;
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.stat-label {
  font-family: 'Mohave', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 12px;
  display: block;
}

/* ─── Photo marquee ──────────────────────────────────────── */
.marquee-photos {
  padding: 60px 0;
  overflow: hidden;
  background: var(--dark);
}
.marquee-photos .marquee-track {
  display: flex;
  gap: 16px;
  animation: photoMarquee 35s linear infinite;
  width: max-content;
}
.marquee-photos .marquee-track:hover { animation-play-state: paused; }
.marquee-photo-item {
  width: 360px;
  height: 230px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}
.marquee-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.marquee-photo-item:hover img { transform: scale(1.06); }
@keyframes photoMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Why us ─────────────────────────────────────────────── */
.why-section { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-media-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
}
.why-media-badge span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}
.why-media-badge strong {
  display: block;
  font-family: 'Mohave', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.why-content {}
.why-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-icon {
  color: var(--silver);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}
.why-item strong {
  font-family: 'Mohave', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin: 0;
}

/* ─── International strip ────────────────────────────────── */
.international-strip {
  background: var(--black);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.international-strip p {
  font-family: 'Mohave', sans-serif;
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}
.international-strip strong { color: var(--white); }

/* ─── CTA section ───────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--black);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}
.cta-content {
  position: relative;
  z-index: 2;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-address {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
}
.footer-heading {
  font-family: 'Mohave', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--silver);
}
.footer-credit {
  color: var(--silver);
  transition: color 0.3s;
}
.footer-credit:hover { color: var(--white); }
.footer-credit strong { font-weight: 600; }

/* ─── Page hero (interior pages) ─────────────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-parallax {
  position: absolute;
  inset: 0;
}
.page-hero-parallax img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--black);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.75) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
.page-hero-title {
  font-family: 'Mohave', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver-l);
  letter-spacing: 0.03em;
}

/* ─── Service intro (2 col) ──────────────────────────────── */
.service-intro {
  padding: 100px 0;
  background: var(--dark);
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-intro-media {
  overflow: hidden;
  border-radius: 2px;
}
.service-intro-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ─── Gallery ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: 'Mohave', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── Contact form ───────────────────────────────────────── */
.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Mohave', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
}
.form-group select {
  cursor: pointer;
}
.form-group select option {
  background: var(--dark-2);
  color: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}
.reveal.in,
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}
.reveal-left.in,
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-img {
  overflow: hidden;
}
.reveal-img img {
  transform: scale(1.08);
  transition: transform 1.2s var(--ease-out-expo);
}
.reveal-img.in img,
.reveal-img.visible img { transform: scale(1); }

/* ─── Responsive — Tablet ────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav { padding: 0 20px; }

  /* Mobile menu fullscreen */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 20px 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links.open .nav-link {
    font-size: clamp(26px, 6vw, 44px);
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .nav-links.open .nav-link::after { display: none; }
  .nav-links.open .nav-link.nav-cta {
    font-size: 13px;
    margin-top: 16px;
    padding: 14px 32px;
  }
  .nav-burger { display: flex; }

  .hero { min-height: 500px; }
  .hero-content { padding: 0 28px 50px; }
  .hero-scroll { right: 20px; bottom: 20px; }
  .br-desk { display: inline; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-media { max-height: 380px; aspect-ratio: 16/9; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-section { padding: 90px 0; }
}

/* ─── Responsive — Mobile ───────────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* Nav mobile */
  .nav { height: 64px; }
  .nav-logo img { height: 36px; }

  /* Hero mobile */
  .hero { height: 100svh; min-height: 480px; }
  .hero-parallax { inset: 0; height: 100%; }
  .hero-title { font-size: clamp(32px, 9vw, 52px); margin-bottom: 16px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 12px; letter-spacing: 0.2em; }
  .hero-eyebrow::before { width: 24px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; line-height: 1.7; }
  .hero-content { padding: 0 16px 32px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 12px; }
  .hero-scroll { display: none; }

  /* Marquee strip */
  .marquee-text { padding: 12px 0; }
  .marquee-text .marquee-track span { font-size: 11px; padding: 0 20px; letter-spacing: 0.15em; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-tag { font-size: 10px; letter-spacing: 0.25em; }
  .section-title { font-size: clamp(26px, 7vw, 40px); margin-bottom: 12px; }
  .section-sub { font-size: 14px; line-height: 1.7; }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card-img { aspect-ratio: 16/9; }
  .service-card-body { padding: 20px 16px; }
  .service-card-title { font-size: 18px; }
  .service-card-text { font-size: 13px; margin-bottom: 14px; }

  /* Stats */
  .stats-section { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-item { padding: 20px 8px; }
  .stat-number { font-size: clamp(32px, 8vw, 48px); }
  .stat-label { font-size: 9px; letter-spacing: 0.12em; margin-top: 6px; }

  /* Photo marquee */
  .marquee-photos { padding: 36px 0; }
  .marquee-photo-item { width: 240px; height: 155px; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-media { max-height: 280px; aspect-ratio: 16/9; }
  .why-list { margin-top: 24px; }
  .why-item { padding: 16px 0; gap: 14px; }
  .why-item strong { font-size: 14px; }
  .why-item p { font-size: 13px; }

  /* International strip */
  .international-strip { padding: 36px 0; }
  .international-strip p { font-size: clamp(14px, 4vw, 22px); letter-spacing: 0.05em; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-section .section-title { font-size: clamp(24px, 7vw, 36px); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .gallery-item { aspect-ratio: 1/1; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 16px; }
  .form-group label { font-size: 10px; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 14px; }

  /* Page hero */
  .page-hero { height: 45vh; min-height: 280px; }
  .page-hero-title { font-size: clamp(26px, 7vw, 44px); }
  .page-hero-sub { font-size: 13px; }
  .page-hero-content { padding-bottom: 32px; }

  /* Service intro */
  .service-intro { padding: 56px 0; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-logo { width: 120px; margin-bottom: 12px; }
  .footer-brand p { font-size: 13px; margin-bottom: 10px; }
  .footer-heading { font-size: 11px; margin-bottom: 14px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 0;
    margin-top: 32px;
    font-size: 11px;
    line-height: 1.8;
  }

  /* Buttons */
  .btn { padding: 13px 24px; font-size: 12px; letter-spacing: 0.1em; }

  /* Cursor off on touch */
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a, button, .service-card { cursor: pointer; }
}

/* ─── Small mobile (iPhone SE etc) ──────────────────────── */
@media (max-width: 380px) {
  .hero-title { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 24px 16px; }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
