/* N329MC — Embraer Phenom 300
   Rebuilt as static HTML 2026-09-05, migrated off Google Sites.
   Shares the Aced Aviation palette: red chevron, navy lettering. */

:root {
  --red:      #d8232a;
  --red-dark: #b21c22;
  --navy:     #29323f;
  --ink:      #1e2530;
  --body:     #4a5563;
  --muted:    #79838f;
  --line:     #dfe4ea;
  --ground:   #ffffff;
  --panel:    #f5f7f9;
  --deep:     #1a212b;
  --measure:  62ch;
  --wide:     1120px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--body);
  font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-dark); text-underline-offset: 2px; }
a:hover { color: var(--red); }
a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }

/* ── Nav ──────────────────────────────────────────────── */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--ground);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 26px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.brand {
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand span { color: var(--red); }
nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
nav a {
  color: var(--body);
  text-decoration: none;
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
nav a:hover { color: var(--ink); }
nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--red); }

/* ── Hero ─────────────────────────────────────────────── */
.hero { background: var(--deep); color: #fff; }
.hero img { width: 100%; object-fit: cover; max-height: 62vh; }
.hero-copy { padding: 40px 0 46px; }
.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}
.hero-copy p { margin: 0; color: #b9c2cd; font-size: 1.12rem; max-width: var(--measure); }
.hero-copy .rule { width: 48px; height: 3px; background: var(--red); margin: 0 0 20px; }

/* ── Page head (inner pages) ──────────────────────────── */
.pagehead { padding: 48px 0 8px; }
.pagehead h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.pagehead .rule { width: 44px; height: 3px; background: var(--red); }
.pagehead p { max-width: var(--measure); margin: 18px 0 0; }

main { padding-bottom: 20px; }

/* ── Home cards ───────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  padding: 46px 0 10px;
}
.card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 22px 24px 24px;
  background: var(--ground);
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { border-color: #c9d1da; border-top-color: var(--red); background: var(--panel); }
.card h2 { margin: 0 0 6px; font-size: 1.16rem; color: var(--ink); font-weight: 700; }
.card p { margin: 0; font-size: .97rem; color: var(--body); }

/* ── Gallery ──────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 34px 30px;
  padding: 34px 0 10px;
}
figure { margin: 0; }
figure img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(30, 37, 48, .13), 0 8px 24px rgba(30, 37, 48, .07);
}
figcaption {
  margin-top: 12px;
  font-size: .96rem;
  color: var(--body);
  border-left: 3px solid var(--red);
  padding-left: 13px;
}
.gallery .wide { grid-column: 1 / -1; }

/* ── Specs ────────────────────────────────────────────── */
.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 34px 0 10px;
}
.spec { background: var(--ground); padding: 24px 26px; }
.spec dt {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 6px;
}
.spec dd {
  margin: 0;
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.spec dd small { display: block; font-size: .88rem; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-top: 3px; }

/* ── Charter ──────────────────────────────────────────── */
.charter-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: start;
  padding: 34px 0 10px;
}
.contact {
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 24px 26px;
  background: var(--panel);
  margin: 24px 0;
}
.contact p { margin: 0 0 8px; }
.contact p:last-child { margin-bottom: 0; }
.contact .big { font-size: 1.42rem; font-weight: 700; color: var(--ink); }
.contact .big a { color: var(--ink); text-decoration: none; }
.contact .big a:hover { color: var(--red-dark); }
.legal { font-size: .9rem; color: var(--muted); margin-top: 26px; }

/* ── Footer ───────────────────────────────────────────── */
footer {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding: 30px 0;
  font-size: .93rem;
  color: var(--muted);
}
footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: space-between; align-items: center; }
footer p { margin: 0; }
footer a { color: var(--body); }
footer img { width: 148px; opacity: .82; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .charter-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery { grid-template-columns: 1fr; gap: 28px; }
  .hero img { max-height: 44vh; }
  .topbar { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
