/* ===================================================================
   Jura Drones, Documentation de chantier par drone
   Design system: white + brand-red (#BD151D) + ink, blueprint grid (logo palette)
   Fonts: Archivo (display) · Inter (body) · Space Mono (data)
   =================================================================== */

:root {
  --bg:        #ffffff;
  --bg-2:      #f5f3f0;
  --surface:   #ffffff;
  --surface-2: #faf8f5;
  --line:      rgba(0, 0, 0, 0.10);
  --line-2:    rgba(0, 0, 0, 0.17);

  --text:      #1a1c20;
  --muted:     #565c64;
  --muted-2:   #898f98;

  /* --orange* repurposed = brand RED (from logo #BD151D), primary highlight */
  --orange:    #bd151d;
  --orange-2:  #e11d27;
  --orange-dim:rgba(189, 21, 29, 0.10);
  /* --sky* repurposed = INK / near-black, secondary accent (was blue) */
  --sky:       #1a1c20;
  --sky-dim:   rgba(26, 28, 32, 0.06);
  /* confirmation green, used for booking selection/success */
  --green:     #159a5b;
  --green-2:   #12855a;
  --green-dim: rgba(21, 154, 91, 0.10);

  --ff-display: "Orbitron", "Archivo", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, sans-serif;
  --ff-mono:    "Space Mono", ui-monospace, monospace;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow: 0 12px 36px -22px rgba(0, 0, 0, 0.16);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(15px, 0.6vw + 14px, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--orange); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #cdd0d5; border-radius: 10px; border: 3px solid var(--bg); }

/* ---------- FPV mini-game modal ---------- */
.dg-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  background: rgba(8, 11, 15, 0.8); backdrop-filter: blur(6px);
  animation: chatIn 0.22s var(--ease);
}
.dg-overlay[hidden] { display: none; }
.dg-modal {
  width: min(420px, 100%); background: #0d1017;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.dg-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.dg-title { font-family: var(--ff-display); font-weight: 700; color: #fff; font-size: 0.98rem; letter-spacing: 0.02em; }
.dg-close { width: 32px; height: 32px; border-radius: 8px; color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }
.dg-close:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.dg-canvas { display: block; width: 100%; height: auto; aspect-ratio: 480 / 640; background: #0a0d12; touch-action: none; cursor: pointer; }
.dg-hint { color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; text-align: center; padding: 11px 16px 15px; font-family: var(--ff-mono); line-height: 1.5; }

/* ---------- custom drone cursor ---------- */
body { cursor: url("assets/cursor-drone.svg") 20 20, auto; }
a, button, .btn, .lang-btn, summary, [role="button"],
.week-slider, .bk-day, .bk-slot, .bk-nav, .chat-chip, .chat-cta, .chat-launcher,
.plan__cta, .fpv-tile__play, .nav__burger {
  cursor: url("assets/cursor-drone.svg") 20 20, pointer;
}
input, textarea, select { cursor: auto; }

/* ---------- helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.mono { font-family: var(--ff-mono); }
.accent-text { color: var(--orange); }
.visually-hidden, .skip-link:not(:focus) {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  background: var(--orange); color: #fff; padding: 10px 16px;
  border-radius: 8px; font-weight: 600;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  --mx: 0px; --my: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.96rem; letter-spacing: 0.01em;
  transform: translate(var(--mx), var(--my));
  transition: transform 0.25s var(--ease-soft), background 0.25s ease,
              box-shadow 0.3s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform; white-space: nowrap; border: 1px solid transparent;
}
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(189, 21, 29, 0.45);
}
.btn--primary:hover { box-shadow: 0 16px 36px -10px rgba(189, 21, 29, 0.6); filter: brightness(1.04); }

.btn--ghost {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--line-2); color: var(--text);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

.btn:focus-visible, a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.lang-btn:focus-visible, .week-slider:focus-visible {
  outline: 2px solid var(--sky); outline-offset: 3px;
}

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 20px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); }
.brand__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.28rem; color: var(--text); letter-spacing: -0.01em; }
.brand__accent { color: var(--orange); }
.brand__mark { display: grid; place-items: center; }
.brand__logo { display: block; height: 42px; width: auto; }
.footer__brand .brand__logo { height: 36px; }

.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  position: relative; font-size: 0.93rem; font-weight: 500; color: var(--muted);
  padding: 6px 0; transition: color 0.2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; margin-left: 0; }
.nav__links + .nav__actions { margin-left: 8px; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 4px 6px;
}
.lang-btn {
  font-family: var(--ff-mono); font-size: 0.78rem; font-weight: 700;
  color: var(--muted-2); padding: 3px 8px; border-radius: 999px; transition: color 0.2s, background 0.2s;
}
.lang-btn.is-active { color: #fff; background: var(--orange); }
.lang-btn:not(.is-active):hover { color: var(--text); }
.lang-switch__sep { width: 1px; height: 14px; background: var(--line-2); }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2); }
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--text); margin: 3px auto; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px; padding: 10px var(--pad) 22px;
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 13px 8px; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu__cta { color: var(--orange) !important; font-family: var(--ff-display); font-weight: 700; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; overflow: hidden; padding-top: clamp(28px, 6vh, 70px); padding-bottom: clamp(40px, 8vh, 90px); }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.92; filter: saturate(1.05) contrast(1.03); z-index: -1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; filter: saturate(1.05) contrast(1.03); }
.hero__media-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.62) 30%, rgba(255,255,255,0.18) 60%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 48%, rgba(255,255,255,0.5) 82%, var(--bg) 100%);
}

.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center; min-height: min(80vh, 760px); padding-block: 24px;
}
.hero__copy { max-width: 600px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-mono); font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); padding: 7px 14px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(0,0,0,0.025);
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--orange-dim); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px transparent; } }

.hero__title {
  font-family: var(--ff-display); font-weight: 800; line-height: 1.08;
  font-size: clamp(2rem, 5vw, 4.1rem); letter-spacing: -0.01em;
  margin: 20px 0 0;
}
.hero__subtitle { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); margin-top: 22px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero__stats { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 44px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__value { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--text); line-height: 1; }
.stat__label { font-size: 0.82rem; color: var(--muted); margin-top: 8px; max-width: 150px; }

/* hero credibility bar (replaces vanity counters) */
.hero__trust { display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 38px; max-width: 580px; }
.trust-item { position: relative; padding-left: 19px; font-family: var(--ff-mono); font-size: 0.78rem; line-height: 1.4; color: var(--muted); }
.trust-item::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }

/* ---------- Viewport (signature element) ---------- */
.viewport {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; backdrop-filter: blur(4px);
}
.viewport__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.035);
}
.viewport__rec { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-mono); font-size: 0.74rem; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; }
.viewport__rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.8s infinite; }
.viewport__coord { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.02em; }

.viewport__frame { position: relative; }
.scene { width: 100%; height: auto; display: block; background: #121821; }

/* scene layer reveal */
.scene .layer { opacity: 0; transform: translateY(36px); transition: opacity 0.45s ease, transform 0.6s var(--ease-soft); }
.scene .layer.is-visible { opacity: 1; transform: translateY(0); }
.scene .layer--crane.is-visible, .scene .layer--scaffold.is-visible { transition-delay: 0.05s; }

/* surveying drone, gentle continuous flyover */
.drone { animation: droneFly 9s ease-in-out infinite; will-change: transform; }
@keyframes droneFly {
  0%   { transform: translate(-26px, 10px); }
  48%  { transform: translate(150px, -3px); }
  52%  { transform: translate(168px, -3px); }
  100% { transform: translate(342px, 12px); }
}
.drone__light { animation: droneBlink 1.1s steps(1, end) infinite; }
@keyframes droneBlink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 0.12; } }

.viewport__controls { padding: 16px 18px 20px; }
.viewport__readout { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.viewport__week { font-size: 0.82rem; color: var(--sky); letter-spacing: 0.05em; }
.viewport__phase { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--text); text-align: right; }

.week-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--fill,0%), #e3e5e8 var(--fill,0%)); outline-offset: 6px; }
.week-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--orange); box-shadow: 0 4px 12px rgba(0,0,0,0.22); cursor: grab; transition: transform 0.15s ease; }
.week-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
.week-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--orange); box-shadow: 0 4px 12px rgba(0,0,0,0.22); cursor: grab; }
.week-slider::-moz-range-track { height: 6px; border-radius: 999px; background: #e3e5e8; }
.week-slider::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--orange); }
.viewport__hint { font-size: 0.78rem; color: var(--muted-2); margin-top: 12px; }

.hero__scroll { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted-2); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--orange), transparent); }

/* ===================================================================
   SECTIONS (shared)
   =================================================================== */
.section { padding-block: clamp(64px, 11vh, 130px); position: relative; }
.section--contact { padding-bottom: clamp(70px, 12vh, 140px); }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head.section__head--center { margin-inline: auto; text-align: center; }
.section__kicker { display: inline-block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.section__title { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.14; letter-spacing: -0.005em; }
.section__lead { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.12rem); margin-top: 18px; max-width: 620px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in-view { opacity: 1; transform: none; }

/* ===================================================================
   WHY, cards
   =================================================================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  position: relative; padding: 28px 24px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-soft), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.card:hover { border-color: var(--line-2); }
.card__num { position: absolute; top: 18px; right: 18px; font-size: 0.78rem; color: var(--muted-2); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--orange-dim); color: var(--orange); margin-bottom: 18px; }
.card__icon svg { width: 24px; height: 24px; }
.card__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.14rem; margin-bottom: 10px; }
.card__text { color: var(--muted); font-size: 0.93rem; }

/* ===================================================================
   TIMELINE
   =================================================================== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.tl { position: relative; padding: 0 22px; }
.tl:not(:last-child)::after { content: ""; position: absolute; top: 17px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 2px; background: linear-gradient(90deg, var(--orange), var(--line-2)); opacity: 0.5; }
.tl__num { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 1px solid var(--orange); color: var(--orange); font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; position: relative; z-index: 1; }
.tl__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.12rem; margin-bottom: 8px; }
.tl__text { color: var(--muted); font-size: 0.92rem; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about__visual { position: relative; }
.about__photo {
  aspect-ratio: 4/5; border-radius: var(--radius); border: 1px solid var(--line-2);
  background:
    radial-gradient(circle at 30% 20%, rgba(189,21,29,0.07), transparent 50%),
    linear-gradient(180deg, var(--surface-2), var(--bg-2));
  display: grid; place-items: center; gap: 14px; color: var(--muted-2);
  position: relative; overflow: hidden;
}
.about__photo::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px); background-size: 28px 28px; }
.about__photo--filled { background: none; }
.about__photo--filled::before { display: none; }
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-soft); }
.about__visual:hover .about__photo img { transform: scale(1.04); }
.about__photo-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about__badge {
  position: absolute; right: -14px; bottom: 26px; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 22px; border-radius: 14px; background: var(--orange); color: #fff;
  box-shadow: 0 16px 40px -12px rgba(189,21,29,0.38);
}
.about__badge-num { font-family: var(--ff-display); font-weight: 900; font-size: 1.8rem; line-height: 1; }
.about__badge-txt { font-size: 0.72rem; font-weight: 600; max-width: 90px; text-align: center; margin-top: 4px; }
.about__copy .section__kicker { margin-top: 0; }
.about__text { color: var(--muted); margin-top: 16px; font-size: 1.02rem; }
.about__text:first-of-type { color: var(--text); font-size: 1.1rem; }
.about__case { margin-top: 18px; padding: 14px 18px; border-left: 2px solid var(--orange); background: var(--bg-2); border-radius: 0 10px 10px 0; font-size: 0.96rem; color: var(--text); font-style: italic; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { font-size: 0.82rem; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); color: var(--muted); }
.chip::before { content: "▪ "; color: var(--orange); }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.shot__img {
  aspect-ratio: 16/10; display: grid; place-items: center; position: relative;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0.04), transparent 60%),
    linear-gradient(135deg, var(--surface-2), var(--bg-2));
  transition: transform 0.6s var(--ease-soft);
}
.shot__img::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px); background-size: 24px 24px; }
img.shot__img { display: block; object-fit: cover; width: 100%; height: 100%; }
.shot__soon { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); border: 1px dashed var(--line-2); padding: 6px 12px; border-radius: 999px; position: relative; z-index: 1; }
.shot:hover .shot__img { transform: scale(1.07); }
.shot__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; font-size: 0.74rem; color: #fff; background: linear-gradient(transparent, rgba(10,13,18,0.92)); letter-spacing: 0.03em; z-index: 2; }
.shot--video .shot__video { aspect-ratio: 16/10; width: 100%; object-fit: cover; transition: transform 0.6s var(--ease-soft); }
.shot--video:hover .shot__video { transform: scale(1.07); }
.shot__play { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(189,21,29,0.92); color: #fff; font-size: 1.1rem; padding-left: 4px; z-index: 2; box-shadow: 0 8px 24px rgba(0,0,0,0.22); transition: transform 0.3s var(--ease), opacity 0.3s; }
.shot--video.is-playing .shot__play { opacity: 0; transform: scale(0.6); pointer-events: none; }
.shot--video:hover .shot__play { transform: scale(1.08); }

/* ===================================================================
   TIME-LAPSE (vertical reel)
   =================================================================== */
.timelapse { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.timelapse__media { display: flex; justify-content: center; }
.reel {
  position: relative; width: min(320px, 78vw); aspect-ratio: 9 / 16;
  border-radius: 22px; overflow: hidden; margin: 0;
  border: 1px solid var(--line-2); background: #0e1116; box-shadow: var(--shadow);
}
.reel__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--orange); padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(189, 21, 29, 0.7);
}
.reel__dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.8s infinite; }
.timelapse__copy .section__kicker { margin-top: 0; }
.timelapse__note { color: var(--muted-2); font-size: 0.78rem; margin-top: 20px; letter-spacing: 0.04em; }

/* ===================================================================
   FPV SPECIAL SERVICE
   =================================================================== */
.section--fpv { background: var(--sky); color: #fff; }
.section--fpv .section__kicker { color: var(--orange-2); }
.section--fpv .section__title { color: #fff; }
.section--fpv .section__lead { color: rgba(255, 255, 255, 0.74); }

.fpv {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 5vw, 64px); align-items: center;
}
.fpv__media { display: flex; justify-content: center; }
.fpv-reel {
  position: relative; width: 100%; max-width: 560px; aspect-ratio: 16 / 9;
  border-radius: 18px; overflow: hidden; margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14); background: #000;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
}
.fpv-reel__video { width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }
.fpv-reel__play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: radial-gradient(circle at center, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  transition: opacity 0.3s var(--ease);
}
.fpv-reel__play[hidden] { display: none; }
.fpv-reel__play-icon {
  width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 1.4rem; padding-left: 5px;
  box-shadow: 0 12px 30px -8px rgba(189, 21, 29, 0.8);
  transition: transform 0.3s var(--ease);
}
.fpv-reel__play:hover .fpv-reel__play-icon { transform: scale(1.08); }
.fpv-reel__play-txt {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(0, 0, 0, 0.45); padding: 6px 12px; border-radius: 999px;
}
.fpv-reel__badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--orange); padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(189, 21, 29, 0.7);
}

.fpv__copy .section__kicker { margin-top: 0; }
.fpv__points { display: grid; gap: 14px; margin: 26px 0 30px; }
.fpv__point { display: flex; align-items: flex-start; gap: 12px; color: rgba(255, 255, 255, 0.86); font-size: 0.96rem; }
.fpv__point-ic { flex: none; font-size: 1.05rem; line-height: 1.5; }
/* flagship section head centered on the dark band */
.section--fpv .section__head { max-width: 760px; margin-inline: auto; text-align: center; }
.section--fpv .section__lead { margin-inline: auto; }

/* ghost buttons need to read as white on the dark FPV band */
.section--fpv .btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.section--fpv .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: #fff;
  color: #fff;
}

/* video gallery */
.fpv-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 6px; }
.fpv-tile {
  position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; margin: 0;
  background: #000; border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px -28px rgba(0, 0, 0, 0.85);
}
.fpv-tile__video { width: 100%; height: 100%; object-fit: cover; background: #000; display: block; }
.fpv-tile__play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
  transition: opacity 0.3s var(--ease);
}
.fpv-tile__play[hidden] { display: none; }
.fpv-tile__play-ic {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 1.2rem; padding-left: 4px;
  box-shadow: 0 10px 28px -8px rgba(189, 21, 29, 0.85); transition: transform 0.3s var(--ease);
}
.fpv-tile__play:hover .fpv-tile__play-ic { transform: scale(1.08); }
.fpv-tile__badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--orange); padding: 4px 9px; border-radius: 999px;
}
.fpv-tile__cap {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  font-size: 0.66rem; color: #fff; background: rgba(0, 0, 0, 0.55);
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.03em;
}

/* how it works */
.fpv-how {
  margin: 40px 0; padding: 26px clamp(20px, 4vw, 34px); border-radius: 16px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
}
.fpv-how__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; color: #fff; text-align: center; margin-bottom: 20px; }
.fpv-how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fpv-how__step { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.88); font-size: 0.95rem; }
.fpv-how__n { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 700; font-size: 0.9rem; }

.fpv__tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 8px; }
.fpv-tier {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 22px 20px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.35s var(--ease-soft), border-color 0.3s;
}
.fpv-tier:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.3); }
.fpv-tier--featured { background: rgba(189, 21, 29, 0.16); border-color: rgba(225, 29, 39, 0.55); }
.fpv-tier__badge {
  position: absolute; top: -10px; right: 14px;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  color: #fff; background: var(--orange); padding: 4px 10px; border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(189, 21, 29, 0.8);
}
.fpv-tier__tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); }
.fpv-tier__price { display: flex; align-items: baseline; }
.fpv-tier__amount { font-family: var(--ff-display); font-weight: 800; font-size: 1.95rem; line-height: 1; color: #fff; }
.fpv-tier__desc { color: rgba(255, 255, 255, 0.78); font-size: 0.88rem; flex: 1; margin: 2px 0 4px; }
.fpv-tier .btn { margin-top: auto; }

/* ===================================================================
   PRICING
   =================================================================== */
.setup {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 24px 28px; border-radius: var(--radius); margin-bottom: 26px;
  background: linear-gradient(120deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-left: 3px solid var(--sky);
}
.setup__label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); margin-bottom: 8px; }
.setup__desc { color: var(--muted); font-size: 0.95rem; max-width: 620px; }
.setup__price { display: flex; flex-direction: column; align-items: flex-end; }
.setup__amount { font-family: var(--ff-display); font-weight: 800; font-size: 1.9rem; }
.setup__once { font-size: 0.74rem; color: var(--muted-2); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 30px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-soft), border-color 0.3s, box-shadow 0.3s;
}
.plan:hover { border-color: var(--line-2); }
.plan--featured {
  border-color: var(--orange); background: var(--surface);
}
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; }
.plan__for { color: var(--muted); font-size: 0.86rem; margin-top: 4px; min-height: 2.6em; }
.plan__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin: 18px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.plan__from { font-size: 0.8rem; color: var(--muted); }
.plan__amount { font-family: var(--ff-display); font-weight: 800; font-size: 2.1rem; letter-spacing: -0.01em; }
.plan__per { font-size: 0.82rem; color: var(--muted); }
.plan__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan__features li { position: relative; padding-left: 28px; font-size: 0.93rem; color: var(--text); }
.plan__features li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange-dim); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-7' fill='none' stroke='%23bd151d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.plan__features .plan__inherit { padding-left: 0; color: var(--muted); font-weight: 600; font-size: 0.86rem; }
.plan__features .plan__inherit::before { display: none; }
.price__note { text-align: center; color: var(--muted-2); font-size: 0.86rem; margin-top: 30px; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 6vw, 70px); align-items: start; }
.contact__lead { color: var(--muted); font-size: 1.06rem; margin-top: 18px; max-width: 440px; }
.contact__direct { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.contact__direct li { display: flex; flex-direction: column; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact__dir-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.contact__dir-val { font-size: 1.05rem; color: var(--text); transition: color 0.2s; }
a.contact__dir-val:hover { color: var(--orange); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color 0.2s, background 0.2s; resize: vertical;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background: var(--surface); }
.field input:invalid:not(:placeholder-shown), .field input.is-error { border-color: #e0533b; }
.form__hint { text-align: center; color: var(--muted-2); font-size: 0.76rem; margin-top: 14px; }
.form__status { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; }
.form__status--ok { background: var(--orange-dim); border: 1px solid var(--orange); color: var(--orange-2); }
.form__status--err { background: rgba(224,83,59,0.10); border: 1px solid #e0533b; color: #b3271a; }

/* ---------- Booking calendar ---------- */
.booking { align-self: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 28px); }
.bk-title { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; }
.bk-sub { font-size: 0.74rem; color: var(--muted); margin: 5px 0 18px; }
.bk-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.bk-month { font-weight: 700; font-size: 0.92rem; text-transform: capitalize; }
.bk-nav { width: 34px; height: 34px; border: 1px solid var(--line-2); border-radius: 8px; font-size: 1.15rem; line-height: 1; color: var(--text); transition: border-color 0.15s, color 0.15s; }
.bk-nav:disabled { opacity: 0.3; }
.bk-nav:not(:disabled):hover { border-color: var(--orange); color: var(--orange); }
.bk-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.bk-grid--wd { margin-bottom: 4px; }
.bk-wd { text-align: center; font-family: var(--ff-mono); font-size: 0.66rem; color: var(--muted-2); padding: 3px 0; }
.bk-day { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-family: var(--ff-mono); font-size: 0.82rem; color: var(--text); transition: border-color 0.15s, background 0.15s, color 0.15s; }
.bk-day--empty { border: none; background: none; cursor: default; }
.bk-day--off { color: var(--muted-2); opacity: 0.38; border-color: transparent; cursor: default; }
.bk-day:not(.bk-day--off):not(.bk-day--empty):hover { border-color: var(--green); color: var(--green-2); }
.bk-day.is-today { border-color: var(--muted-2); }
.bk-day.is-selected { background: var(--green); border-color: var(--green); color: #fff; }
.bk-panel { margin-top: 16px; }
.bk-hint { font-size: 0.86rem; color: var(--muted); }
.bk-slots-label { display: block; font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.bk-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.bk-slot { padding: 9px 0; border: 1px solid var(--line-2); border-radius: 8px; background: #fff; font-size: 0.82rem; color: var(--text); transition: border-color 0.15s, color 0.15s; }
.bk-slot:hover { border-color: var(--green); color: var(--green-2); }
.bk-slot.is-selected { background: var(--green); border-color: var(--green); color: #fff; }
.bk-confirm { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 11px; }
.bk-chosen { font-size: 0.94rem; }
.bk-field { display: flex; flex-direction: column; gap: 5px; }
.bk-field__label { font-size: 0.78rem; color: var(--muted); }
.bk-input { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 10px 12px; transition: border-color 0.2s, background 0.2s; }
.bk-input:focus { border-color: var(--orange); background: #fff; outline: none; }
.bk-status { font-size: 0.88rem; padding: 10px 13px; border-radius: var(--radius-sm); }
.bk-status--ok { background: var(--green-dim); border: 1px solid var(--green); color: var(--green-2); }
.bk-status--err { background: rgba(224,83,59,0.10); border: 1px solid #e0533b; color: #b3271a; }
@media (max-width: 560px) { .bk-slots { grid-template-columns: repeat(3, 1fr); } }

.contact__regions a { color: var(--orange); }
.contact__regions a:hover { text-decoration: underline; }

/* ---------- Locality landing pages ---------- */
.loc-hero { position: relative; padding-block: clamp(56px, 10vh, 118px) clamp(28px, 5vh, 56px); overflow: hidden; }
.loc-hero__eyebrow { margin-bottom: 22px; }
.loc-hero__title { font-family: var(--ff-display); font-weight: 800; line-height: 1.1; font-size: clamp(1.9rem, 4.6vw, 3.5rem); letter-spacing: -0.01em; margin: 0; }
.loc-hero__title .accent-text { color: var(--orange); }
.loc-hero__lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); margin-top: 22px; max-width: 640px; }
.loc-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.loc-facts { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 36px; max-width: 640px; }

.loc-cta-band {
  background: var(--sky); color: #fff; border-radius: var(--radius);
  padding: clamp(32px, 5vw, 58px); text-align: center;
}
.loc-cta-band h2 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.5rem); color: #fff; line-height: 1.1; }
.loc-cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 580px; margin: 16px auto 28px; }
.loc-cta-band .loc-cta__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.loc-cta-band .btn--ghost { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.loc-cta-band .btn--ghost:hover { background: rgba(255, 255, 255, 0.22); border-color: #fff; color: #fff; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; padding-top: 44px; padding-bottom: 80px; }
.legal h1 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.02em; margin-bottom: 6px; }
.legal__updated { font-family: var(--ff-mono); font-size: 0.74rem; color: var(--muted-2); margin-bottom: 30px; }
.legal h2 { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; margin: 30px 0 10px; }
.legal p { color: var(--muted); font-size: 0.98rem; line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin-bottom: 14px; }
.legal li { color: var(--muted); font-size: 0.98rem; line-height: 1.7; list-style: disc; margin-bottom: 6px; }
.legal a { color: var(--orange); }
.legal strong { color: var(--text); }
.legal .fill { background: var(--orange-dim); color: var(--orange); padding: 0 5px; border-radius: 3px; font-style: normal; font-family: var(--ff-mono); font-size: 0.86em; }
.legal-back { margin-left: auto; font-family: var(--ff-mono); font-size: 0.86rem; color: var(--muted); }
.legal-back:hover { color: var(--orange); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { border-top: 1px solid var(--line); padding-block: 46px; margin-top: 20px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 30px; align-items: start; }
.footer__claim { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer__nav a:hover { color: var(--orange); }
.footer__legal { display: flex; flex-direction: column; gap: 8px; }
.footer__legal a { color: var(--muted); font-size: 0.88rem; }
.footer__legal a:hover { color: var(--text); }
.footer__copy { color: var(--muted-2); font-size: 0.74rem; margin-top: 10px; }

/* ===================================================================
   CHATBOT, guided, converts to call / appointment
   =================================================================== */
.chat-launcher {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(189, 21, 29, 0.5);
  transition: transform 0.2s ease;
}
.chat-launcher:hover { transform: translateY(-2px); }
.chat-launcher svg { width: 26px; height: 26px; }

.chat-panel {
  position: fixed; right: 20px; bottom: 88px; z-index: 200;
  width: 360px; max-width: calc(100vw - 32px); max-height: min(72vh, 560px);
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.28); overflow: hidden;
  animation: chatIn 0.22s var(--ease);
}
@keyframes chatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.chat-panel[hidden] { display: none; }

.chat-head { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 2px 8px; padding: 13px 46px 13px 16px; border-bottom: 1px solid var(--line); }
.chat-head__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.8s infinite; }
.chat-head__title { font-family: var(--ff-display); font-weight: 800; font-size: 1.02rem; }
.chat-head__sub { width: 100%; font-size: 0.7rem; letter-spacing: 0.04em; color: var(--muted); }
.chat-close { position: absolute; top: 10px; right: 12px; width: 28px; height: 28px; border-radius: 8px; color: var(--muted); font-size: 0.9rem; }
.chat-close:hover { background: var(--bg-2); color: var(--text); }

.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 86%; padding: 10px 13px; border-radius: 13px; font-size: 0.9rem; line-height: 1.5; }
.chat-msg--bot { background: var(--bg-2); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg--user { background: var(--orange); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-quick { display: flex; flex-direction: column; gap: 8px; align-self: stretch; }
.chat-chip { text-align: left; padding: 10px 13px; border: 1px solid var(--line-2); border-radius: 10px; font-size: 0.86rem; color: var(--text); background: #fff; transition: border-color 0.2s, color 0.2s; }
.chat-chip:hover { border-color: var(--orange); color: var(--orange); }
.chat-chip--ghost { color: var(--muted); }
.chat-chip--book { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 700; }
.chat-chip--book:hover { filter: brightness(1.06); color: #fff; border-color: var(--orange); }
.chat-nudge { font-family: var(--ff-mono); font-size: 0.74rem; color: var(--muted-2); align-self: flex-start; }

/* typing indicator */
.chat-typing { display: inline-flex; align-items: center; gap: 4px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); display: inline-block; animation: chatDot 1s infinite ease-in-out; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatDot { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* free-text input row */
.chat-input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-input__field {
  flex: 1; min-width: 0; padding: 10px 13px; border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 0.88rem; color: var(--text); background: var(--surface-2); transition: border-color 0.2s;
}
.chat-input__field:focus { outline: none; border-color: var(--orange); background: #fff; }
.chat-input__send {
  flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff;
  font-size: 0.95rem; display: grid; place-items: center; transition: filter 0.2s, transform 0.2s;
}
.chat-input__send:hover { filter: brightness(1.06); transform: scale(1.05); }

.chat-foot { display: flex; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--line); background: var(--surface-2); }
.chat-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 12px; border-radius: 10px; font-family: var(--ff-display); font-weight: 700; font-size: 0.86rem; border: 1px solid transparent; transition: border-color 0.2s, color 0.2s, filter 0.2s; }
.chat-cta--call { background: var(--orange); color: #fff; }
.chat-cta--call:hover { filter: brightness(1.06); }
.chat-cta--book { background: #fff; border-color: var(--line-2); color: var(--text); }
.chat-cta--book:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 560px) {
  .chat-panel { right: 12px; left: 12px; bottom: 82px; width: auto; max-width: none; }
  .chat-launcher { right: 16px; bottom: 16px; }
}

/* ===================================================================
   PROOF / BEWEISKETTE (dark band)
   =================================================================== */
.viewport__illus { font-size: 0.68rem; color: var(--muted-2); margin-top: 8px; letter-spacing: 0.04em; }

.section--proof { background: var(--sky); color: #fff; }
.section--proof .section__head { max-width: 760px; margin-inline: auto; text-align: center; }
.section--proof .section__kicker { color: var(--orange-2); }
.section--proof .section__title { color: #fff; }
.section--proof .section__lead { color: rgba(255, 255, 255, 0.76); margin-inline: auto; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.proof-item { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; padding: 22px 20px; }
.proof-item__ic { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; color: #fff; background: var(--orange); padding: 4px 9px; border-radius: 6px; margin-bottom: 12px; }
.proof-item__t { font-family: var(--ff-display); font-weight: 600; color: #fff; font-size: 1rem; margin-bottom: 8px; line-height: 1.25; }
.proof-item__b { color: rgba(255, 255, 255, 0.78); font-size: 0.9rem; line-height: 1.55; }
.proof-note { margin-top: 24px; text-align: center; color: rgba(255, 255, 255, 0.55); font-size: 0.76rem; max-width: 760px; margin-inline: auto; line-height: 1.6; }

/* ===================================================================
   RECHENBEISPIEL
   =================================================================== */
.calc { margin-top: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); }
.calc__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.calc__table { width: 100%; border-collapse: collapse; }
.calc__table td { padding: 12px 6px; border-bottom: 1px solid var(--line); font-size: 0.93rem; color: var(--muted); vertical-align: top; }
.calc__table tr:last-child td { border-bottom: none; }
.calc__val { text-align: right; font-family: var(--ff-mono); color: var(--text); padding-left: 18px; }
.calc__hl td { color: var(--text); font-weight: 600; }
.calc__hl .calc__val { color: var(--orange); font-weight: 700; }
.calc__cmp td { color: var(--muted); }
.calc .price__note { margin-top: 18px; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); padding: 2px 18px; transition: border-color 0.2s; }
.faq__item[open] { border-color: var(--line-2); }
.faq__q { cursor: pointer; font-family: var(--ff-display); font-weight: 600; font-size: 1rem; padding: 16px 30px 16px 0; position: relative; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: 0; top: 13px; color: var(--orange); font-size: 1.4rem; line-height: 1; transition: transform 0.25s var(--ease); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { color: var(--muted); font-size: 0.94rem; line-height: 1.65; margin: 0; padding: 0 0 18px; }

/* ===================================================================
   LEAD MAGNET
   =================================================================== */
.section--lead { background: var(--bg-2); }
.lead { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.lead__copy .section__kicker { margin-top: 0; }
.lead__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 30px); display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow); }
.lead__field { display: flex; flex-direction: column; gap: 6px; }
.lead__label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.lead__input { padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--surface-2); font-size: 0.95rem; }
.lead__input:focus { outline: none; border-color: var(--orange); background: #fff; }
.lead__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.lead__consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--orange); }
.lead__consent a { color: var(--orange); text-decoration: underline; }
.lead__optin { font-size: 0.72rem; color: var(--muted-2); }
.lead__status { font-size: 0.88rem; padding: 10px 13px; border-radius: var(--radius-sm); }
.lead__status--ok { background: var(--green-dim); border: 1px solid var(--green); color: var(--green-2); }
.lead__status--err { background: rgba(224, 83, 59, 0.10); border: 1px solid #e0533b; color: #b3271a; }
.lead__status a { color: inherit; text-decoration: underline; font-weight: 700; }
.ref-note { margin-top: 20px; text-align: center; color: var(--muted-2); font-size: 0.78rem; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; gap: 36px; }
  .hero__media-veil {
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.68) 48%, rgba(255,255,255,0.86) 78%, var(--bg) 100%);
  }
  .viewport { max-width: 520px; }
  .about, .contact, .timelapse, .fpv, .lead { grid-template-columns: 1fr; }
  .timelapse__media { order: -1; }
  .fpv__media { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan--featured, .plan--featured:hover { transform: none; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .tl:not(:last-child)::after { display: none; }
  .about__visual { max-width: 360px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
  .hero__stats { gap: 22px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .fpv-how__steps { grid-template-columns: 1fr; }
  .setup { flex-direction: column; align-items: flex-start; }
  .setup__price { align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; }
  .viewport__phase { font-size: 0.95rem; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scene .layer { opacity: 1 !important; transform: none !important; }
  .drone { animation: none !important; transform: translate(150px, -3px); }
  .drone__light { animation: none !important; }
  .hero__video { display: none; }
  .hero__media { background: var(--bg-2); }
}

/* FPV zwei Ebenen: Querformat (16:9) oben, Hochformat/Shorts (9:16) darunter */
.fpv-gallery--wide { grid-template-columns: repeat(2, 1fr); }
.fpv-gallery--tall { grid-template-columns: repeat(3, 1fr); max-width: 840px; margin-inline: auto; margin-top: 16px; }
.fpv-tile--tall { aspect-ratio: 9 / 16; }
@media (max-width: 620px) {
  .fpv-gallery--wide { grid-template-columns: 1fr; }
  .fpv-gallery--tall { grid-template-columns: 1fr; max-width: 500px; }
}
.hero--fpv { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.hero__inner--solo { grid-template-columns: 1fr; min-height: min(66vh, 600px); }
.hero__inner--solo .hero__copy { max-width: 760px; }

/* ---------- Welcome audio (ElevenLabs) ---------- */
.section--welcome { background: var(--bg-2); }
.welcome { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.welcome__copy .section__kicker { margin-top: 0; }
.welcome__text { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.12rem); margin-top: 16px; max-width: 560px; }
.welcome__controls { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.welcome__play { gap: 10px; }
.welcome__play-ic { font-size: 0.9rem; }
.welcome__photo { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.welcome__photo img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (max-width: 900px) { .welcome { grid-template-columns: 1fr; } }
/* ---------- Direct Mission (WhatsApp) nav button ---------- */
.nav__direct { background: #25d366; color: #fff; border: none; display: inline-flex; align-items: center; gap: 7px; }
.nav__direct:hover { color: #fff; filter: brightness(1.05); box-shadow: 0 10px 26px -10px rgba(37, 211, 102, 0.55); }
.nav__direct svg { width: 16px; height: 16px; flex: none; }
@media (max-width: 560px) {
  .nav__direct-txt { display: none; }
  .nav__direct { padding: 10px; }
}