/* ============================================================
   AURA AVENUE — home.css
   Front door. Loads on top of aura.css. Everything is hm-prefixed.
   ============================================================ */

/* ---------- Hero ---------- */
.hm-hero { position: relative; min-height: min(92vh, 54rem); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hm-hero__media { position: absolute; inset: 0; z-index: 0; }
.hm-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.hm-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--au-ink) 2%, rgba(11,11,12,0.35) 45%, rgba(11,11,12,0.72) 100%),
    radial-gradient(90% 70% at 20% 80%, rgba(11,11,12,0.55), transparent 70%);
}
.hm-hero__inner { position: relative; z-index: 1; width: 100%; padding-top: calc(var(--au-bar) + clamp(3rem, 12vh, 7rem)); padding-bottom: clamp(2rem, 6vh, 3.5rem); }
.hm-hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hm-ticker {
  position: relative; z-index: 1; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1px; background: var(--au-line);
  border-top: 1px solid var(--au-line);
}
.hm-ticker > div { margin: 0; background: var(--au-ink); padding: 1.1rem clamp(1.1rem, 4vw, 2rem); }
.hm-ticker dt { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--au-muted); }
.hm-ticker dd { margin: 0.3rem 0 0; font-family: var(--au-display); font-size: 1.35rem; color: var(--au-bronze); }

/* ---------- Sections ---------- */
.hm-sec { border-top: 1px solid var(--au-line); scroll-margin-top: 6rem; }
.hm-head { max-width: 62ch; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.hm-head__lede { color: var(--au-muted); margin: 0.4rem 0 0; }
.hm-more { margin: clamp(1.4rem, 4vw, 2.2rem) 0 0; }
.hm-more a {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--au-bronze); text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 87, 0.4); padding-bottom: 0.25rem;
}
.hm-more a:hover { color: var(--au-bronze-hi); border-color: var(--au-bronze-hi); }

/* ---------- Statement ---------- */
.hm-statement__body { max-width: 68ch; font-size: 1.06em; color: var(--au-muted); margin: 0 0 clamp(2rem, 5vw, 3rem); }
.hm-pillars { display: grid; gap: clamp(1.2rem, 3vw, 2.4rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.hm-pillar { padding-top: 1.2rem; border-top: 1px solid var(--au-line); }
.hm-pillar p { margin: 0; color: var(--au-muted); font-size: 0.97em; }

/* ---------- Fleet classes ---------- */
.hm-classes { display: grid; gap: clamp(0.9rem, 2.5vw, 1.2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.hm-class {
  display: block; text-decoration: none;
  background: var(--au-panel); border: 1px solid var(--au-line); border-radius: 2px;
  padding: clamp(1.2rem, 3.5vw, 1.8rem);
  transition: border-color 0.25s var(--au-ease), background 0.25s var(--au-ease);
}
.hm-class:hover { border-color: rgba(176, 141, 87, 0.4); background: var(--au-panel-2); }
.hm-class__idx { margin: 0 0 0.5rem; font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--au-bronze); }
.hm-class__name { font-family: var(--au-display); font-weight: 400; font-size: 1.55rem; margin: 0 0 0.7rem; }
.hm-class__cars { margin: 0 0 1rem; color: var(--au-muted); font-size: 0.9em; }
.hm-class__rate { margin: 0; padding-top: 0.9rem; border-top: 1px solid var(--au-line); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--au-bronze); }

/* ---------- Itinerary groups ---------- */
.hm-groups { display: grid; gap: 1px; background: var(--au-line); border: 1px solid var(--au-line); border-radius: 2px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.hm-group { display: block; background: var(--au-ink-2); padding: clamp(1.2rem, 3.5vw, 1.7rem); text-decoration: none; transition: background 0.25s var(--au-ease); }
.hm-group:hover { background: var(--au-panel-2); }
.hm-group__name { font-family: var(--au-display); font-weight: 400; font-size: 1.3rem; margin: 0 0 0.35rem; }
.hm-group__meta { margin: 0 0 0.7rem; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--au-bronze); }
.hm-group__lede { margin: 0; color: var(--au-muted); font-size: 0.94em; }

/* ---------- Close ---------- */
.hm-close { text-align: center; }
.hm-close .au-h2, .hm-close .au-kicker { text-align: center; }
.hm-close__lede { max-width: 58ch; color: var(--au-muted); margin: 0 auto 1.8rem; }
.hm-close .hm-hero__actions { justify-content: center; }

@media (prefers-reduced-motion: reduce) { .hm-class, .hm-group { transition: none; } }
