/* Super Breezy — modern STOL aviation static site */
:root {
  --navy-950: #071522;
  --navy-900: #0b1f33;
  --navy-800: #12304a;
  --navy-700: #1a4263;
  --sky-400: #5eb3e8;
  --sky-300: #8ec8ef;
  --sky-100: #e8f4fc;
  --sand-100: #f5f1ea;
  --sand-200: #e8e0d4;
  --amber-500: #d4a017;
  --amber-400: #e6b422;
  --amber-300: #f0c84a;
  --ink: #142230;
  --ink-muted: #4a5d70;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(7, 21, 34, 0.18);
  --shadow-sm: 0 8px 24px rgba(7, 21, 34, 0.1);
  --header-h: 76px;
  --font: "Barlow", system-ui, -apple-system, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand-100);
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sky-400);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--amber-400);
  color: var(--navy-950);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.28);
}

.btn-primary:hover {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--amber-300), var(--amber-400));
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: rgba(18, 48, 74, 0.25);
}

.btn-outline:hover {
  color: var(--navy-900);
  border-color: var(--navy-700);
  background: rgba(255, 255, 255, 0.55);
}

.btn-sm {
  padding: 0.6rem 0.95rem;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 51, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  background: rgba(7, 21, 34, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand:hover { color: var(--white); }

.brand-logo {
  width: auto;
  height: 44px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sky-300);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 34, 0.45) 0%, rgba(7, 21, 34, 0.2) 35%, rgba(7, 21, 34, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 21, 34, 0.72) 0%, rgba(7, 21, 34, 0.15) 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-300);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--amber-400);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 34rem;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.9rem;
  backdrop-filter: blur(8px);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--amber-300);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-head p {
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.section-alt {
  background: linear-gradient(180deg, #eef5fa 0%, var(--sand-100) 100%);
}

.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(94, 179, 232, 0.12), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: rgba(255, 255, 255, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

/* About / intro split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto -12px -12px auto;
  width: 42%;
  height: 42%;
  border: 2px solid var(--amber-400);
  border-radius: var(--radius);
  z-index: -1;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(18, 48, 74, 0.08);
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 48, 74, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}

.feature-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--navy-800);
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.feature-card:hover .feature-card-media img {
  transform: scale(1.05);
}

.feature-card-body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  flex: 1;
}

.card-link {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 0.92rem;
}

.feature-card:hover .card-link {
  color: var(--sky-400);
}

/* Page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(94, 179, 232, 0.18), transparent 50%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 38rem;
  margin: 0;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--sky-300);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--white);
}

/* Content layout */
.content-block {
  padding: 3.5rem 0 4.5rem;
}

.prose {
  max-width: 42rem;
}

.prose p {
  font-size: 1.08rem;
  color: var(--ink-muted);
}

.media-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.media-frame {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 48, 74, 0.06);
}

.media-frame img {
  width: 100%;
  display: block;
}

.media-caption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  border-top: 1px solid rgba(18, 48, 74, 0.06);
}

.two-col-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 48, 74, 0.06);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-950);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 0;
  padding: 1rem 1.15rem 1.15rem;
  font-size: 1.1rem;
}

/* Drawings */
.drawing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.drawing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 48, 74, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.drawing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}

.drawing-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fafafa;
  padding: 0.75rem;
}

.drawing-card span {
  display: block;
  padding: 0.85rem 1rem 1rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 21, 34, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 48, 74, 0.06);
}

.contact-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.contact-list a {
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--navy-800);
}

.contact-list a:hover {
  color: var(--sky-400);
}

.form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-800);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18, 48, 74, 0.18);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-400);
  box-shadow: 0 0 0 3px rgba(94, 179, 232, 0.22);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Honeypot — hidden from humans, visible to bots */
.honey-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(120deg, rgba(212, 160, 23, 0.14), transparent 45%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 3.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.85rem;
  opacity: 0.95;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.35rem;
}

.footer-company {
  color: var(--sky-300);
  font-size: 0.92rem;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-nav ul,
.footer-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber-300);
}

.footer-cta-wrap {
  margin-top: 1rem;
}

.footer-resources {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

.footer-resource-line {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 52rem;
  line-height: 1.55;
}

.footer-resource-line a {
  color: var(--amber-300);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-resource-line a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin: 0;
}

/* Resource callout (ChtSup / pilot tools) */
.resource-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  padding: 1.75rem 1.85rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--white);
  border: 1px solid rgba(18, 48, 74, 0.08);
  box-shadow: var(--shadow-sm);
}

.resource-callout h2 {
  margin-bottom: 0.4rem;
}

.resource-callout p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 42rem;
}

.resource-callout a:not(.btn) {
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.resource-callout a:not(.btn):hover {
  color: var(--sky-400);
}

/* Feature detail layout */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.feature-detail .prose {
  max-width: none;
}

.feature-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 960px) {
  .split,
  .feature-detail,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 21, 34, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list a {
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .brand-text {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 16rem;
  }

  .video-grid,
  .drawing-grid,
  .two-col-media,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 3.25rem 0 2.75rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .cta-band {
    padding: 1.5rem;
  }
}
