/* ==========================================================================
   AeroLuxe Drone Services — design system
   Black / gold / platinum, drawn from the logo.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   ----------------------------------------------------------------------- */

:root {
  /* Surfaces */
  --ink:        #08080a;
  --ink-raised: #0e0e11;
  --ink-card:   #141418;
  --ink-inset:  #1b1b20;

  /* Metals */
  --gold:        #d4af37;
  --gold-light:  #f2e1a4;
  --gold-deep:   #9c7818;
  --gold-glow:   rgba(212, 175, 55, 0.16);
  --silver:      #c6cad2;
  --silver-light:#eef1f6;
  --silver-deep: #7c828d;

  --gold-gradient: linear-gradient(135deg,
      #8a6a12 0%, #d4af37 16%, #f7e9b8 34%, #d4af37 52%,
      #9c7818 72%, #e8cf76 88%, #b8912a 100%);
  --silver-gradient: linear-gradient(135deg,
      #6f757f 0%, #c6cad2 20%, #f5f7fa 40%, #c6cad2 60%,
      #878d97 80%, #dfe3e9 100%);

  /* Type */
  --text:      #e9e9ee;
  --text-dim:  #a4a4af;
  --text-faint:#71717c;

  /* Lines */
  --line:      rgba(212, 175, 55, 0.20);
  --line-soft: rgba(255, 255, 255, 0.07);
  --line-hard: rgba(255, 255, 255, 0.14);

  /* Status */
  --ok:    #6bbf7b;
  --warn:  #e0b64a;
  --danger:#d9705f;
  --info:  #6fa8d4;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Didot', 'Bodoni MT', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Metrics */
  --shell: 1240px;
  --shell-narrow: 880px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 9vw, 132px);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset
   ----------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-light); }

ul, ol { margin: 0 0 1.25em; padding-left: 1.2em; }
li { margin-bottom: 0.45em; }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 3rem 0;
}

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 500;
}
.skip-link:focus { left: 12px; top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Layout primitives
   ----------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--raised { background: var(--ink-raised); }
.section--bordered { border-top: 1px solid var(--line-soft); }

.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.stack > * + * { margin-top: 1.25rem; }

/* --------------------------------------------------------------------------
   Metal text treatments
   ----------------------------------------------------------------------- */

.metal-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.metal-silver {
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Fallback where background-clip:text is unsupported. */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .metal-gold   { color: var(--gold); -webkit-text-fill-color: currentColor; }
  .metal-silver { color: var(--silver); -webkit-text-fill-color: currentColor; }
}

/* Section eyebrow — small caps, wide tracking, gold hairline. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--centered { justify-content: center; }
.eyebrow--centered::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lede {
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 68ch;
}

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--centered { text-align: center; }
.section-head--centered .lede { margin-inline: auto; }

/* Ornamental divider */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-block: clamp(40px, 5vw, 64px);
}
.rule::before, .rule::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.rule__mark {
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #17130a;
  border-color: var(--gold-deep);
  box-shadow: 0 4px 24px -8px rgba(212, 175, 55, 0.5);
}
.btn--gold:hover {
  color: #17130a;
  transform: translateY(-2px);
  box-shadow: 0 10px 34px -10px rgba(212, 175, 55, 0.7);
}

.btn--ghost {
  border-color: var(--line-hard);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.btn--quiet {
  padding: 10px 18px;
  border-color: var(--line-soft);
  color: var(--text-dim);
  letter-spacing: 0.14em;
}
.btn--quiet:hover { border-color: var(--gold); color: var(--gold); }

.btn--danger {
  border-color: rgba(217, 112, 95, 0.5);
  color: var(--danger);
}
.btn--danger:hover { background: rgba(217, 112, 95, 0.12); color: #f0937f; }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 0.7rem; }

.btn[disabled], .btn[aria-disabled='true'] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Text link with a sliding gold underline. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.link-arrow::after {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.link-arrow:hover::after { width: 34px; }

/* --------------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------- */

.topbar {
  background: #050506;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar__credential {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-dim);
}
.topbar__credential .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  flex: none;
}
.topbar__links { display: flex; gap: 22px; align-items: center; }
.topbar__links a { color: var(--text-faint); }
.topbar__links a:hover { color: var(--gold); }

.masthead {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.masthead.is-scrolled {
  background: rgba(6, 6, 8, 0.97);
  border-bottom-color: var(--line);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}

/* Logo lockup */
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark { width: 54px; height: 54px; flex: none; }
.brand__img { height: 56px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }

.wordmark {
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.wordmark__aero {
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.wordmark__luxe {
  background: var(--silver-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.wordmark__sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.46em;
  color: var(--silver-deep);
  margin-top: 6px;
  white-space: nowrap;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .wordmark__aero { color: var(--gold); -webkit-text-fill-color: currentColor; }
  .wordmark__luxe { color: var(--silver); -webkit-text-fill-color: currentColor; }
}

/* Primary navigation */
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__list li { margin: 0; }
.nav__link {
  position: relative;
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-block: 6px;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-gradient);
  transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link[aria-current='page'] { color: var(--gold); }
.nav__link:hover::after, .nav__link[aria-current='page']::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-hard);
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}
.nav__toggle span {
  position: absolute;
  left: 13px;
  width: 18px; height: 1px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__toggle { display: block; }
  .nav__list {
    position: fixed;
    inset: 0 0 auto 0;
    top: var(--nav-offset, 82px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0b0b0e;
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 28px;
    max-height: calc(100vh - var(--nav-offset, 82px));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
  }
  .nav__list.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.86rem;
  }
  .nav__link::after { display: none; }
  .nav__cta { display: none; }
  .nav__list .nav__cta-mobile { display: block; margin-top: 22px; }
}
@media (min-width: 1081px) {
  .nav__list .nav__cta-mobile { display: none; }
}

@media (max-width: 640px) {
  .topbar__links { display: none; }
  .topbar__inner { justify-content: center; min-height: 36px; }
  .brand__mark { width: 44px; height: 44px; }
  .brand__img { height: 46px; }
  .wordmark { font-size: 1.3rem; }
  .wordmark__sub { font-size: 0.48rem; letter-spacing: 0.36em; }
}

/* --------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex;
  align-items: center;
  padding-block: clamp(80px, 12vw, 150px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

/* Layered atmosphere: gold bloom, horizon sweep, fine grid. */
.hero__atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__atmos::before {
  content: '';
  position: absolute;
  top: -25%; left: 50%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.20) 0%,
      rgba(212, 175, 55, 0.07) 34%,
      transparent 68%);
  filter: blur(20px);
}
.hero__atmos::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 90px 90px,
    linear-gradient(0deg,  rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 90px 90px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 42%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 42%, #000 20%, transparent 78%);
}

/* Slow-drifting horizon arc echoing the logo ring. */
.hero__arc {
  position: absolute;
  left: 50%;
  bottom: -58%;
  width: min(1500px, 165vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: inset 0 0 140px rgba(212, 175, 55, 0.05);
  pointer-events: none;
}
.hero__arc--inner {
  width: min(1160px, 130vw);
  bottom: -45%;
  border-color: rgba(198, 202, 210, 0.09);
}

.hero__inner { position: relative; z-index: 2; max-width: 900px; }

.hero__title {
  margin-bottom: 0.35em;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__title em { color: var(--gold); -webkit-text-fill-color: currentColor; }
}

.hero__lede {
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
  color: var(--text-dim);
  max-width: 62ch;
  margin-bottom: 2.6rem;
}

.hero__actions { margin-bottom: clamp(44px, 6vw, 72px); }

/* Credential strip under the hero copy.
   Flex rather than grid, on purpose: a grid with a fixed column count leaves a
   visibly empty cell whenever the item count does not divide evenly (each cell
   paints its own background over the 1px gap, so the gap reads as a hole).
   With flex-grow, a stray item on a wrapped row simply expands to fill it —
   correct for any number of stats. */
.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.credential-strip__item {
  flex: 1 1 200px;
  background: var(--ink);
  padding: 22px 24px;
}
.credential-strip__value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .credential-strip__value { color: var(--gold); -webkit-text-fill-color: currentColor; }
}
.credential-strip__label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  line-height: 1.5;
}

/* Compact page banner for interior pages */
.page-banner {
  position: relative;
  padding-block: clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  width: min(900px, 120vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}
.page-banner__inner { position: relative; z-index: 2; max-width: 800px; }
.page-banner h1 { margin-bottom: 0.4em; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before { content: '/'; color: var(--line-hard); }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Cards
   ----------------------------------------------------------------------- */

.card {
  position: relative;
  background: var(--ink-card);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 3.2vw, 40px);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  background: var(--ink-inset);
}
.card:hover::before { transform: scaleX(1); }

.card__index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.card__title { margin-bottom: 0.6em; }
.card__title a { color: inherit; }
.card__title a:hover { color: var(--gold); }
.card__body { color: var(--text-dim); font-size: 0.97rem; flex: 1; }
.card__foot { margin-top: 26px; }

.card__icon {
  width: 46px; height: 46px;
  margin-bottom: 22px;
  color: var(--gold);
}
.card__icon svg { width: 100%; height: 100%; }

/* Deliverables list inside service cards */
.tick-list { list-style: none; margin: 0; padding: 0; }
.tick-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.6em;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 12px; height: 1px;
  background: var(--gold);
}

/* Numbered process steps */
.step {
  position: relative;
  padding-left: 76px;
  padding-bottom: 44px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 23px; top: 46px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--line), transparent);
}
.step:last-child::before { display: none; }
.step__num {
  position: absolute;
  left: 0; top: 0;
  width: 47px; height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--ink);
}
.step h3 { margin-bottom: 0.45em; }
.step p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 0; }

/* Pilot roster */
.pilot {
  background: var(--ink-card);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 3vw, 38px);
  height: 100%;
  transition: border-color 0.35s var(--ease);
}
.pilot:hover { border-color: var(--line); }
.pilot__avatar {
  width: 78px; height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  background: radial-gradient(circle at 30% 25%, rgba(212,175,55,0.16), transparent 70%);
  color: var(--gold);
}
.pilot__name { margin-bottom: 0.2em; }
.pilot__role {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-deep);
  margin-bottom: 1.2rem;
}
.pilot__bio { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1.4rem; }
.pilot__certs {
  list-style: none;
  margin: 0; padding: 20px 0 0;
  border-top: 1px solid var(--line-soft);
}
.pilot__certs li {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  padding-left: 20px;
  position: relative;
  margin-bottom: 0.5em;
}
.pilot__certs li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 5px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* Portfolio */
.work {
  position: relative;
  display: block;
  background: var(--ink-card);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  color: inherit;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
  height: 100%;
}
.work:hover { border-color: var(--line); transform: translateY(-4px); color: inherit; }
.work__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(212,175,55,0.16), transparent 62%),
    linear-gradient(160deg, #17171c 0%, #0d0d10 100%);
  border-bottom: 1px solid var(--line-soft);
}
.work__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg,  rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 44px 44px;
}
.work__glyph {
  position: relative;
  z-index: 2;
  width: 74px; height: 74px;
  color: rgba(212, 175, 55, 0.55);
}
.work__meta { padding: 26px 28px 30px; }
.work__cat {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.work__title { font-size: 1.3rem; margin-bottom: 0.5em; }
.work__desc { font-size: 0.92rem; color: var(--text-dim); margin: 0; }
.work__tag {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  padding: 6px 12px;
  background: rgba(8,8,10,0.8);
  border: 1px solid var(--line);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Feature panels
   ----------------------------------------------------------------------- */

.panel {
  background: var(--ink-card);
  border: 1px solid var(--line-soft);
  padding: clamp(30px, 4vw, 52px);
}
.panel--gold {
  border-color: var(--line);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212,175,55,0.08), transparent 60%),
    var(--ink-card);
}

/* Big pull-quote / statement block */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.32;
  color: var(--text);
  text-wrap: balance;
}
.statement__attrib {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Definition rows — airspace classes, spec tables */
.spec {
  border-top: 1px solid var(--line-soft);
}
.spec__row {
  display: grid;
  grid-template-columns: minmax(140px, 240px) 1fr;
  gap: clamp(16px, 3vw, 44px);
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}
.spec__term {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.spec__def { color: var(--text-dim); font-size: 0.97rem; }
.spec__def p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .spec__row { grid-template-columns: 1fr; gap: 10px; }
}

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--line-soft); }
.accordion__item { border-bottom: 1px solid var(--line-soft); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.35;
  transition: color 0.25s var(--ease);
}
.accordion__trigger:hover { color: var(--gold); }
.accordion__sign {
  flex: none;
  width: 24px; height: 24px;
  position: relative;
  margin-top: 6px;
}
.accordion__sign::before, .accordion__sign::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--gold);
  transition: transform 0.35s var(--ease);
}
.accordion__sign::before { width: 15px; height: 1px; transform: translate(-50%, -50%); }
.accordion__sign::after  { width: 1px; height: 15px; transform: translate(-50%, -50%); }
.accordion__trigger[aria-expanded='true'] .accordion__sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__panel {
  display: none;
  padding-bottom: 30px;
  color: var(--text-dim);
  font-size: 0.99rem;
  max-width: 78ch;
}
.accordion__panel.is-open { display: block; }

/* Logo / trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 66px);
  opacity: 0.85;
}
.trust-row__item {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-row__item::before {
  content: '';
  width: 7px; height: 7px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
}

/* --------------------------------------------------------------------------
   Call to action band
   ----------------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-raised);
  text-align: center;
  padding-block: clamp(64px, 8vw, 110px);
}
.cta-band::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: min(1000px, 130vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--gold-glow), transparent 62%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 2; }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------- */

.footer {
  background: #050506;
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(56px, 7vw, 88px);
  font-size: 0.93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.footer__about { color: var(--text-faint); font-size: 0.92rem; max-width: 40ch; }
.footer__about .brand { margin-bottom: 22px; }
.footer__title {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 0.7em; }
.footer__list a { color: var(--text-faint); font-size: 0.9rem; }
.footer__list a:hover { color: var(--gold); }
.footer__contact { color: var(--text-faint); font-style: normal; font-size: 0.9rem; line-height: 1.9; }
.footer__contact a { color: var(--text-dim); }

.footer__legal {
  border-top: 1px solid var(--line-soft);
  padding-block: 26px 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.76rem;
}
.footer__legal a { color: var(--text-faint); }
.footer__legal a:hover { color: var(--gold); }
.footer__parent { display: inline-flex; align-items: center; gap: 10px; }

/* --------------------------------------------------------------------------
   Forms
   ----------------------------------------------------------------------- */

.form { --field-gap: 22px; }
.form__section { margin-bottom: clamp(34px, 4vw, 52px); }
.form__section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form__section-num {
  font-size: 0.68rem;
  font-family: var(--font-sans);
  letter-spacing: 0.24em;
  color: var(--gold);
}
.form__section-note {
  color: var(--text-faint);
  font-size: 0.88rem;
  margin-bottom: 26px;
}

.field { margin-bottom: var(--field-gap); }

/* Direct children only, and never the control labels: .choice, .checkbox and
   .radio are themselves <label> elements that live inside a .field, and a bare
   `.field label` selector shrinks them to 0.7rem uppercase — which turns a
   radio card's description into unreadable small caps. */
.field > label:not(.choice):not(.checkbox):not(.radio),
.field__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.field .req { color: var(--gold); margin-left: 4px; }

.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='password'],
.field input[type='search'],
.field input[type='date'],
.field input[type='number'],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink-raised);
  border: 1px solid var(--line-hard);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 300;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.7; }

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% + 2px), calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.field select option { background: var(--ink-raised); color: var(--text); }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-inset);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.10);
}
.field input::placeholder, .field textarea::placeholder { color: #55555f; }

.field--error input, .field--error select, .field--error textarea {
  border-color: var(--danger);
}
.field__error {
  color: var(--danger);
  font-size: 0.82rem;
  margin: 8px 0 0;
  letter-spacing: 0.02em;
}
.field__hint {
  color: var(--text-faint);
  font-size: 0.82rem;
  margin: 8px 0 0;
  line-height: 1.6;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 22px;
}
.field-row--thirds { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 620px) {
  .field-row--thirds { grid-template-columns: 1fr; }
}

.checkbox, .radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  /* Explicit, so these never inherit the uppercase field-label treatment. */
  text-transform: none;
  letter-spacing: 0.01em;
}
.checkbox input, .radio input {
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Radio cards for service / time selection */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.choice {
  position: relative;
  display: block;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.choice__box {
  display: block;
  height: 100%;
  padding: 18px 20px;
  background: var(--ink-raised);
  border: 1px solid var(--line-hard);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}
.choice__name {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 5px;
}
.choice__note {
  display: block;
  font-size: 0.79rem;
  color: var(--text-faint);
  line-height: 1.5;
}
.choice:hover .choice__box { border-color: var(--line); }
.choice input:checked + .choice__box {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}
.choice input:focus-visible + .choice__box { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Honeypot — never shown, never announced. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Booking calendar
   ----------------------------------------------------------------------- */

.calendar {
  background: var(--ink-raised);
  border: 1px solid var(--line-hard);
  border-radius: var(--radius);
  padding: clamp(18px, 2.5vw, 28px);
}
.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.calendar__month {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin: 0;
}
.calendar__nav { display: flex; gap: 8px; }
.calendar__nav-btn {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-hard);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
}
.calendar__nav-btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.calendar__nav-btn[aria-disabled='true'] {
  opacity: 0.25;
  pointer-events: none;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar__dow {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: 10px;
}
.calendar__blank { aspect-ratio: 1; }

.calendar__day {
  position: relative;
  aspect-ratio: 1;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  background: var(--ink-card);
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 300;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  padding: 0;
  font-family: inherit;
}
.calendar__day:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.calendar__day:disabled {
  cursor: not-allowed;
  color: #3d3d45;
  background: transparent;
  border-color: transparent;
}
.calendar__day--full:disabled,
.calendar__day--blackout:disabled {
  color: #4a4048;
  border-color: rgba(217, 112, 95, 0.16);
  background: rgba(217, 112, 95, 0.05);
}
.calendar__day.is-selected {
  background: var(--gold-gradient);
  border-color: var(--gold);
  color: #17130a;
  font-weight: 500;
  box-shadow: 0 4px 16px -6px rgba(212, 175, 55, 0.6);
}
.calendar__day--today::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.calendar__day.is-selected.calendar__day--today::after { background: #17130a; }

.calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.74rem;
  color: var(--text-faint);
}
.calendar__legend span { display: inline-flex; align-items: center; gap: 9px; }
.calendar__swatch {
  width: 13px; height: 13px;
  border-radius: 2px;
  border: 1px solid var(--line-soft);
  background: var(--ink-card);
  flex: none;
}
.calendar__swatch--available { border-color: var(--gold); background: rgba(212,175,55,0.16); }
.calendar__swatch--full { border-color: rgba(217,112,95,0.4); background: rgba(217,112,95,0.12); }
.calendar__swatch--closed { border-color: transparent; background: #1e1e24; }

.calendar__selection {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.06);
  border-radius: var(--radius);
  font-size: 0.94rem;
}
.calendar__selection-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.calendar__selection-value { color: var(--text); font-size: 1.06rem; }
.calendar__selection--empty {
  border-color: var(--line-hard);
  background: transparent;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Flash messages, pills, tables
   ----------------------------------------------------------------------- */

.flash {
  padding: 16px 20px;
  border: 1px solid var(--line-hard);
  border-left-width: 3px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-size: 0.94rem;
  background: var(--ink-raised);
}
.flash--success { border-left-color: var(--ok);     color: #bfe8c7; }
.flash--error   { border-left-color: var(--danger); color: #f2c0b6; }
.flash--warning { border-left-color: var(--warn);   color: #eddcae; }
.flash--info    { border-left-color: var(--info);   color: #c3dced; }
.flash div + div { margin-top: 6px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px solid var(--line-hard);
  border-radius: 100px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-dim);
}
.pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.pill--pending   { color: var(--warn);   border-color: rgba(224, 182, 74, 0.35); }
.pill--approved  { color: var(--ok);     border-color: rgba(107, 191, 123, 0.35); }
.pill--declined  { color: var(--danger); border-color: rgba(217, 112, 95, 0.35); }
.pill--completed { color: var(--info);   border-color: rgba(111, 168, 212, 0.35); }
.pill--cancelled { color: var(--text-faint); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--radius); }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 720px;
}
table.data th {
  text-align: left;
  padding: 15px 18px;
  background: var(--ink-raised);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
table.data td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-dim);
  vertical-align: top;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr { transition: background 0.2s var(--ease); }
table.data tbody tr:hover { background: rgba(255,255,255,0.022); }
table.data .mono {
  font-family: ui-monospace, 'SF Mono', 'Cascadia Mono', Consolas, monospace;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.empty-state {
  padding: clamp(46px, 7vw, 80px) 24px;
  text-align: center;
  color: var(--text-faint);
}
.empty-state h3 { color: var(--text-dim); margin-bottom: 0.5em; }

/* --------------------------------------------------------------------------
   Status lookup result
   ----------------------------------------------------------------------- */

.status-card {
  border: 1px solid var(--line);
  background: var(--ink-card);
  padding: clamp(28px, 4vw, 44px);
}
.status-card__ref {
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.status-card__timeline {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.status-card__timeline li {
  position: relative;
  padding-left: 34px;
  padding-bottom: 26px;
  color: var(--text-faint);
  font-size: 0.94rem;
}
.status-card__timeline li:last-child { padding-bottom: 0; }
.status-card__timeline li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid var(--line-hard);
  background: var(--ink);
}
.status-card__timeline li::after {
  content: '';
  position: absolute;
  left: 5.5px; top: 22px; bottom: 4px;
  width: 1px;
  background: var(--line-soft);
}
.status-card__timeline li:last-child::after { display: none; }
.status-card__timeline li.is-done { color: var(--text-dim); }
.status-card__timeline li.is-done::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
.status-card__timeline strong { color: var(--text); font-weight: 400; display: block; }

/* --------------------------------------------------------------------------
   Auth shell (login / install)
   ----------------------------------------------------------------------- */

.page-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,175,55,0.10), transparent 70%),
    var(--ink);
  padding: 40px 20px;
}
.auth-shell { width: 100%; max-width: 520px; }
.auth-card {
  background: var(--ink-card);
  border: 1px solid var(--line-soft);
  padding: clamp(30px, 5vw, 52px);
}
.auth-brand { text-align: center; margin-bottom: 34px; }
.auth-brand .wordmark { font-size: 1.7rem; }
.auth-brand .wordmark__sub { display: block; margin-top: 8px; }
.auth-title { font-size: 1.7rem; text-align: center; margin-bottom: 0.5em; }
.auth-note {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.auth-note code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.85em;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  padding: 2px 6px;
}
.auth-foot {
  text-align: center;
  margin-top: 26px;
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   ----------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Print
   ----------------------------------------------------------------------- */

@media print {
  body { background: #fff; color: #000; }
  .masthead, .topbar, .footer, .cta-band, .btn, .nav { display: none !important; }
  .card, .panel, .status-card { border-color: #ccc; background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
