:root {
  --bg: #0d0808;
  --bg-elevated: rgba(20, 10, 5, 0.84);
  --panel: rgba(24, 12, 6, 0.90);
  --panel-soft: rgba(36, 18, 8, 0.64);
  --line: rgba(255, 155, 80, 0.15);
  --text: #f0e9e2;
  --muted: #b5a090;
  --accent: #ff7e30;
  --accent-soft: #ffac68;
  --teal: #6ecdc8;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background: linear-gradient(
    180deg,
    #150920 0%,
    #220d14 6%,
    #2e1408 18%,
    #1f1008 40%,
    #130c08 65%,
    #0a0806 100%
  );
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

/* Arizona sunset horizon — warm orange left, dusky magenta right */
.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 120, 40, 0.24), transparent 20%),
    radial-gradient(circle at 84% 6%, rgba(155, 58, 105, 0.20), transparent 18%),
    radial-gradient(circle at 50% 42%, rgba(255, 90, 30, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 160, 70, 0.05) 0%, rgba(15, 8, 4, 0.08) 52%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
}

/* Canyon walls + horizon glow at bottom */
.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at -8% 28%, rgba(185, 70, 38, 0.16), transparent 22%),
    radial-gradient(circle at 108% 46%, rgba(120, 48, 72, 0.14), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 138, 54, 0.10), transparent 28%);
  pointer-events: none;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 24px 0 84px;
}

.page-header {
  padding-bottom: 84px;
}

/* ─── Nav ─────────────────────────────────────────────────────────────────── */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 150, 80, 0.14);
  border-radius: 22px;
  background: rgba(10, 5, 2, 0.72);
  backdrop-filter: blur(22px);
  position: relative;
  z-index: 300;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffb760 100%);
  color: #12080200;
  font-weight: 800;
  font-size: 1.25rem;
  color: #160802;
  box-shadow: 0 8px 24px rgba(255, 120, 40, 0.36);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.footer a,
.contact-card a,
.service-card a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.footer a:hover,
.contact-card a:hover,
.service-card a:hover {
  color: var(--accent-soft);
}

.nav-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 145, 60, 0.20);
  background: rgba(255, 120, 40, 0.07);
  color: var(--accent-soft);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-location svg {
  flex-shrink: 0;
  fill: currentColor;
}

/* Nav right: book button + location badge */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-book-btn {
  min-width: 0 !important;
  padding: 10px 18px !important;
  font-size: 0.84rem !important;
  white-space: nowrap;
}

/* ─── Dropdown Nav ────────────────────────────────────────────────────────── */

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -14px;
  min-width: 240px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(8, 4, 2, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 145, 70, 0.18);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.68);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
}

.nav-item:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  padding: 10px 14px;
  border-radius: 10px;
  color: #c8b8a8;
  font-size: 0.90rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
  display: block;
}

.nav-dropdown-panel a:hover {
  background: rgba(255, 130, 50, 0.12);
  color: var(--accent-soft);
}

/* ─── Hero CTA Bar ────────────────────────────────────────────────────────── */

.hero-cta-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 0 6px;
}

.hero-cta-bar .hero-actions {
  margin-top: 0;
}

.hero-cta-bar .nav-button-row {
  margin-top: 0;
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 380px);
  padding-top: 56px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3,
.panel-value,
.stats-grid strong,
.fleet-card h3 {
  margin: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.7rem, 8vw, 7rem);
  max-width: 12ch;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  max-width: 16ch;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.hero-text,
.section-heading p:last-child,
.story-copy p,
.service-card p,
.fleet-card p,
.contact-copy p,
.panel-copy,
.panel-stats span,
.stats-grid span,
.intro-strip p,
.story-aside p,
.operation-steps p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.hero-actions {
  display: flex;
  flex-wrap: nowrap;   /* all four on one line */
  gap: 8px;
  margin-top: 32px;
}

/* Hero-context buttons: compact so all 4 fit */
.hero-actions .button {
  min-width: 0;
  padding: 11px 15px;
  font-size: 0.86rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.97rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-3px);
}

/* Primary — AZ sunset fire */
.button-primary {
  background: linear-gradient(135deg, #ff6820 0%, #ffaa50 100%);
  color: #160802;
  box-shadow: 0 16px 40px rgba(255, 105, 30, 0.38);
}

.button-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 52%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-22deg);
  animation: shimmer 3.5s ease-in-out infinite;
}

.button-primary:hover {
  box-shadow: 0 22px 52px rgba(255, 105, 30, 0.50);
  background: linear-gradient(135deg, #ff7830 0%, #ffba60 100%);
}

/* Secondary — subtle warm glass */
.button-secondary {
  border-color: rgba(255, 155, 80, 0.22);
  background: rgba(255, 130, 50, 0.07);
  color: #f0dece;
}

.button-secondary:hover {
  border-color: rgba(255, 155, 80, 0.42);
  background: rgba(255, 130, 50, 0.13);
  box-shadow: 0 12px 32px rgba(255, 105, 30, 0.14);
}

/* Tertiary — teal contrast */
.button-tertiary {
  border-color: rgba(110, 205, 200, 0.28);
  background: rgba(110, 205, 200, 0.07);
  color: #d8f6f4;
}

.button-tertiary:hover {
  border-color: rgba(110, 205, 200, 0.48);
  background: rgba(110, 205, 200, 0.12);
  box-shadow: 0 12px 32px rgba(110, 205, 200, 0.12);
}

.button-quaternary {
  border-color: rgba(255, 221, 184, 0.26);
  background: rgba(255, 221, 184, 0.08);
  color: #ffe4c6;
}

.button-quaternary:hover {
  border-color: rgba(255, 221, 184, 0.42);
  background: rgba(255, 221, 184, 0.14);
  box-shadow: 0 12px 28px rgba(255, 190, 130, 0.12);
}

.nav-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 155, 80, 0.14);
  background: rgba(255, 130, 50, 0.05);
  color: #e4d4c4;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 170, 80, 0.38);
  background: rgba(255, 155, 60, 0.10);
  color: var(--accent-soft);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 16px;
  border: 1px solid rgba(255, 155, 80, 0.16);
  border-radius: 999px;
  background: rgba(255, 120, 40, 0.05);
  color: #e4d4c4;
  font-size: 0.95rem;
}

/* ─── Hero Panel ──────────────────────────────────────────────────────────── */

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-visual,
.panel-card,
.service-card,
.story-aside article,
.fleet-card,
.contact-card,
.booking-form,
.intro-strip,
.stats-section,
.story-section,
.operation-band,
.service-marquee {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 9, 4, 0.92), rgba(14, 7, 3, 0.87));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

/* AZ desert sunset — rich terracotta, deep canyon, twilight at bottom */
.hero-visual {
  position: relative;
  min-height: 420px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 14, 22, 0.08), rgba(4, 14, 22, 0.42)),
    linear-gradient(180deg, rgba(7, 18, 24, 0) 48%, rgba(7, 18, 24, 0.92) 100%),
    url("./images/sunset.jpg");
  background-size: cover;
  background-position: center;
  border-color: rgba(255, 140, 60, 0.22);
}

.section:nth-of-type(even):not(.service-marquee) {
  position: relative;
}

.section:nth-of-type(even):not(.service-marquee)::before {
  content: "";
  position: absolute;
  inset: 10px -12px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 120, 40, 0.03), rgba(255, 255, 255, 0.01));
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.sky-grid,
.desert-haze,
.sun-glow,
.flag-scene,
.mesa,
.ridge,
.saguaro,
.prickly-pear,
.dust,
.helicopter-scene {
  display: none;
}

.photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.photo-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 17, 23, 0.42);
  color: #f4efe8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.photo-copy {
  margin-top: auto;
  max-width: 320px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 17, 24, 0.22), rgba(7, 17, 24, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.photo-copy p {
  margin: 0 0 6px;
  color: #ffddb8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-copy strong {
  display: block;
  color: #f8fbfc;
  font-size: 1.3rem;
  line-height: 1.2;
}

/* ─── Hero Visual Layers ──────────────────────────────────────────────────── */

.sky-grid,
.desert-haze,
.sun-glow,
.flag-scene,
.mesa,
.ridge,
.saguaro,
.prickly-pear,
.dust,
.helicopter-scene {
  position: absolute;
}

.sky-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 100%);
}

.desert-haze {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 230, 190, 0.18), rgba(255, 230, 190, 0) 32%),
    linear-gradient(0deg, rgba(255, 180, 90, 0.16), transparent 32%);
}

.sun-glow {
  top: 26px;
  right: 28px;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 238, 190, 0.98), rgba(255, 168, 70, 0.50) 40%, rgba(255, 130, 40, 0.04) 74%);
  filter: blur(7px);
}

.flag-scene {
  top: 48px;
  left: 42px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  z-index: 1;
}

.flag-pole {
  width: 4px;
  height: 138px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d6dfe4, #93aab4);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.flag {
  position: relative;
  margin-top: 10px;
  width: 86px;
  height: 52px;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  animation: wave 3.2s ease-in-out infinite;
  transform-origin: left center;
}

.flag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 28px;
  background:
    radial-gradient(circle at 8px 7px, #ffffff 0 1.3px, transparent 1.5px),
    radial-gradient(circle at 18px 7px, #ffffff 0 1.3px, transparent 1.5px),
    radial-gradient(circle at 28px 7px, #ffffff 0 1.3px, transparent 1.5px),
    radial-gradient(circle at 13px 15px, #ffffff 0 1.3px, transparent 1.5px),
    radial-gradient(circle at 23px 15px, #ffffff 0 1.3px, transparent 1.5px),
    linear-gradient(180deg, #22477e, #1b3762);
  z-index: 2;
}

.flag span {
  display: block;
  height: calc(52px / 6);
}

.flag span:nth-child(odd) {
  background: #c53c3c;
}

.flag span:nth-child(even) {
  background: #f4f0e8;
}

.mesa {
  bottom: 95px;
  background: linear-gradient(180deg, rgba(255, 178, 110, 0.28), rgba(98, 48, 32, 0.94));
  clip-path: polygon(0% 100%, 0% 48%, 16% 42%, 24% 26%, 38% 23%, 45% 40%, 61% 37%, 72% 18%, 88% 15%, 100% 34%, 100% 100%);
  opacity: 0.94;
}

.mesa-far {
  left: -2%;
  width: 58%;
  height: 126px;
  opacity: 0.44;
}

.mesa-mid {
  right: 4%;
  width: 42%;
  height: 132px;
  opacity: 0.60;
}

.ridge {
  left: -5%;
  width: 110%;
  border-radius: 50% 50% 0 0;
}

.ridge-back {
  bottom: 52px;
  height: 120px;
  background: linear-gradient(180deg, rgba(130, 80, 50, 0.20), rgba(94, 50, 34, 0.92));
}

.ridge-front {
  bottom: -10px;
  height: 130px;
  background: linear-gradient(180deg, rgba(130, 68, 40, 0.46), rgba(68, 34, 20, 0.99));
}

.saguaro {
  bottom: 34px;
  width: 18px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #1f5750, #12352f);
  opacity: 0.90;
  z-index: 1;
}

.saguaro::before,
.saguaro::after {
  content: "";
  position: absolute;
  bottom: 38px;
  width: 12px;
  height: 44px;
  border-radius: 12px 12px 0 0;
  background: inherit;
}

.saguaro-left {
  left: 54px;
  height: 86px;
}

.saguaro-center {
  left: 148px;
  bottom: 30px;
  width: 22px;
  height: 112px;
  opacity: 0.96;
}

.saguaro-center::before {
  left: -12px;
  height: 50px;
  bottom: 38px;
  transform: rotate(-18deg);
}

.saguaro-center::after {
  right: -12px;
  height: 52px;
  bottom: 26px;
  transform: rotate(18deg);
}

.saguaro-left::before {
  left: -10px;
  transform: rotate(-18deg);
}

.saguaro-left::after {
  right: -9px;
  height: 34px;
  bottom: 24px;
  transform: rotate(20deg);
}

.saguaro-right {
  right: 66px;
  height: 96px;
}

.saguaro-right::before {
  left: -10px;
  height: 36px;
  bottom: 22px;
  transform: rotate(-20deg);
}

.saguaro-right::after {
  right: -10px;
  transform: rotate(20deg);
}

.prickly-pear {
  bottom: 24px;
  width: 74px;
  height: 54px;
  z-index: 1;
}

.prickly-pear::before,
.prickly-pear::after,
.prickly-pear {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.13), transparent 18%),
    linear-gradient(180deg, #2f7a68, #1b4c42);
}

.prickly-pear::before,
.prickly-pear::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 52px;
  bottom: 10px;
}

.prickly-pear::before {
  left: -10px;
}

.prickly-pear::after {
  right: -10px;
}

.prickly-pear-left {
  left: 88px;
}

.prickly-pear-right {
  right: 112px;
  transform: scale(0.92);
}

.dust {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 140, 0.22), rgba(255, 210, 140, 0));
  filter: blur(11px);
}

.dust-one {
  left: 40px;
  bottom: 56px;
  width: 160px;
  height: 46px;
}

.dust-two {
  right: 96px;
  bottom: 74px;
  width: 120px;
  height: 38px;
}

.helicopter-scene {
  inset: 0;
  animation: drift 8s ease-in-out infinite;
}

.helicopter-svg {
  position: absolute;
  top: 55px;
  left: 12%;
  width: 78%;
  overflow: visible;
}

.flight-paths path {
  fill: none;
  stroke: rgba(255, 200, 120, 0.24);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  animation: dash 9s linear infinite;
}

.helicopter-body {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.mast,
.main-rotor line,
.tail-rotor line,
.tail-beam,
.landing-skid,
.cable {
  stroke: #e0ddd6;
  stroke-linecap: round;
}

.mast {
  stroke-width: 6;
}

.main-rotor {
  transform-origin: 270px 66px;
  animation: spin 0.18s linear infinite;
}

.main-rotor line:first-child {
  stroke-width: 8;
}

.main-rotor line:last-child,
.tail-rotor line {
  stroke-width: 4;
}

.tail-rotor {
  transform-origin: 112px 115px;
  animation: spin 0.12s linear infinite;
}

.tail-beam {
  stroke-width: 8;
}

.cabin {
  fill: #edf2f4;
}

.window {
  fill: rgba(38, 82, 100, 0.88);
}

.landing-skid {
  stroke-width: 6;
}

.cable {
  stroke-width: 3;
  animation: sway 2.2s ease-in-out infinite;
  transform-origin: 304px 154px;
}

.cargo {
  fill: var(--accent);
  animation: sway 2.2s ease-in-out infinite;
  transform-origin: 304px 154px;
}

.visual-badges {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 260px;
}

.visual-badges span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 155, 70, 0.18);
  background: rgba(10, 5, 2, 0.75);
  color: #ecdec8;
  font-size: 0.85rem;
}

/* ─── Panel Cards ─────────────────────────────────────────────────────────── */

.panel-card {
  padding: 28px;
  border-radius: 28px;
  border-color: rgba(255, 150, 75, 0.16);
}

.panel-label,
.fleet-type,
.contact-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.panel-value {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
}

.panel-copy {
  margin-top: 16px;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.panel-stats article {
  padding: 18px;
  border-radius: 22px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 150, 75, 0.14);
}

.panel-stats strong,
.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

/* ─── Sections ────────────────────────────────────────────────────────────── */

.section {
  padding: 34px 0 88px;
}

/* Subtle warm stratum line between major sections */
.section + .section {
  position: relative;
}

.section + .section::before {
  content: none; /* removed – handled by alternating bg tint */
}

.service-marquee {
  padding: 14px 0;
  border-radius: 999px;
  overflow: hidden;
  border-color: rgba(255, 145, 65, 0.18);
}

.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding-left: 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  color: var(--accent-soft);
  animation: marquee 22s linear infinite;
}

.marquee-track span::before {
  content: "/";
  margin-right: 12px;
  color: rgba(255, 175, 100, 0.46);
}

.intro-strip {
  padding: 30px 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 115, 38, 0.09) 0%, rgba(18, 9, 4, 0.92) 100%) !important;
  border-color: rgba(255, 145, 65, 0.20);
}

.intro-strip p {
  margin: 0;
  max-width: 78ch;
  font-size: 1.08rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 145, 70, 0.10);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  border-bottom: none;
  padding-bottom: 0;
}

.card-grid,
.fleet-grid,
.stats-grid,
.contact-section,
.story-section,
.operation-steps {
  display: grid;
  gap: 18px;
}

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

/* Service cards */
.service-card {
  padding: 26px;
  border-radius: 24px;
  border-color: rgba(255, 145, 70, 0.14);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover {
  border-color: rgba(255, 145, 70, 0.30);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.50), 0 0 0 1px rgba(255, 145, 70, 0.12);
  transform: translateY(-2px);
}

.service-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 700;
  transition: gap 0.2s ease;
}

.service-card a:hover {
  gap: 10px;
}

.service-card a::after {
  content: "→";
}

/* Operations band */
.operation-band {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255, 105, 35, 0.07) 0%, rgba(16, 8, 4, 0.92) 60%) !important;
  border-color: rgba(255, 145, 70, 0.16);
}

.operation-lead {
  margin-bottom: 28px;
}

.operation-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.operation-steps article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(20, 10, 4, 0.60);
  border: 1px solid rgba(255, 150, 75, 0.14);
  transition: border-color 0.2s ease;
}

.operation-steps article:hover {
  border-color: rgba(255, 150, 75, 0.28);
}

.operation-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: var(--accent-soft);
}

/* Story section */
.story-section {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 36px;
  border-radius: 32px;
  border-color: rgba(255, 145, 70, 0.14);
}

.story-copy p {
  margin: 18px 0 0;
  max-width: 64ch;
}

.story-aside {
  display: grid;
  gap: 14px;
}

.story-aside article {
  padding: 22px;
  border-radius: 22px;
  border-color: rgba(255, 145, 70, 0.14);
  transition: border-color 0.2s ease;
}

.story-aside article:hover {
  border-color: rgba(255, 145, 70, 0.28);
}

.story-aside strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--accent-soft);
}

/* Fleet section */
.fleet-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.fleet-card {
  padding: 28px;
  border-radius: 24px;
  min-height: 220px;
  border-color: rgba(255, 145, 70, 0.14);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fleet-card:hover {
  border-color: rgba(255, 145, 70, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52);
}

/* Featured aircraft — AZ canyon fire */
.fleet-card.featured {
  background:
    linear-gradient(160deg, rgba(255, 115, 38, 0.14) 0%, rgba(255, 175, 70, 0.05) 50%, rgba(255, 255, 255, 0.01) 100%),
    var(--bg-elevated) !important;
  border-color: rgba(255, 140, 50, 0.30);
  box-shadow: 0 0 0 1px rgba(255, 140, 50, 0.10), var(--shadow);
}

/* ─── Service Book Buttons ────────────────────────────────────────────────── */

.service-book-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 20px !important;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 145, 70, 0.30);
  background: rgba(255, 120, 40, 0.09);
  color: var(--accent-soft) !important;
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.service-book-btn::after {
  content: " →" !important;
}

.service-book-btn:hover {
  border-color: rgba(255, 145, 70, 0.52) !important;
  background: rgba(255, 120, 40, 0.15) !important;
  transform: translateY(-1px);
  color: var(--accent-soft) !important;
  gap: 6px !important;
}

/* Fleet card photo backgrounds */
.fleet-card.photo-tarmac {
  background:
    linear-gradient(160deg, rgba(8, 4, 2, 0.60) 0%, rgba(8, 4, 2, 0.82) 100%),
    url("./images/tarmac.jpg") center/cover no-repeat !important;
  border-color: rgba(255, 160, 70, 0.26);
}

.fleet-card.photo-charter {
  background:
    linear-gradient(160deg, rgba(8, 4, 2, 0.64) 0%, rgba(8, 4, 2, 0.84) 100%),
    url("./images/206-charter.jpg") center/cover no-repeat !important;
  border-color: rgba(255, 150, 70, 0.20);
}

/* ─── Gallery Page — photo + caption grid ─────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
}

.gallery-item .showcase-card {
  height: 270px;
  flex-shrink: 0;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.48);
}

.gallery-caption {
  padding: 16px 2px 0;
}

.gallery-caption h4 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.gallery-caption p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 36ch;
}

.gallery-caption .service-book-btn {
  margin-top: 0 !important;
  padding: 8px 15px;
  font-size: 0.84rem;
}

/* Page hero (non-landing pages) */
.page-hero {
  padding-bottom: 48px !important;
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 18ch;
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
  line-height: 1.65;
}

/* Stats section */
.stats-section {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 115, 38, 0.08) 0%, rgba(14, 7, 3, 0.94) 100%) !important;
  border-color: rgba(255, 150, 75, 0.20);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  padding: 12px;
}

/* ─── Contact / Booking ───────────────────────────────────────────────────── */

.booking-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 20px;
  align-items: start;
}

.booking-form {
  padding: 30px;
  border-radius: 28px;
  border-color: rgba(255, 150, 75, 0.16);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.route-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: #e4d4c4;
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 155, 80, 0.16);
  border-radius: 16px;
  background: rgba(255, 130, 50, 0.04);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(200, 180, 160, 0.52);
}

.booking-form select option {
  background: #1a0c06;
  color: var(--text);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(255, 140, 55, 0.55);
  background: rgba(255, 130, 50, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 140, 55, 0.10);
}

.full-width {
  margin-bottom: 18px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.booking-actions p {
  margin: 0;
  color: #e4d4c4;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  border-color: rgba(255, 150, 75, 0.16);
  background: linear-gradient(160deg, rgba(255, 110, 38, 0.07) 0%, rgba(16, 8, 4, 0.92) 100%) !important;
}

.contact-card p {
  margin: 6px 0 0;
  color: #e0d0be;
}

/* ─── Work Showcase — 8-photo magazine grid ──────────────────────────────── */

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px repeat(3, 240px);
  gap: 8px;
}

/* Wide card spans 2 columns */
.card-wide { grid-column: span 2; }

/* Tall card spans 2 rows */
.card-tall { grid-row: span 2; }

/* Photo cards — no hard border for a fluid, less boxy feel */
.showcase-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.52);
  background: #0d0806;
}

.showcase-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.55s ease;
}

.service-area-section,
.faq-section {
  position: relative;
}

.service-area-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-area-card,
.faq-card {
  background: linear-gradient(180deg, rgba(14, 23, 38, 0.9), rgba(7, 13, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.service-area-card h3,
.faq-card h3 {
  margin: 0 0 12px;
}

.service-area-card p,
.faq-card p {
  margin: 0;
  color: rgba(228, 233, 240, 0.82);
}

.market-pages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.market-page-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 19, 32, 0.92), rgba(6, 11, 21, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.market-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 145, 70, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.market-page-card strong {
  font-size: 1rem;
}

.market-page-card span {
  color: rgba(228, 233, 240, 0.82);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}

.location-hero {
  display: grid;
  gap: 22px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(228, 233, 240, 0.66);
}

.breadcrumb a {
  color: rgba(255, 208, 158, 0.86);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 28px;
}

.location-stack {
  display: grid;
  gap: 18px;
}

.location-card {
  background: linear-gradient(180deg, rgba(14, 23, 38, 0.9), rgba(7, 13, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.location-card h2,
.location-card h3 {
  margin-top: 0;
}

.location-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.location-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.location-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-service-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 120, 40, 0.08);
  border: 1px solid rgba(255, 145, 70, 0.18);
  color: var(--accent-soft);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .service-area-grid,
  .faq-grid,
  .market-pages-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-card:hover .showcase-photo {
  transform: scale(1.05);
}

/* Placeholder backgrounds — shown until image loads */
.showcase-photo-fallback {
  position: absolute;
  inset: 0;
}

.sfb--sunset {
  background:
    radial-gradient(ellipse at 40% 80%, rgba(255, 160, 30, 0.55), transparent 52%),
    linear-gradient(180deg, #1a1820 0%, #2a1e10 40%, #0e0c08 100%);
}

.sfb--blue {
  background:
    radial-gradient(circle at 50% 30%, rgba(40, 120, 210, 0.38), transparent 55%),
    linear-gradient(180deg, #0e2644 0%, #1a3c58 40%, #0c1a28 100%);
}

.sfb--city {
  background:
    radial-gradient(circle at 50% 60%, rgba(180, 200, 220, 0.18), transparent 55%),
    linear-gradient(180deg, #1a1e24 0%, #252c34 40%, #0e1218 100%);
}

.sfb--grey {
  background:
    radial-gradient(circle at 50% 30%, rgba(180, 190, 200, 0.20), transparent 55%),
    linear-gradient(180deg, #14181e 0%, #1e242c 50%, #0c1014 100%);
}

.sfb--hangar {
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 210, 100, 0.14), transparent 52%),
    linear-gradient(180deg, #100e08 0%, #1c1408 50%, #0a0a06 100%);
}

.sfb--dark {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 200, 100, 0.10), transparent 50%),
    linear-gradient(180deg, #0e0c08 0%, #181408 55%, #0a0806 100%);
}

.sfb--blackhawk {
  background:
    radial-gradient(circle at 50% 55%, rgba(90, 120, 160, 0.22), transparent 55%),
    linear-gradient(180deg, #0e1420 0%, #1a2232 50%, #0a0e16 100%);
}

.sfb--desert {
  background:
    radial-gradient(circle at 55% 40%, rgba(210, 165, 90, 0.26), transparent 55%),
    linear-gradient(180deg, #1c140a 0%, #2a1e0e 50%, #12100a 100%);
}

.sfb--orange {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 120, 40, 0.30), transparent 52%),
    linear-gradient(180deg, #1a0e06 0%, #2a1408 50%, #100a04 100%);
}

.sfb--overhead {
  background:
    radial-gradient(circle at 50% 30%, rgba(200, 100, 60, 0.26), transparent 55%),
    linear-gradient(180deg, #201010 0%, #2c1a10 50%, #120c08 100%);
}

.sfb--tarmac {
  background:
    radial-gradient(circle at 40% 50%, rgba(140, 170, 200, 0.18), transparent 52%),
    linear-gradient(180deg, #0e1218 0%, #161e28 50%, #0a0e14 100%);
}

.sfb--charter {
  background:
    radial-gradient(circle at 55% 55%, rgba(60, 100, 160, 0.28), transparent 52%),
    linear-gradient(180deg, #0a101c 0%, #141c2c 50%, #080c16 100%);
}

.sfb--rotor {
  background:
    radial-gradient(circle at 50% 40%, rgba(160, 180, 200, 0.16), transparent 52%),
    linear-gradient(180deg, #101418 0%, #181e24 50%, #0c1014 100%);
}

.sfb--detail {
  background:
    radial-gradient(circle at 40% 40%, rgba(200, 180, 140, 0.18), transparent 52%),
    linear-gradient(180deg, #14120e 0%, #1c1a14 50%, #0e0c0a 100%);
}

/* Overlay gradient for text legibility */
.showcase-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    0deg,
    rgba(5, 2, 1, 0.86) 0%,
    rgba(5, 2, 1, 0.18) 40%,
    transparent 65%
  );
  padding: 22px;
  transition: background 0.28s ease;
}

.showcase-card:hover .showcase-card-overlay {
  background: linear-gradient(
    0deg,
    rgba(5, 2, 1, 0.92) 0%,
    rgba(5, 2, 1, 0.28) 46%,
    transparent 70%
  );
}

.showcase-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 108, 32, 0.92);
  color: #160801;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  width: fit-content;
}

.showcase-card-meta h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  color: #f4ede4;
  letter-spacing: -0.02em;
}

.showcase-card-meta p {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(210, 188, 165, 0.80);
  line-height: 1.5;
  max-width: 32ch;
}

/* Footer strip below gallery */
.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 150, 75, 0.15);
  background: linear-gradient(135deg, rgba(255, 110, 38, 0.07) 0%, rgba(12, 6, 3, 0.92) 100%);
}

.showcase-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.showcase-footer .button {
  flex-shrink: 0;
  min-width: 0;
}

/* ─── Booking ─────────────────────────────────────────────────────────────── */

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 145, 70, 0.10);
}

.booking-header > div {
  max-width: 640px;
}

.booking-header h2 {
  margin-top: 10px;
}

.booking-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 150, 75, 0.20);
  background: rgba(255, 120, 40, 0.07);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.booking-direct:hover {
  border-color: rgba(255, 150, 75, 0.38);
  background: rgba(255, 120, 40, 0.12);
}

.booking-direct .contact-label {
  margin: 0;
}

.booking-direct strong {
  font-size: 1.55rem;
  color: var(--accent-soft);
  letter-spacing: -0.03em;
  line-height: 1;
}

.booking-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.booking-how {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 150, 75, 0.16);
  background: linear-gradient(160deg, rgba(255, 110, 38, 0.07) 0%, rgba(14, 7, 3, 0.92) 100%);
}

.booking-how > .eyebrow {
  margin: 0 0 18px;
}

.booking-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  counter-reset: step-counter;
}

.booking-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  counter-increment: step-counter;
}

.booking-steps li::before {
  content: counter(step-counter);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 120, 40, 0.14);
  border: 1px solid rgba(255, 140, 60, 0.30);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 1px;
}

.booking-steps .step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-steps strong {
  display: block;
  font-size: 0.93rem;
  color: var(--text);
}

.booking-steps span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .showcase-card--featured {
    grid-row: auto;
    min-height: 380px;
  }

  .booking-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-direct {
    align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .showcase-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .card-wide,
  .card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
  }

  .showcase-card--featured {
    min-height: 320px;
  }

  .booking-steps li::before {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 145, 70, 0.10);
  padding-top: 28px;
  margin-top: 4px;
}

.footer-note {
  margin: 0;
  max-width: 760px;
  color: #e8c8a0;
  line-height: 1.6;
  text-wrap: balance;
}

/* ─── Animations ──────────────────────────────────────────────────────────── */

@keyframes shimmer {
  0% { left: -80%; }
  60%, 100% { left: 130%; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%       { transform: translate3d(10px, -8px, 0); }
}

@keyframes sway {
  0%, 100% { transform: rotate(3deg); }
  50%       { transform: rotate(-3deg); }
}

@keyframes dash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -200; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes wave {
  0%, 100% { transform: perspective(120px) rotateY(0deg) skewY(0deg); }
  50%       { transform: perspective(120px) rotateY(-12deg) skewY(-2deg); }
}

/* ─── Reduced Motion ──────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .main-rotor,
  .tail-rotor,
  .cable,
  .cargo,
  .helicopter-scene,
  .flight-paths path,
  .marquee-track,
  .button-primary::after {
    animation: none;
  }
}

/* ─── Responsive: 1080px ──────────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .hero-grid,
  .story-section,
  .section-heading.split,
  .fleet-grid,
  .booking-layout,
  .stats-grid,
  .card-grid,
  .contact-card,
  .operation-steps {
    grid-template-columns: 1fr;
  }

  .showcase-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 240px;
  }

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

  .card-wide { grid-column: span 2; }
  .card-tall { grid-row: auto; }

  .showcase-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    min-height: auto;
  }

  .page-header {
    padding-bottom: 20px;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    min-height: auto;
  }

  .hero-visual {
    min-height: 320px;
  }
}

/* ─── Responsive: 720px ───────────────────────────────────────────────────── */

@media (max-width: 720px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .nav-links > a,
  .nav-item > a {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 145, 70, 0.10);
    background: rgba(255, 120, 40, 0.04);
  }

  .nav-dropdown-panel {
    display: none !important;
  }

  .nav-location {
    display: none;
  }

  .nav-right {
    width: 100%;
    justify-content: stretch;
  }

  .nav-book-btn {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero {
    padding-bottom: 54px;
  }

  .page-header {
    padding-bottom: 18px;
  }

  .hero-grid {
    padding-top: 34px;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero-cta-bar,
  .nav-button-row {
    gap: 10px;
  }

  .nav-button-row .nav-button {
    width: 100%;
  }

  .page-hero {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .page-hero p {
    max-width: 100%;
  }

  .panel-card,
  .service-card,
  .booking-form,
  .contact-card,
  .story-section,
  .stats-section,
  .intro-strip,
  .hero-visual,
  .operation-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-visual {
    min-height: 360px;
    padding: 18px;
  }

  .photo-overlay {
    left: 16px;
    right: 16px;
    top: 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .photo-copy {
    max-width: 100%;
    width: 100%;
    padding: 16px 18px;
  }

  .visual-badges {
    position: static;
    margin-top: 235px;
    justify-content: flex-start;
    max-width: none;
    gap: 8px;
  }

  .visual-badges span {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .service-marquee {
    border-radius: 28px;
  }

  .card-grid,
  .fleet-grid,
  .stats-grid,
  .operation-steps,
  .story-section,
  .contact-section,
  .booking-layout {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .fleet-card,
  .story-aside article,
  .operation-steps article,
  .stats-grid article {
    min-height: auto;
  }

  .showcase-gallery {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    grid-auto-rows: 240px;
  }

  .gallery-item {
    display: grid;
    gap: 12px;
  }

  .gallery-caption {
    padding: 0 4px;
  }

  .gallery-caption h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
  }

  .gallery-caption p {
    margin: 0 0 12px;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .showcase-footer {
    padding: 18px 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .showcase-footer > div,
  .showcase-footer .button {
    width: 100%;
  }

  .showcase-footer > div {
    display: grid !important;
    gap: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .field-grid,
  .route-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form-wrap,
  .sidebar-card,
  .booking-how {
    padding: 20px 18px;
  }

  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-header,
  .booking-direct {
    width: 100%;
  }

  .booking-direct {
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }
}

/* ─── Contact / Booking Page ────────────────────────────────────────────── */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.booking-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 145, 70, 0.12);
  border-radius: 24px;
  padding: 36px 32px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 145, 70, 0.16);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff9146' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 145, 70, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(200, 180, 160, 0.32);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-footnote {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

.form-footnote a {
  color: var(--accent-soft);
}

/* Sidebar */

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 145, 70, 0.12);
  border-radius: 20px;
  padding: 24px 22px;
}

.sidebar-phone {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.sidebar-phone a {
  color: var(--text);
}

.sidebar-phone a:hover {
  color: var(--accent-soft);
}

.sidebar-availability {
  font-size: 0.84rem;
  color: var(--accent-soft);
  margin: 0 0 14px;
}

.sidebar-rule {
  border: none;
  border-top: 1px solid rgba(255, 145, 70, 0.12);
  margin: 14px 0;
}

.sidebar-email {
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.sidebar-email a {
  color: var(--muted);
}

.sidebar-email a:hover {
  color: var(--accent-soft);
}

.sidebar-location {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: step-counter;
}

.how-steps li {
  counter-increment: step-counter;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.how-steps li::before {
  content: counter(step-counter);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 120, 40, 0.15);
  border: 1px solid rgba(255, 145, 70, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-soft);
  flex-shrink: 0;
  margin-top: 2px;
}

.how-steps li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.how-steps li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}

.how-steps li span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-services a {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.sidebar-services a:hover {
  color: var(--accent-soft);
  border-color: rgba(255, 145, 70, 0.20);
  background: rgba(255, 120, 40, 0.06);
}

.detail-contact {
  display: grid;
  gap: 4px;
  padding: 12px 0;
}

.detail-contact + .detail-contact {
  border-top: 1px solid rgba(255, 145, 70, 0.12);
}

.detail-contact strong {
  color: var(--text);
  font-size: 0.96rem;
}

.detail-contact span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.detail-contact a {
  color: var(--accent-soft);
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
