/* ─────────────────────────────────────────
   PAGE HERO — matches about-style.css
───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--silver);
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────
   FLEET SECTION
───────────────────────────────────────── */
.fleet-section {
  padding: 5rem 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.fleet-intro {
  margin-bottom: 3rem;
}

.fleet-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.fleet-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.fleet-visual {
  background: var(--navy);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  border-bottom: 3px solid var(--gold);
}

.fleet-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

.fleet-info {
  padding: 1.75rem;
}

.fleet-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.fleet-capacity {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.fleet-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.amenity-tag {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* ─────────────────────────────────────────
   STANDARDS SECTION
───────────────────────────────────────── */
.standards-section {
  background: var(--navy);
  padding: 5rem 2.5rem;
}

.standards-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.standards-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.standard-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.standard-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.standard-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.standard-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-family: "Cormorant Garamond", serif;
}

.standard-item p {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.cta-band h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(7, 17, 31, 0.65);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: var(--navy-card);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fleet-section {
    padding: 3rem 1.5rem;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .standards-section {
    padding: 3rem 1.5rem;
  }

  /* Mobile carousel for standards */
  .standards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 0.25rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 1.5rem;
  }

  .standards-grid::-webkit-scrollbar {
    display: none;
  }

  .standard-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }
}
