/*
 * BLACK HAWK — Unified Experience System
 * Final design layer shared by the public site and admin console.
 * Loaded after legacy/page styles so every screen follows one visual system.
 */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg2: #f2f4f4;
  --bg3: #e8edf1;
  --surface: #ffffff;
  --surface2: #f2f4f4;
  --primary: #121212;
  --primary-soft: #1e1e1e;
  --primary-light: #2c2c2c;
  --accent: #d30005;
  --accent-hover: #b70004;
  --accent-soft: #ef2429;
  --accent-dim: rgba(211, 0, 5, .08);
  --accent-glow: rgba(211, 0, 5, .14);
  --text: #121212;
  --text-secondary: #4f5e71;
  --muted: #7b8795;
  --line: #e8edf1;
  --line-strong: #d6dde3;
  --white: #ffffff;
  --container: 1272px;
  --header-height: 79px;
  --font-display: 'Urbanist', 'Inter', Arial, sans-serif;
  --font-body: 'Urbanist', 'Inter', Arial, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow-sm: none;
  --shadow-md: 0 8px 24px rgba(18, 18, 18, .06);
  --shadow-lg: 0 14px 36px rgba(18, 18, 18, .08);
  --shadow-xl: 0 20px 50px rgba(18, 18, 18, .10);
  --shadow-red: none;
  --focus-ring: 0 0 0 4px rgba(211, 0, 5, .13);
}

html { scroll-padding-top: calc(var(--header-height) + 24px); }

body {
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

body::before { display: none; }

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container.narrow { width: min(calc(100% - 48px), 848px); }

.skip-link {
  position: fixed;
  z-index: 10020;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  height: 2px;
  background: var(--accent);
  border-radius: 0;
}

/* Header */
.site-header,
.site-header.scrolled {
  position: sticky;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  padding: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.site-header::after { display: none; }

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.brand { gap: 10px; min-width: 0; }
.brand-logo { width: 110px; aspect-ratio: 360 / 195; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: none; }

.main-nav { min-width: 0; justify-content: center; }
.main-nav ul { gap: clamp(13px, 1.6vw, 28px); }
.main-nav a {
  min-height: var(--header-height);
  padding: 2px 0 0;
  color: #313944;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav a::after {
  bottom: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 0;
}

.main-nav a:hover,
.main-nav a.active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Buttons */
.primary-btn,
.primary-btn.gold,
.primary-btn.red,
.ghost-btn,
.danger-btn,
.footer-cta {
  min-height: 42px;
  padding: 11px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.primary-btn,
.primary-btn.gold,
.primary-btn.red {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.primary-btn:hover,
.primary-btn.gold:hover,
.primary-btn.red:hover {
  color: #fff;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: none;
  transform: translateY(-1px);
}

.ghost-btn {
  color: var(--text);
  background: #fff;
  border-color: var(--line-strong);
}

.ghost-btn:hover {
  color: var(--accent);
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.small-btn { min-height: 38px; padding: 9px 16px; font-size: 13px; }
.header-booking { min-width: 108px; }

/* Typography and spacing */
.section { padding: clamp(72px, 7vw, 96px) 0; }
.section-soft,
section[style*="background:var(--bg2)"] { background: var(--bg2) !important; }

.section-header,
.section-header--balanced {
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section-eyebrow,
.card-tag,
.bh-cinematic-hero .bh-hero-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-eyebrow::before { width: 22px; height: 2px; background: var(--accent); }

.section-title {
  color: var(--text);
  font-size: clamp(32px, 3.1vw, 40px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-transform: none;
}

.section-title em { color: var(--accent); font-family: inherit; font-style: normal; font-weight: 700; }
.section-header-copy,
.lead { color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.section-header-copy { max-width: 650px; margin-top: 14px; }
.centered-section-head { max-width: 720px; margin-bottom: 48px; }

/* Light editorial hero — simplified visual hierarchy */
.bh-cinematic-hero {
  min-height: clamp(520px, 66vh, 650px);
  padding: clamp(72px, 8vw, 104px) 0;
  color: var(--text);
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.bh-cinematic-hero::before {
  display: block;
  z-index: 0;
  width: min(48vw, 720px);
  height: min(48vw, 720px);
  left: auto;
  right: -9%;
  top: 50%;
  bottom: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #ee3035 0 11%, var(--accent) 12% 62%, #ac0004 63% 100%);
  opacity: .96;
  transform: translateY(-50%);
  clip-path: none;
  filter: none;
}

.bh-cinematic-hero::after {
  display: block;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(242,244,244,1) 0%, rgba(242,244,244,.96) 46%, rgba(242,244,244,.18) 75%, transparent 100%),
    linear-gradient(rgba(18,18,18,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,18,18,.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 1;
}

.bh-cinematic-hero .bh-particles,
.bh-cinematic-hero .bh-hero-depth,
.bh-cinematic-hero .bh-hero-overlays,
.bh-cinematic-hero .bh-hero-noise,
.bh-cinematic-hero .bh-hero-fog,
.bh-cinematic-hero .bh-hero-scanlines,
.bh-cinematic-hero .bh-clouds,
.bh-cinematic-hero .bh-hero-flight-paths,
.bh-cinematic-hero .bh-radar,
.bh-cinematic-hero .bh-hero-tags,
.bh-cinematic-hero .bh-hero-hud-line { display: none !important; }

.bh-cinematic-hero .bh-hero-airspace,
.bh-cinematic-hero .bh-hero-airspace-front,
.bh-cinematic-hero .bh-paragliders {
  z-index: 1;
  opacity: .62;
  filter: saturate(.86) contrast(1.06) drop-shadow(0 16px 30px rgba(18,18,18,.12));
}

.bh-cinematic-hero .bh-paragliders { opacity: .72; }

.bh-cinematic-hero .bh-hero-container {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--container));
  min-height: auto;
  margin-inline: auto;
  padding: 0;
  display: block;
}

.bh-cinematic-hero .bh-hero-content {
  width: auto;
  min-width: 0;
  max-width: min(650px, 58%);
  padding: 0;
  color: var(--text);
  text-shadow: none;
}

.bh-cinematic-hero .bh-breadcrumb {
  margin: 0 0 26px;
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.bh-cinematic-hero .bh-hero-eyebrow {
  margin: 0 0 13px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}
.bh-cinematic-hero .bh-hero-eyebrow::before { display: none; }

.bh-cinematic-hero .bh-hero-title,
.bh-cinematic-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 5.3vw, 72px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: none;
  text-shadow: none;
}

.bh-cinematic-hero h1 span { display: block; }
.bh-cinematic-hero h1 .bh-white,
.bh-cinematic-hero h1 .bh-outline { color: var(--text); -webkit-text-stroke: 0; text-shadow: none; }
.bh-cinematic-hero h1 .bh-red { color: var(--accent); }
.bh-cinematic-hero .bh-lead { max-width: 610px; margin: 24px 0 0; color: var(--text-secondary); font-size: 18px; line-height: 1.55; }
.bh-cinematic-hero .bh-hero-actions { margin-top: 30px; gap: 12px; }

/* Cards and grids */
.grid-2 { gap: 24px; }
.grid-3 { gap: 24px; }
.grid-4 { gap: 24px; }

.card,
.fleet-card,
.team-card,
.location-card,
.feature-panel,
.panel,
.tactical-form,
.article-card,
.detail-media-card,
.contact-form,
.contact-info-panel,
.training-empty-state,
.empty-state {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.card:hover,
.team-card:hover,
.location-card:hover { border-color: var(--line-strong); box-shadow: none; transform: translateY(-3px); }

.card,
.team-card { display: flex; height: 100%; flex-direction: column; }

.image-card { overflow: hidden; }
.image-card .thumb { min-height: 228px; background: #dfe4e7; }
.image-card .thumb::after { background: linear-gradient(180deg, transparent 65%, rgba(18,18,18,.16)); }
.image-card img { min-height: 228px; max-height: 228px; object-fit: cover; }
.image-card:hover img { transform: scale(1.025); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.card-title { display: -webkit-box; min-height: 2.36em; margin-top: 9px; overflow: hidden; color: var(--text); font-size: 22px; font-weight: 700; letter-spacing: -.02em; line-height: 1.18; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.card-text { margin-top: 10px; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.card-text--clamp,
.team-bio--clamp {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card-text--clamp { min-height: 4.8em; }
.card-tag { font-size: 11px; letter-spacing: .1em; }
.meta-line { color: var(--text-secondary); font-size: 13px; }
.mission-card .meta-line { min-height: 48px; }
.price-badge { margin-top: 14px; padding: 0; color: var(--accent); background: transparent; border: 0; border-radius: 0; font-size: 15px; letter-spacing: 0; text-transform: none; }
.card-actions {
  display: grid;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  border-top: 0;
}
.card-actions--booking { grid-template-columns: minmax(96px, .82fr) minmax(148px, 1.35fr); }
.card-actions--single { grid-template-columns: minmax(0, 1fr); }
.card-actions > a,
.card-actions > button { width: 100%; min-height: 44px; justify-content: center; text-align: center; white-space: normal; }
.training-program-card .card-text,
.fleet-card .card-text { flex: 1; }
.training-program-card .meta-line,
.fleet-card .meta-line { margin-top: auto; padding-top: 18px; }

.feature-panel,
.panel { padding: clamp(26px, 3vw, 38px); }
.feature-panel::before { width: 100%; height: 3px; background: var(--accent); }
.feature-panel h3 { font-size: 22px; letter-spacing: -.02em; }
.icon-list i { color: #fff; background: var(--accent); border: 0; border-radius: 50%; }

.hud-row {
  padding: 15px 0;
  color: var(--text-secondary);
  border-color: var(--line-strong);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.hud-row span:last-child { color: var(--text); text-align: right; }

.team-card { overflow: hidden; }
.team-card::before { display: none; }
.team-card .team-photo { height: 280px; background: #dfe4e7; }
.team-card .team-photo img { height: 100%; object-fit: cover; }
.team-card .team-photo .rank-badge { color: #fff; background: var(--accent); border: 0; border-radius: 4px; box-shadow: none; }
.team-card .team-info { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.team-card .team-name { font-size: 22px; letter-spacing: -.02em; }
.team-card .team-role { color: var(--accent); letter-spacing: .06em; }
.team-card .cert-tag { color: var(--text-secondary); background: #fff; border-color: var(--line-strong); border-radius: 4px; }
.team-bio--clamp { min-height: 4.8em; }
.team-bio--preview { display: -webkit-box; min-height: 8em; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}
.card-read-more span { transition: transform .2s ease; }
.card-read-more:hover span { transform: translateX(4px); }
.bio-read-more { margin-top: auto; padding-top: 18px; }
.bio-read-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}
.bio-read-more summary::-webkit-details-marker { display: none; }
.bio-read-more summary span { font-size: 20px; font-weight: 500; line-height: 1; transition: transform .2s ease; }
.bio-read-more[open] summary span { transform: rotate(45deg); }
.bio-read-more__panel { padding: 15px 2px 2px; color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

.about-story-layout { align-items: center; gap: clamp(36px, 6vw, 86px); }
.about-story-lead { margin-top: 16px; }
.about-story-values { margin-top: 32px; }
.about-story-media {
  position: relative;
  padding: clamp(12px, 1.5vw, 20px);
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.about-story-media::before { content: ''; position: absolute; top: 20px; bottom: 20px; left: -1px; width: 3px; background: var(--accent); }
.about-story-image { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: calc(var(--radius) - 6px); }

.location-card { padding: 30px; text-align: left; }
.location-icon { color: var(--accent); background: #fff; border: 1px solid var(--line); box-shadow: none; }
.location-card h3 { font-size: 22px; letter-spacing: -.02em; }

.detail-layout { grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr); gap: 24px; align-items: start; }
.detail-media-card { overflow: hidden; }
.detail-media-card img { width: 100%; min-height: 520px; object-fit: cover; }
.detail-specs { margin-top: 26px; padding: 22px 26px; background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius); }

.article-card { overflow: hidden; }
.article-media img { width: 100%; min-height: 430px; max-height: 520px; object-fit: cover; }
.article-content { padding: clamp(28px, 5vw, 56px); background: #fff; }
.article-body { color: #344150; font-size: 17px; line-height: 1.8; }

/* Gallery */
.gallery-grid,
.gallery-grid--polished {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 24px;
}

.gallery-grid .item,
.gallery-grid .item:nth-child(5n+1),
.gallery-grid .item:nth-child(7n+3) {
  min-height: 320px;
  grid-column: auto;
  grid-row: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg2);
  box-shadow: none;
}

.gallery-grid img { width: 100%; height: 320px; object-fit: cover; }
.gallery-grid .overlay { padding: 22px; background: linear-gradient(180deg, transparent 32%, rgba(18,18,18,.88)); opacity: 1; }
.gallery-grid .overlay span { font-size: 18px; font-weight: 700; }
.gallery-grid .overlay small { color: rgba(255,255,255,.75); }

/* Forms, booking and contact */
label {
  margin-bottom: 8px;
  color: #344150;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

input,
select,
textarea {
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 15px;
}

textarea { min-height: 120px; }
input:hover,
select:hover,
textarea:hover { border-color: #aeb8c2; }
input:focus,
select:focus,
textarea:focus { background: #fff; border-color: var(--accent); box-shadow: var(--focus-ring); }

.booking-page { background: #fff; }
.booking-container { max-width: 1040px; }
.booking-steps { max-width: 740px; margin: 0 auto 32px; }
.booking-step { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0; text-transform: none; }
.booking-step::after { background: var(--line-strong); }
.booking-step .step-num { color: var(--text-secondary); background: #fff; border: 1px solid var(--line-strong); box-shadow: none; }
.booking-step.active .step-num,
.booking-step.done .step-num { color: #fff; background: var(--accent); border-color: var(--accent); }

.booking-form,
.confirmation-card { padding: clamp(28px, 5vw, 56px); background: #fff; border-color: var(--line); }
.booking-form::before,
.contact-form::before { height: 3px; background: var(--accent); }
.booking-form-intro { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.booking-form-intro span,
.booking-section-heading > span { color: var(--accent); background: transparent; border: 0; border-radius: 0; padding: 0; }
.booking-form-intro h2,
.booking-section-heading h2 { color: var(--text); font-size: clamp(24px, 3vw, 32px); letter-spacing: -.025em; }
.booking-form-section + .booking-form-section { margin-top: 38px; padding-top: 38px; border-color: var(--line); }
.booking-activity-grid { gap: 12px; }
.booking-activity-option { padding: 20px; background: var(--bg2); border: 1px solid transparent; border-radius: var(--radius); box-shadow: none; }
.booking-activity-option:hover,
.booking-activity-option:focus-within { border-color: var(--line-strong); box-shadow: none; transform: none; }
.booking-activity-option.is-selected { background: #fff; border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.booking-option-mark { background: #fff; border-color: #9ba6b2; }
.booking-activity-option.is-selected .booking-option-mark { background: var(--accent); border-color: var(--accent); }
.booking-activity-title { color: var(--text); font-size: 18px; }
.booking-activity-price { color: var(--accent); }
.booking-choice-row { background: var(--bg2); border: 1px solid var(--line); border-radius: 8px; }
.booking-submit-row { border-color: var(--line); }
.booking-submit { border-radius: 999px; }

.contact-layout { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 24px; align-items: stretch; }
.contact-info-panel { padding: clamp(28px, 4vw, 46px); background: var(--bg2); }
.contact-form-panel { border-radius: var(--radius); }
.contact-form { padding: clamp(28px, 4vw, 46px); background: #fff; }
.contact-form__eyebrow,
.contact-form__badge { color: var(--accent); background: var(--accent-dim); border-color: rgba(211,0,5,.14); }
.contact-form__header h3 { color: var(--text); font-size: 30px; letter-spacing: -.03em; }
.contact-form__submit { min-height: 48px; border-radius: 4px; }

.alert-success,
.alert-error,
.alert-danger,
.alert-warning { border-radius: 8px; box-shadow: none; }

.empty-state { padding: 48px 28px; text-align: center; }
.empty-state strong { color: var(--text); font-size: 22px; }
.empty-state p { color: var(--text-secondary); }

.confirmation-card { text-align: center; }
.success-mark { color: #fff; background: var(--accent); border: 0; box-shadow: none; }
.confirmation-summary { gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.confirmation-summary > div { padding: 18px; background: var(--bg2); border: 0; border-radius: 0; }

/* Drone academy follows the same restrained card system */
.drone-academy {
  --academy-dark: var(--text);
  --academy-line: var(--line);
  --academy-red: var(--accent);
  --academy-red-soft: var(--accent);
  padding: clamp(72px, 7vw, 96px) 0;
  background: var(--bg2);
}
.drone-academy::before,
.drone-academy__signal { display: none; }
.drone-academy::after { background: var(--line); }
.drone-academy__grid-bg { opacity: .24; background-size: 48px 48px; }
.drone-academy__lead { color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.drone-academy__principle,
.drone-academy__summary div,
.drone-module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}
.drone-academy__principle:hover,
.drone-module:hover { background: #fff; border-color: var(--line-strong); box-shadow: none; transform: translateY(-2px); }
.drone-academy__principle-mark { background: var(--accent); border-radius: 50%; box-shadow: none; }
.drone-academy__summary div::after,
.drone-module::before { display: none; }
.drone-console { border-color: var(--line-strong); border-radius: var(--radius); box-shadow: none; }
.drone-academy__modules-head { border-color: var(--line-strong); }
.drone-academy__modules-head h3,
.drone-module h4 { color: var(--text); letter-spacing: -.02em; }
.drone-module__topline > span:first-child { color: var(--accent); }

/* Compact page hero used by waiver and fallback pages */
.page-hero {
  min-height: 280px;
  padding: 64px 0;
  color: var(--text);
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
.page-hero::before { background: radial-gradient(circle at 88% 40%, rgba(211,0,5,.14), transparent 30%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--text); font-size: clamp(42px, 5vw, 60px); letter-spacing: -.05em; text-shadow: none; }
.page-hero .breadcrumb { color: var(--muted); }
.page-hero .lead { color: var(--text-secondary); }

/* Footer */
.site-footer {
  position: relative;
  padding: 0 0 32px;
  color: #aaafb6;
  background:
    linear-gradient(105deg, rgba(211,0,5,.06) 0 15%, transparent 15.1%),
    radial-gradient(ellipse at 72% 42%, rgba(255,255,255,.055) 0 1px, transparent 2px) 0 0 / 21px 21px,
    linear-gradient(130deg, transparent 0 64%, rgba(255,255,255,.035) 64% 64.2%, transparent 64.2%),
    #1e1e1e;
}

.site-footer::before { display: none; }
.footer-intro { position: relative; min-height: 140px; padding: 32px 0 32px 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-intro::before { content: ''; position: absolute; top: 32px; bottom: 32px; left: 0; width: 3px; background: var(--accent); }
.footer-intro span { color: #aaafb6; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.footer-intro h2 { margin-top: 6px; color: #fff; font-size: clamp(26px, 3vw, 38px); line-height: 1.1; letter-spacing: -.035em; }
.footer-cta { display: inline-flex; align-items: center; gap: 20px; color: #fff; background: var(--accent); border-color: var(--accent); white-space: nowrap; }
.footer-cta:hover { color: #fff; background: var(--accent-hover); }
.footer-cta span { color: #fff; font-size: 20px; letter-spacing: 0; }
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1.25fr; gap: clamp(30px, 4.3vw, 62px); padding: 58px 0 50px; }
.footer-logo { width: 110px; height: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.site-footer h3 { margin-bottom: 12px; font-size: 22px; letter-spacing: .08em; }
.site-footer h4 { margin-bottom: 20px; color: #fff; font-size: 14px; letter-spacing: 0; text-transform: none; }
.site-footer p,
.site-footer a,
.site-footer li { color: #aaafb6; font-size: 14px; line-height: 1.7; }
.site-footer a { transition: color .2s ease, transform .2s ease; }
.site-footer a:hover { color: #fff; transform: translateX(3px); }
.footer-cta:hover { transform: translateY(-2px); }
.footer-links { display: grid; gap: 11px; }
.footer-links li { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #858b93; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: #858b93; }

/* Admin console */
.admin-body {
  background: #f5f6f7;
  color: var(--text);
  font-size: 15px;
}

.admin-shell { grid-template-columns: 278px minmax(0, 1fr); }
.admin-sidebar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 22px 16px;
  color: #fff;
  background: #1e1e1e;
  border-right: 0;
  overflow-y: auto;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 10px 20px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
}
.admin-brand img { width: 78px; filter: brightness(0) invert(1); }
.admin-brand span { font-size: 13px; letter-spacing: .08em; }
.admin-brand small { color: #aaafb6; font-size: 9px; letter-spacing: .16em; }
.admin-nav { gap: 2px; }
.admin-nav-label { margin: 20px 12px 7px; color: #777d85; font-size: 10px; letter-spacing: .12em; }
.admin-nav a {
  position: relative;
  min-height: 42px;
  margin: 0;
  padding: 10px 13px;
  color: #b9bec4;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.admin-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.admin-nav a.active { color: #fff; background: rgba(211,0,5,.18); }
.admin-nav a.active::before { content: ''; position: absolute; left: 0; top: 9px; bottom: 9px; width: 3px; background: var(--accent); border-radius: 0 3px 3px 0; }

.admin-content {
  min-width: 0;
  padding: clamp(24px, 3.5vw, 48px);
  background: #f5f6f7;
}
.admin-content > * { max-width: 1440px; margin-left: auto; margin-right: auto; }
.admin-page-head { align-items: end; margin-bottom: 28px; gap: 24px; }
.admin-page-head .section-eyebrow { margin-bottom: 8px; }
.admin-page-head .section-title,
.admin-content > .section-title { font-size: clamp(30px, 3vw, 40px); }

.admin-card {
  padding: 24px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}
.stats-row { gap: 16px; margin-bottom: 18px; }
.admin-stat { position: relative; min-height: 132px; padding: 26px 20px; text-align: left; overflow: hidden; }
.admin-stat::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--line-strong); }
.admin-stat.accent::before { background: var(--accent); }
.admin-stat .stat-value { color: var(--text); font-size: 30px; font-weight: 700; letter-spacing: -.035em; }
.admin-stat .stat-label { margin-top: 8px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: none; }
.admin-stat.accent .stat-value { color: var(--accent); }

.admin-table-wrap,
.admin-card > div[style*="overflow-x:auto"] { padding: 0; overflow-x: auto; }
.admin-card table { min-width: 720px; }
.admin-card th,
.admin-card td { padding: 15px 18px; border-color: var(--line); font-size: 14px; vertical-align: middle; }
.admin-card th { color: #697585; background: var(--bg2); font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.admin-card table tbody tr:hover { background: rgba(242,244,244,.72); }
.admin-row-actions { gap: 13px; }
.admin-row-actions a { color: var(--accent); font-weight: 700; }
.admin-link-danger { padding: 0; color: #a7191d; background: transparent; border: 0; font-size: 13px; font-weight: 700; }
.admin-empty { padding: 44px !important; color: var(--muted); }
.admin-form-card { max-width: 900px; padding: clamp(24px, 4vw, 40px); }
.admin-form-actions { padding-top: 8px; }
.admin-filter-grid { align-items: end; }
.status-badge { padding: 6px 10px; border-radius: 999px; font-size: 10px; letter-spacing: .04em; }

.admin-login-body { min-height: 100vh; background: #f5f6f7; }
.admin-login-body > .section { background: radial-gradient(circle at 50% 0, rgba(211,0,5,.08), transparent 34%), #f5f6f7 !important; }
.admin-login-body .tactical-form { padding: 40px !important; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 18px 50px rgba(18,18,18,.08); }

/* Responsive */
@media (max-width: 1180px) {
  .header-inner { gap: 20px; }
  .main-nav ul { gap: 14px; }
  .main-nav a { font-size: 13px; }
  .header-booking { min-width: 96px; padding-inline: 16px; }
}

@media (max-width: 991px) {
  :root { --header-height: 74px; }
  body.nav-open { overflow: hidden; }
  .site-header,
  .site-header.scrolled { min-height: var(--header-height); }
  .header-inner { min-height: var(--header-height); }
  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    left: 20px;
    right: 20px;
    display: block;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
  }
  .main-nav ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .main-nav a { min-height: 44px; padding: 0 12px; color: var(--text-secondary); background: var(--bg2); border-radius: 6px; }
  .main-nav a.active { color: #fff; background: var(--accent); }
  .menu-toggle { display: inline-flex; }
  .bh-cinematic-hero::before { right: -23%; width: 66vw; height: 66vw; opacity: .78; }
  .bh-cinematic-hero .bh-hero-content { max-width: 68%; }
  .grid-3,
  .grid-4,
  .gallery-grid,
  .gallery-grid--polished,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .detail-media-card img { min-height: 380px; }
  .footer-grid { gap: 40px; }
}

@media (max-width: 760px) {
  .container,
  .container.narrow,
  .header-inner,
  .bh-cinematic-hero .bh-hero-container { width: min(calc(100% - 32px), var(--container)); }
  .brand-logo { width: 96px; }
  .header-booking { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .main-nav { left: 12px; right: 12px; max-height: calc(100vh - 94px); overflow-y: auto; }
  .main-nav ul { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-header,
  .section-header--balanced { align-items: flex-start; flex-direction: column; gap: 20px; }
  .bh-cinematic-hero { min-height: 510px; padding: 64px 0; }
  .bh-cinematic-hero::before { right: -50%; width: 95vw; height: 95vw; opacity: .22; }
  .bh-cinematic-hero::after { background: linear-gradient(90deg, rgba(242,244,244,.98), rgba(242,244,244,.78)); }
  .bh-cinematic-hero .bh-hero-airspace,
  .bh-cinematic-hero .bh-hero-airspace-front,
  .bh-cinematic-hero .bh-paragliders { opacity: .10; }
  .bh-cinematic-hero .bh-hero-content { max-width: 100%; }
  .bh-cinematic-hero .bh-hero-title,
  .bh-cinematic-hero h1 { font-size: clamp(42px, 14vw, 58px); }
  .bh-cinematic-hero .bh-lead { font-size: 16px; }
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .gallery-grid--polished,
  .footer-grid,
  .confirmation-summary { grid-template-columns: 1fr; }
  .kicker-grid,
  .split-layout { grid-template-columns: 1fr; }
  .image-card .thumb,
  .image-card img { min-height: 220px; max-height: 220px; }
  .gallery-grid .item,
  .gallery-grid .item:nth-child(5n+1),
  .gallery-grid .item:nth-child(7n+3),
  .gallery-grid img { min-height: 280px; height: 280px; }
  .detail-media-card img,
  .article-media img { min-height: 260px; }
  .footer-intro { align-items: flex-start; flex-direction: column; }
  .footer-cta { width: 100%; justify-content: space-between; }
  .footer-intro { min-height: auto; padding: 30px 0 30px 18px; }
  .footer-intro::before { top: 30px; bottom: 30px; }
  .footer-grid { padding: 44px 0 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .booking-form,
  .confirmation-card,
  .contact-form { padding: 24px; }
  .booking-submit-row { align-items: stretch; flex-direction: column; }
  .booking-submit { width: 100%; }
  .admin-shell { display: block; }
  .admin-sidebar { position: sticky; z-index: 1001; height: auto; max-height: 45vh; padding: 10px 12px; }
  .admin-brand { display: none; }
  .admin-nav { display: flex; gap: 6px; overflow-x: auto; }
  .admin-nav-label { display: none; }
  .admin-nav a { flex: 0 0 auto; white-space: nowrap; }
  .admin-content { padding: 22px 12px; }
  .admin-page-head { align-items: flex-start; flex-direction: column; }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 460px) {
  .bh-cinematic-hero .bh-hero-actions,
  .card-actions,
  .detail-actions,
  .confirmation-actions { align-items: stretch; flex-direction: column; }
  .card-actions--booking { grid-template-columns: 1fr; }
  .bh-cinematic-hero .bh-hero-actions > *,
  .card-actions > *,
  .detail-actions > *,
  .confirmation-actions > * { width: 100%; }
  .stats-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
