/* ============================================================
   inspiration.css — INSPIRATION page-specific styles.
   Shared chrome + hero + post-cards + primitives in /site.css.
   ============================================================ */

.hero { height: 982px; }

/* ---- QUOTE / INTRO ---- */
.insp-quote { padding: 160px 0 0; }
.quote-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 56px; line-height: 66px; letter-spacing: -0.02em; color: var(--ink);
  text-align: center; max-width: 900px; margin: 0 auto 52px;
}
.quote-grid { display: grid; grid-template-columns: 560px 1fr; gap: 56px; align-items: start; }
.quote-media img { width: 100%; aspect-ratio: 560 / 470; object-fit: cover; }
.quote-cap { margin-top: 12px; font-size: 12px; line-height: 16px; letter-spacing: -0.02em; color: var(--cap); }
.quote-cap .dot { color: var(--teal); }
.quote-body { padding-top: 8px; }
.quote-body p { color: var(--ink-soft); font-size: 15px; line-height: 24px; margin-bottom: 22px; max-width: 540px; }

/* ---- EXPLORE DESTINATIONS ---- */
.explore { padding: 116px 0 84px; text-align: center; }
.explore .serif-title { margin-bottom: 30px; }
.explore .ex-desc { color: var(--ink-soft); font-size: 16px; line-height: 26px; max-width: 880px; margin: 0 auto 30px; }
.explore .ex-cta-note { color: var(--ink); font-weight: 500; font-size: 16px; margin: 22px auto 44px; }
.explore .pill-navy { margin-bottom: 100px; }
.explore { padding-bottom: 118px; }

.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.dest-card { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 408 / 560; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; }
.dest-tag {
  position: absolute; left: 18px; top: 18px; z-index: 2;
  background: var(--teal); color: var(--white);
  font-size: 14px; font-weight: 500; letter-spacing: -0.02em;
  padding: 9px 18px; border-radius: 8px;
}
.dest-arrow {
  position: absolute; right: 18px; top: 18px; z-index: 2;
  width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
}
.dest-arrow img { width: 16px; height: 16px; }
.dots { display: flex; gap: 9px; justify-content: center; margin-top: 30px; }
.dot-nav { width: 9px; height: 9px; border-radius: 999px; background: #cdd3d8; }
.dot-nav.active { background: var(--navy); width: 22px; }

/* ---- GET INSPIRED (reuses shared .post cards) ---- */
.inspired { padding: 140px 0 96px; text-align: center; }
.inspired .serif-title { margin-bottom: 16px; }
.inspired .insp-sub { color: var(--ink-soft); font-size: 17px; line-height: 24px; margin-bottom: 28px; }
.inspired .pill-navy { margin-bottom: 56px; }
.inspired .post-grid { text-align: left; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .quote-grid { grid-template-columns: 1fr; gap: 28px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  /* Swipe carousel (native scroll-snap): one card per view with a peek of the next.
     Dots (below) are wired up in controller.js. */
  .dest-grid {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter);
  }
  .dest-grid::-webkit-scrollbar { display: none; }
  .dest-card { flex: 0 0 86%; scroll-snap-align: center; }
}
/* The dots belong to the mobile carousel only; the desktop design shows a plain grid. */
.dest-dots { display: none; }
.dest-dots .dot-nav { border: 0; padding: 0; cursor: pointer; }
@media (max-width: 640px) {
  .dest-dots { display: flex; }
}
