/* ============================================================
   Wingham Executive Airport — styles
   Palette: monochrome black & white (Launch), minimalist
   ============================================================ */

:root {
  /* dark section bases (near-black) */
  --navy-900: #0a0a0a;
  --navy-800: #101010;
  --navy-700: #171717;
  --navy-600: #262626;
  /* accents remapped to mono: gold -> black, gold-soft -> white, gold-deep -> grey */
  --gold:      #0a0a0a;
  --gold-soft: #ffffff;
  --gold-deep: #6f6f6f;
  --cream:     #f5f5f4;
  --paper:     #ffffff;
  --ink:       #0a0a0a;
  --ink-soft:  #595959;
  --line:      #e6e6e6;

  --maxw: 1160px;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.05);
  --shadow-md: 0 12px 40px rgba(0,0,0,.12);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; margin: 0; }

a { color: inherit; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .9rem;
}
.eyebrow-light { color: var(--gold-soft); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .85rem 1.7rem;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
/* Primary: solid black on light, inverts to outline on hover */
.btn-gold { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.btn-gold:hover { background: #fff; color: #0a0a0a; transform: translateY(-2px); }
/* Ghost: outline on dark hero */
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: #fff; color: #0a0a0a; border-color: #fff; transform: translateY(-2px); }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(10,10,10,.9);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; }
.brand-mark { color: #fff; display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.brand-sub { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a {
  color: rgba(255,255,255,.86); text-decoration: none; font-size: .92rem; font-weight: 500;
  position: relative; transition: color .18s ease;
}
.nav > a:not(.btn):hover { color: #fff; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: #fff; transition: width .2s ease;
}
.nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: .58rem 1.2rem; font-size: .9rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-image: url("assets/aerial.jpg");
  background-repeat: no-repeat;
  background-size: 158%;
  background-position: 2% 86%;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { from { background-size: 172%; } to { background-size: 158%; } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.34) 34%, rgba(0,0,0,.86) 100%),
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.34) 55%, rgba(0,0,0,.12) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 74px; }
.hero-credit {
  position: absolute; right: 16px; bottom: 12px; z-index: 2; margin: 0;
  font-size: .68rem; letter-spacing: .04em; color: rgba(255,255,255,.55);
}
.hero-title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 500; margin-bottom: 1.2rem; }
.hero-title .accent { color: var(--gold-soft); }
.hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); max-width: 40ch; color: rgba(255,255,255,.9); margin: 0 0 2rem; }
.hero-lead strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 1px; margin: 0; padding: 0;
  border: 1px solid rgba(255,255,255,.14); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.14); max-width: 720px; }
.hero-chips li {
  flex: 1 1 150px; background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  padding: .9rem 1.1rem; font-size: 1rem; font-weight: 600;
  display: flex; flex-direction: column; gap: .15rem;
}
.hero-chips li span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }

/* ---------------- Stat bar ---------------- */
.statbar { background: var(--navy-800); color: #fff; }
.statbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; }
.stat { padding: 2rem 1.5rem; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; height: 52%; width: 1px; background: rgba(255,255,255,.12); }
.stat strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }
.stat span { font-size: .88rem; color: rgba(255,255,255,.68); }

/* ---------------- Sections ---------------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section-intro { color: var(--ink-soft); margin-top: 1rem; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* About */
.about { background: var(--cream); }
.about-copy h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1.3rem; }
.about-copy p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.about-copy strong { color: var(--ink); }
.tick-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.tick-list li { position: relative; padding-left: 1.9rem; margin-bottom: .8rem; color: var(--ink); font-weight: 500; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 1.15rem; height: 1.15rem;
  background: var(--gold); border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
}

.badge-card {
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  color: #fff; border-radius: var(--radius); padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.14);
  position: relative; overflow: hidden;
}
.badge-card::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
}
.badge-eyebrow { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin: 0; }
.badge-code { font-family: var(--serif); font-size: clamp(3rem, 8vw, 4.4rem); font-weight: 600; letter-spacing: .04em; margin: .2rem 0 1.4rem; color: #fff; }
.badge-rows { display: grid; gap: .85rem; position: relative; z-index: 1; }
.badge-rows > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.badge-rows > div:last-child { border-bottom: 0; padding-bottom: 0; }
.badge-rows span { color: rgba(255,255,255,.6); font-size: .9rem; }
.badge-rows b { font-weight: 600; text-align: right; }

/* Info */
.info { background: var(--paper); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.info-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem;
  background: var(--cream); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #0a0a0a; }
.info-card h3 { font-size: 1.3rem; margin-bottom: 1.1rem; padding-bottom: .9rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.info-card dl { margin: 0; display: grid; gap: .7rem; }
.info-card dl > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; }
.info-card dt { color: var(--ink-soft); }
.info-card dd { margin: 0; font-weight: 600; text-align: right; }
.disclaimer { text-align: center; margin: 2.6rem auto 0; max-width: 620px; color: var(--ink-soft); font-size: .9rem; background: #f2f2f0; border: 1px solid #e0e0e0; border-radius: 10px; padding: .9rem 1.2rem; }

/* Services */
.services { background: var(--cream); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.svc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); margin-bottom: 1.2rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.svc h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.svc p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* Notices for pilots */
.notices { background: var(--cream); }
.notice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.notice {
  background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm);
}
.notice h3 { font-size: 1.3rem; margin-bottom: .7rem; }
.notice p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.notice strong { color: var(--ink); }

/* Gallery */
.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.shot { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--navy-900); box-shadow: var(--shadow-sm); position: relative; }
.shot img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .6s ease; }
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: 2.2rem 1.2rem .95rem; color: #fff; font-size: .92rem; font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.9));
}
.gallery-credit { text-align: center; margin: 2rem 0 0; color: var(--ink-soft); font-size: .85rem; }
.gallery-credit a { color: var(--gold-deep); }

/* Development */
.development { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.dev-bg { position: absolute; inset: 0; z-index: 0; }
.dev-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.dev-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.82) 48%, rgba(0,0,0,.55) 100%); }
.dev-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.dev-copy h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1.2rem; }
.dev-copy p { color: rgba(255,255,255,.8); margin: 0 0 1.8rem; max-width: 46ch; }
.dev-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.dev-list li {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid #fff; border-radius: 8px; padding: 1.1rem 1.4rem;
  display: flex; flex-direction: column;
}
.dev-list strong { font-size: 1.1rem; }
.dev-list span { color: rgba(255,255,255,.66); font-size: .92rem; }

/* Contact */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-col { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.3rem; }
.operator-card {
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  color: #fff; border-radius: var(--radius); padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255,255,255,.16);
}
.op-eyebrow { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 .3rem; }
.op-name { font-family: var(--serif); font-size: 1.35rem; margin: 0 0 .6rem; }
.op-lines { margin: 0; font-size: .95rem; line-height: 1.9; color: rgba(255,255,255,.86); }
.op-lines a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.op-lines a:hover { color: var(--gold-soft); }
.op-tbd { display: inline-block; margin-top: .35rem; color: rgba(255,255,255,.55); font-size: .85rem; }
.cd-row { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.cd-label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; padding-top: .2rem; }
.cd-value { font-weight: 500; }
.cd-value a { color: #0a0a0a; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.3); }
.cd-value a:hover { color: #000; border-bottom-color: #000; }
.contact-note { font-size: .82rem; color: var(--ink-soft); font-style: italic; margin: 0; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 460px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* "Coming soon" badges */
.soon-badge {
  display: inline-block; margin-left: .55rem; vertical-align: middle;
  font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .3em .6em; border: 1.5px solid #0a0a0a; border-radius: 3px;
}
.op-eyebrow.op-eyebrow-soon { color: rgba(255,255,255,.45); }
.op-eyebrow.op-eyebrow-soon span { color: rgba(255,255,255,.4); }

/* Waitlist */
.waitlist { background: var(--cream); }
.waitlist-form { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--ink); }
.field .opt { color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 6px; padding: .72rem .85rem; width: 100%;
  transition: border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #0a0a0a; }
.field textarea { resize: vertical; }
.waitlist-actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.waitlist-note { margin: 0; font-size: .82rem; color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.8); padding: 3rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.3rem; color: #fff; }
.footer-brand .brand-sub { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer-nav a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .92rem; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.5rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-legal p { margin: 0; }

/* ---------------- Operators page ---------------- */
.page-hero { background: var(--navy-900); color: #fff; padding: 148px 0 72px; }
.page-hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.5rem); margin-bottom: 1.1rem; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 62ch; font-size: 1.05rem; }

.directory { background: var(--cream); }
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.op {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.op:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfcfcf; }
.op-logo {
  height: 168px; display: grid; place-items: center; padding: 1.4rem 1.8rem;
  background: #fff; border-bottom: 1px solid var(--line);
}
.op-logo img { max-width: 88%; max-height: 122px; object-fit: contain; }
.op-mono {
  font-family: var(--serif); font-weight: 600; font-size: 1.9rem; letter-spacing: .04em;
  color: #0a0a0a; border: 1.5px solid #0a0a0a; border-radius: 8px; padding: .35em .7em;
}
.op-body { padding: 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.op-tag { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.op-body h3 { font-size: 1.28rem; }
.op-body > p { color: var(--ink-soft); font-size: .94rem; margin: 0; flex: 1; }
.op-contact { display: flex; flex-direction: column; gap: .3rem; margin-top: .8rem; padding-top: .9rem; border-top: 1px solid var(--line); font-size: .9rem; }
.op-contact a { color: #0a0a0a; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.25); width: fit-content; transition: border-color .18s ease; }
.op-contact a:hover { border-bottom-color: #000; }
.op-contact span { color: var(--ink-soft); }
.dir-note { text-align: center; margin: 2.6rem 0 0; color: var(--ink-soft); }
.dir-note a { color: #0a0a0a; text-decoration: underline; text-underline-offset: 3px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .grid-2, .dev-inner, .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .notice-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .statbar-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .about-card { order: -1; }
}

@media (max-width: 880px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,27,46,.98); backdrop-filter: blur(10px);
    padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav > a::after { display: none; }
  .nav-cta { margin-top: .8rem; text-align: center; }
  .nav-toggle { display: block; }
  .site-header { background: rgba(10,27,46,.92); backdrop-filter: blur(10px); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Phones: hero framing + fine-tuning */
@media (max-width: 700px) {
  html { scroll-padding-top: 72px; }
  .hero { min-height: 88vh; }
  /* On portrait screens use cover so the photo always fills, and frame the runway/apron */
  .hero-photo {
    background-size: cover;
    background-position: 52% 64%;
    animation: none;
  }
  .hero-inner { padding-top: 88px; padding-bottom: 56px; }
  .hero-lead { max-width: 100%; }
  .hero-actions { gap: .8rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .shot img { height: 240px; }
  .badge-card { padding: 1.8rem 1.5rem; }
  .op-lines { line-height: 2; }
  .waitlist-form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .svc-grid, .statbar-grid, .dir-grid { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat { padding: 1.5rem 1rem; }
  .page-hero { padding: 130px 0 56px; }
  .cd-row { grid-template-columns: 1fr; gap: .3rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-nav { gap: 1rem 1.4rem; }
  .footer-legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
