/* Hero (home) */
.hero--home {
  min-height: 640px;
  padding-bottom: 9rem;
  text-align: center;
}
.hero--home .hero__inner { max-width: 780px; margin: 0 auto; }
.hero--home h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  margin-bottom: var(--space-2);
  max-width: none;
}
.hero--home .hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-4);
}
.hero--home .hero__ctas { justify-content: center; }
.hero--home .btn--primary {
  background: rgba(91, 160, 214, 0.55);
  color: #fff;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.hero--home .btn--primary:hover {
  background: rgba(44, 111, 187, 0.8);
  color: #fff;
}

/* Floating cards (cream cards overlapping bottom of hero) */
.float-cards-wrap {
  position: relative;
  margin-top: -7rem;
  z-index: 5;
  padding: 0 0 var(--space-6);
  background: linear-gradient(to bottom, transparent 0, transparent 7rem, #fff 7rem);
}
.float-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.float-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.float-card__icon {
  width: 56px;
  height: 56px;
  color: var(--sky);
  margin-bottom: var(--space-2);
}
.float-card__icon svg { width: 100%; height: 100%; }
.float-card h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.float-card__status {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.float-card__status::before,
.float-card__status::after {
  content: '–';
  margin: 0 0.35rem;
  color: var(--text);
}
.float-card p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.float-card p:last-child { margin-bottom: 0; }
.float-card a { color: var(--nav-link); }
.float-card a:hover { color: var(--nav-link-hover); text-decoration: underline; }
.float-card strong { font-weight: 700; color: var(--navy); }

/* FBO Services body block */
.fbo-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.fbo-intro h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.fbo-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
}
.fbo-intro__divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-2) auto var(--space-3);
}

/* Fuel layout (center-of-page) */
.fuel-block {
  max-width: 960px;
  margin: 0 auto;
}
.fuel-block__header {
  text-align: center;
  margin-bottom: var(--space-4);
}
.fuel-block__note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: var(--space-3);
}

/* Gallery: 4x2 on desktop */
.gallery--large {
  grid-template-columns: repeat(4, 1fr);
}
.gallery--large .gallery__item:nth-child(1),
.gallery--large .gallery__item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 8/3;
}

@media (max-width: 900px) {
  .float-cards { grid-template-columns: 1fr; }
  .float-cards-wrap {
    margin-top: -4rem;
    background: linear-gradient(to bottom, transparent 0, transparent 4rem, #fff 4rem);
  }
  .hero--home { padding-bottom: 6rem; min-height: 520px; }
  .gallery--large { grid-template-columns: repeat(2, 1fr); }
  .gallery--large .gallery__item:nth-child(1),
  .gallery--large .gallery__item:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}
