/* AVIATOR — design system (RTL, Hebrew) */
@import url(fonts/heebo.css);

:root {
  --navy: #0d2a4d;
  --navy-deep: #081d38;
  --blue: #0a67c0;
  --sky: #e8f1fb;
  --red: #b31920;
  --red-dark: #8e1219;
  --wa: #25d366;
  --bg: #f6f8fb;
  --ink: #1b2535;
  --muted: #5c6a7e;
  --line: #e3e9f1;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(13, 42, 77, .10);
  --shadow-lg: 0 14px 40px rgba(13, 42, 77, .16);
  --wrap: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--line), 0 4px 18px rgba(13, 42, 77, .06);
}
.hdr-in { display: flex; align-items: center; gap: 26px; min-height: 76px; }
.brand { display: flex; align-items: center; }
.brand-img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; }
.nav > a, .nav-more > summary {
  display: block;
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  white-space: nowrap;
}
.nav > a:hover, .nav > a.on, .nav-more > summary:hover { background: var(--sky); color: var(--navy); }
.nav-more { position: relative; }
.nav-more > summary { list-style: none; }
.nav-more > summary::-webkit-details-marker { display: none; }
.nav-more > summary::after { content: " ▾"; font-size: 11px; color: var(--muted); }
.nav-more-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 230px;
  display: grid;
  gap: 2px;
}
.nav-more-menu a {
  display: block;
  padding: 9px 13px;
  border-radius: 9px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}
.nav-more-menu a:hover { background: var(--sky); color: var(--navy); }
.hdr-cta { margin-inline-start: 8px; }
.nav-burger {
  display: none;
  margin-inline-start: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px 0; border-radius: 2px; }

/* ---------- mobile quick-nav tile grid ---------- */
.pgrid { display: none; }
@media (max-width: 860px) {
  .pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 560px;
    margin: 0 auto;
    padding: 12px 14px 14px;
  }
  .pgrid a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 46px;
    padding: 6px 8px;
    border-radius: 12px;
    background: linear-gradient(165deg, #0a67c0, #013878);
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.25;
    box-shadow: 0 3px 8px rgba(13, 42, 77, .18), inset 0 1px 0 rgba(255, 255, 255, .22);
    transition: transform .12s ease, filter .12s ease;
  }
  .pgrid a:active { transform: scale(.96); }
  .pgrid a.on { box-shadow: 0 0 0 2px #ffd166, 0 3px 8px rgba(13, 42, 77, .18); }
  .pgrid .pg-contact {
    grid-column: 1 / -1;
    min-height: 42px;
    background: linear-gradient(165deg, var(--red), var(--red-dark));
    box-shadow: 0 3px 8px rgba(179, 25, 32, .25), inset 0 1px 0 rgba(255, 255, 255, .22);
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16.5px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 4px 14px rgba(179, 25, 32, .30);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(179, 25, 32, .38); }
.btn-wa { background: var(--wa); box-shadow: 0 4px 14px rgba(37, 211, 102, .35); }
.btn-wa:hover { background: #1eb958; box-shadow: 0 8px 20px rgba(37, 211, 102, .42); }
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .75);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); box-shadow: none; }
.btn-sm { padding: 9px 18px; font-size: 15px; }
.btn svg { flex: none; }

/* ---------- home hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(10, 103, 192, .55), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 75%);
  color: #fff;
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 {
  display: inline-block;
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 16px;
  padding: 16px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.hero h1 em { font-style: normal; color: #ffd166; }

/* hand-drawn highlighted phrase */
.ink {
  position: relative;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(transparent 60%, rgba(255, 209, 102, .30) 0);
  padding: 0 3px;
  white-space: nowrap;
}
.ink-u {
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -12px;
  width: calc(100% + 6px);
  height: 15px;
  overflow: visible;
}
.ink-u path {
  fill: none;
  stroke: #ffd166;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw-u 1s ease forwards 1.2s;
}
@keyframes draw-u { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ink-u path { animation: none; stroke-dashoffset: 0; }
}
.hero p { font-size: 19px; line-height: 1.75; color: #cfe0f2; margin: 0 0 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }
/* hero entrance */
.hero h1 { animation: rise .7s ease both .05s; }
.hero .hero-sub { animation: rise .7s ease both .18s; }
.hero .hero-cta { animation: rise .7s ease both .3s; }
.hero .hero-strip { animation: rise .7s ease both .42s; }
.hero-img { animation: rise .8s ease both .2s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }

/* hero carousel */
.hero-img { position: relative; }
.hero-car {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .14);
}
.hs { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hs img { width: 100%; height: 100%; object-fit: cover; }
.hs.on { opacity: 1; z-index: 1; }
.hs.on img { animation: kb 7s ease-out both; }
@keyframes kb { from { transform: scale(1.12); } to { transform: scale(1.01); } }
.hero-cap {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  inset-inline-start: 14px;
  max-width: 75%;
  background: rgba(8, 29, 56, .82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  padding: 9px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  transition: opacity .35s ease;
}
.hero-cap.fade { opacity: 0; }
.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  inset-inline-end: 16px;
  display: flex;
  gap: 7px;
}
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 6px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: all .25s ease;
}
.hero-dots button.on { background: #ffd166; width: 24px; }

/* plane flying across the hero */
.hero { position: relative; }
.hero-plane {
  position: absolute;
  top: 0;
  left: -80px;
  z-index: 0;
  color: rgba(255, 255, 255, .4);
  pointer-events: none;
  animation: fly 17s linear infinite 1.5s;
  opacity: 0;
}
@keyframes fly {
  0%   { transform: translate(0, 72vh) rotate(-14deg); opacity: 0; }
  4%   { opacity: 1; }
  42%  { opacity: 1; }
  48%  { transform: translate(110vw, -8vh) rotate(-14deg); opacity: 0; }
  100% { transform: translate(110vw, -8vh) rotate(-14deg); opacity: 0; }
}

.hero-strip { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; }
.hero-strip div { display: flex; align-items: center; gap: 10px; color: #cfe0f2; font-weight: 600; font-size: 15.5px; }
.hero-strip svg { color: #ffd166; flex: none; animation: bob 3.2s ease-in-out infinite alternate; }
.hero-strip div:nth-child(2) svg { animation-delay: .5s; }
.hero-strip div:nth-child(3) svg { animation-delay: 1s; }
@keyframes bob { from { transform: translateY(1.5px); } to { transform: translateY(-2.5px); } }

/* scroll-driven flight-path divider */
.flightpath { max-width: var(--wrap); margin: -6px auto; padding: 0 20px; }
.flightpath svg { width: 100%; height: 90px; display: block; overflow: visible; }
.fp-track {
  fill: none;
  stroke: #7fb1e8;
  stroke-width: 2.5;
  stroke-dasharray: 9 11;
  opacity: .55;
  animation: dash 1.3s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -20; } }
.fp-trail {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.5;
  stroke-linecap: round;
  opacity: .9;
}
.fpg circle { filter: drop-shadow(0 3px 5px rgba(13, 42, 77, .25)); }
@media (max-width: 860px) {
  .flightpath svg { height: 60px; }
}

/* page-long winding sky path (homepage) */
body { position: relative; }
.skypath {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
}
.skypath svg { display: block; overflow: visible; }
.sp-track {
  fill: none;
  stroke: #8fb4dd;
  stroke-width: 2.5;
  stroke-dasharray: 10 13;
  opacity: .5;
  animation: dash 1.4s linear infinite;
}
.sp-trail {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.5;
  stroke-linecap: round;
  opacity: .8;
}
.skyplane {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  pointer-events: none;
  display: none;
  will-change: transform;
}
.skyplane svg { display: block; filter: drop-shadow(0 4px 8px rgba(13, 42, 77, .28)); }
/* content floats above the path; section backgrounds stay below it */
.sec > .wrap, .hero > .wrap, .flightpath { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .skypath, .skyplane { display: none !important; }
}

/* carousel arrows */
.car-prev, .car-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 29, 56, .55);
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.car-prev { inset-inline-start: 12px; }
.car-next { inset-inline-end: 12px; }
.car-prev:hover, .car-next:hover { background: var(--red); transform: translateY(-50%) scale(1.08); }
.hero-car, .spot-car { touch-action: pan-y; }
.hero-car img, .spot-car img { -webkit-user-drag: none; user-select: none; }
@media (max-width: 600px) {
  .car-prev, .car-next { width: 38px; height: 38px; }
  .car-prev { inset-inline-start: 8px; }
  .car-next { inset-inline-end: 8px; }
}

/* scroll reveal (class applied by JS only) */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.rv.in { opacity: 1; transform: none; }

/* ---------- sections ---------- */
.sec { padding: 64px 0; }
.sec-alt { background: #fff; }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 40px; }
.sec-head .kicker {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.sec-head h2 {
  display: inline-block;
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 26px;
  box-shadow: var(--shadow);
}
.sec-head p { color: var(--muted); margin: 0; font-size: 17.5px; }

/* rotating spotlight band */
.spot { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 80%); color: #fff; }
.spot-in { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.spot .kicker { color: #ffd166; font-weight: 800; font-size: 14.5px; letter-spacing: .05em; }
.spot h2 {
  display: inline-block;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 800;
  line-height: 1.3;
  margin: 8px 0 14px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.spot p { color: #cfe0f2; font-size: 17.5px; margin: 0 0 24px; }
.spot-body { transition: opacity .32s ease, transform .32s ease; }
.spot-body.swap { opacity: 0; transform: translateY(10px); }
@media (min-width: 861px) {
  .spot-txt { min-height: 300px; display: flex; align-items: center; }
}
.spot-car {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .14);
}
.ss { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.ss img { width: 100%; height: 100%; object-fit: cover; }
.ss.on { opacity: 1; z-index: 1; }
.ss.on img { animation: kb 7s ease-out both; }
.spot-dots {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 7px;
}
.spot-dots button {
  width: 9px; height: 9px;
  border-radius: 6px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: all .25s ease;
}
.spot-dots button.on { background: #ffd166; width: 24px; }

/* service cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card-b { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card h3 {
  align-self: flex-start;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  background: var(--sky);
  border-inline-start: 3px solid var(--red);
  border-radius: 9px;
  padding: 6px 13px;
  line-height: 1.3;
}
.card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.card .more { font-weight: 700; color: var(--red); font-size: 15.5px; }
.card .more::after { content: " ←"; transition: margin .15s ease; }
.card:hover .more::after { margin-inline-start: 4px; }

/* clients: event photo + logo pairs */
.clients { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.client {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.client:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.client .ph { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.client .lg {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-top: 1px solid var(--line);
}
.client .lg img { max-height: 44px; max-width: 100%; width: auto; object-fit: contain; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(700px 360px at 15% 120%, rgba(179, 25, 32, .35), transparent 65%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 80%);
  border-radius: 22px;
  color: #fff;
  text-align: center;
  padding: 52px 28px;
  margin: 64px 0;
}
.cta-band h2 { font-size: clamp(23px, 2.8vw, 31px); font-weight: 800; margin: 0 0 10px; }
.cta-band p { color: #cfe0f2; margin: 0 0 26px; font-size: 17.5px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- inner pages ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 320px at 50% -45%, rgba(10, 103, 192, .55), transparent 65%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 85%);
  color: #fff;
  padding: 40px 0 46px;
  text-align: center;
}
/* decorative dashed flight arc + a plane riding it */
.ph-deco { position: absolute; inset: 0; pointer-events: none; }
.ph-deco svg { width: 100%; height: 100%; display: block; overflow: visible; }
.ph-arc {
  fill: none;
  stroke: rgba(143, 180, 221, .28);
  stroke-width: 2;
  stroke-dasharray: 7 12;
  animation: dash 1.7s linear infinite;
}
.ph-plane {
  color: #ffd166;
  opacity: .85;
  offset-path: path("M-40 168 C 320 36, 880 36, 1240 168");
  offset-rotate: auto 90deg;
  animation: ph-fly 14s ease-in-out infinite;
}
@keyframes ph-fly {
  0%   { offset-distance: 0%; opacity: 0; }
  8%   { opacity: .9; }
  92%  { opacity: .9; }
  100% { offset-distance: 100%; opacity: 0; }
}
.ph-in { position: relative; }
.ph-kick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffd166;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .07em;
  margin-bottom: 13px;
  animation: rise .6s ease both .05s;
}
.ph-badge {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 209, 102, .14);
  border: 1px solid rgba(255, 209, 102, .42);
  align-items: center;
  justify-content: center;
  animation: bob 3s ease-in-out infinite alternate;
}
.ph-badge svg { width: 17px; height: 17px; color: #ffd166; }
.page-hero h1 {
  position: relative;
  display: inline-block;
  font-size: clamp(27px, 3.6vw, 39px);
  font-weight: 800;
  margin: 0 0 14px;
  padding: 13px 36px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 12px 34px rgba(0, 0, 0, .22);
  animation: rise .6s ease both .15s;
}
.ph-u {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 8px;
  width: 72%;
  height: 13px;
  overflow: visible;
}
.ph-u path {
  fill: none;
  stroke: #ffd166;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw-u 1s ease forwards .7s;
}
.page-hero .crumb { color: #9fb8d4; font-size: 14.5px; font-weight: 600; animation: rise .6s ease both .25s; }
.page-hero .crumb a { color: #cfe0f2; }
.page-hero .crumb a:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .ph-kick, .ph-badge, .page-hero h1, .page-hero .crumb, .ph-arc, .ph-plane { animation: none; }
  .ph-u path { animation: none; stroke-dashoffset: 0; }
  .ph-plane { opacity: .85; offset-distance: 60%; }
}

.prose { max-width: 760px; margin: 0 auto; padding: 50px 0 10px; }
.prose p { font-size: 18px; line-height: 1.9; margin: 0 0 18px; color: #2a3548; }
.prose .lead {
  font-size: 21.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 26px;
}
.prose h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 38px 0 18px;
  padding: 13px 20px;
  background: var(--sky);
  border-inline-start: 5px solid var(--red);
  border-radius: 12px;
  line-height: 1.4;
}
.prose .em {
  font-weight: 700;
  color: var(--navy);
  background: var(--sky);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 24px 0;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.prose .em::before {
  content: "✈";
  color: var(--red);
  flex: none;
  font-size: 15px;
}
.prose ul.checks { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 9px; }
.prose ul.checks li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 16px 11px 14px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.prose ul.checks li::before {
  content: "✓";
  color: var(--wa);
  font-weight: 800;
  flex: none;
  margin-top: 1px;
}
figure.solo { margin: 26px auto; max-width: 680px; }
figure.solo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* media grids */
.grid { display: grid; gap: 14px; margin: 26px 0; }
.g-imgs { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.g-imgs a { display: block; border-radius: 14px; overflow: hidden; }
.g-imgs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform .25s ease;
}
.g-imgs a:hover img { transform: scale(1.045); }
.g-vids { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }

/* a lone video gets a big centered frame */
.vid-solo { max-width: 860px; margin: 30px auto; }
.vid-solo .yt { box-shadow: var(--shadow-lg); border-radius: 16px; }

/* youtube facade */
.yt {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.yt img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .2s, transform .3s; }
.yt:hover img { opacity: 1; transform: scale(1.03); }
.yt .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  border: 0;
  border-radius: 13px;
  background: rgba(179, 25, 32, .92);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.yt:hover .play { background: var(--red); transform: scale(1.08); }
.yt .play::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0; height: 0;
  border-block: 10px solid transparent;
  border-inline-start: 17px solid #fff;
}
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 18, 33, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}
.lb.open { display: flex; }
.lb img { max-width: 94vw; max-height: 92vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 20px 70px rgba(0,0,0,.6); }
.lb button {
  position: absolute;
  top: 18px;
  inset-inline-end: 22px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  font-size: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

/* contact page */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin: 44px 0; }
.ccard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ccard .ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.ccard h3 { margin: 0 0 4px; color: var(--navy); font-size: 18px; font-weight: 800; }
.ccard p { margin: 0; color: var(--muted); font-size: 15.5px; direction: ltr; }

/* vcard */
.vcard-page { max-width: 480px; margin: 0 auto; padding: 46px 20px 70px; text-align: center; }
.vcard-links { display: grid; gap: 12px; margin-top: 28px; }
.vcard-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--ink);
  font-size: 17px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.vcard-links a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.vcard-links .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
}

/* ---------- footer ---------- */
.ftr { background: var(--navy-deep); color: #b9cce2; margin-top: 70px; }
.ftr-in {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0 40px;
}
.ftr-logo {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
}
.ftr-logo img { display: block; }
.ftr h4 { color: #fff; font-size: 17px; font-weight: 800; margin: 0 0 14px; }
.ftr a { color: #b9cce2; }
.ftr a:hover { color: #fff; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15.5px; }
.ftr .brand b { color: #fff; }
.ftr .brand small { color: #8fa6c2; }
.ftr p { font-size: 15.5px; line-height: 1.75; margin: 12px 0 0; }
.ftr-soc { display: flex; gap: 10px; margin-top: 16px; }
.ftr-soc a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.ftr-soc a:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.ftr-bar {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0;
  font-size: 14px;
  color: #8fa6c2;
  text-align: center;
}

/* floating whatsapp */
.float-wa {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transition: transform .18s ease;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav > a:not(.hdr-cta) { display: none; }
  .nav-more { display: none; }
  .nav-burger { display: block; }
  .nav.open {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    gap: 4px;
  }
  .nav.open > a { display: block; }
  .nav.open .nav-more { display: block; }
  .nav.open .nav-more-menu { position: static; box-shadow: none; border: 0; padding: 0 14px; }
}
@media (max-width: 600px) {
  .hdr-in { gap: 10px; min-height: 64px; }
  .brand-img { height: 48px; }
  .hdr-cta { padding: 8px 12px; font-size: 14px; }

  /* denser mobile homepage: see more than one thing per screen */
  .sec { padding: 34px 0; }
  .sec-head { margin-bottom: 22px; }
  .sec-head h2 { font-size: 23px; }
  .sec-head p { font-size: 15px; }
  .hero { padding: 26px 0 34px; }
  .hero-in { gap: 18px; }
  .hero h1 { font-size: 25px; margin-bottom: 12px; padding: 12px 18px; border-radius: 14px; }
  .hero .hero-sub { font-size: 15.5px; line-height: 1.6; margin-bottom: 16px; }
  .hero-car { aspect-ratio: 16 / 10; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1; padding: 11px 10px; font-size: 14.5px; white-space: nowrap; }
  .hero-strip { gap: 10px; margin-top: 20px; justify-content: space-between; }
  .hero-strip div { font-size: 12px; gap: 5px; }
  .hero-strip svg { width: 14px; height: 14px; }

  .cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card img { aspect-ratio: 16 / 11; }
  .card-b { padding: 10px 12px 12px; }
  .card h3 { font-size: 14px; margin-bottom: 6px; padding: 4px 9px; }
  .card p { font-size: 12.5px; line-height: 1.5; -webkit-line-clamp: 2; margin-bottom: 8px; }
  .card .more { font-size: 13px; }

  .clients { grid-template-columns: 1fr 1fr; gap: 10px; }
  .client .lg { min-height: 46px; padding: 6px 10px; }
  .client .lg img { max-height: 30px; }

  .spot-in { gap: 16px; }
  .spot-car { aspect-ratio: 16 / 10; }
  .spot h2 { font-size: 21px; }
  .spot p { font-size: 15px; margin-bottom: 16px; }
  .spot .btn { padding: 11px 18px; font-size: 15px; }

  .cta-band { padding: 32px 18px; margin: 36px 0; }
  .cta-band .hero-cta { flex-direction: row; }
  .ftr-in { padding: 36px 0 26px; gap: 24px; }
}
@media (max-width: 860px) {
  body { overflow-x: clip; }
  .hero-in, .spot-in { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 44px 0 52px; }
  .hero-img { order: -1; }
  .ftr-in { grid-template-columns: 1fr; gap: 30px; }
  .sec { padding: 48px 0; }
  body { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
