/* Homepage "Explore" gallery. Parchment + gold, matching the interactive
   guides it links to. Transparent outer background so the site shows through. */

#explore-feature { display: block; padding: 46px 20px 30px; }
.ex-inner { max-width: 1080px; margin: 0 auto; }

.ex-head { text-align: center; margin-bottom: 24px; }
.ex-eyebrow { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: #a8823f; margin: 0 0 8px; }
.ex-title { font-family: 'Cinzel', serif; font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; color: #2c2a26 !important; margin: 0 0 6px; }
.ex-subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 2.2vw, 19px); font-style: italic; color: #5f5647; margin: 0 auto; max-width: 620px; }

.ex-card {
  display: flex; flex-direction: column; text-decoration: none; overflow: hidden;
  background: #fbf6ea; border: 1px solid #cdb987; border-radius: 12px;
  box-shadow: inset 0 0 0 3px #e7d7ac, 0 5px 16px rgba(90, 68, 28, 0.12);
  transition: transform 160ms ease, box-shadow 200ms ease;
}
.ex-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 3px #e6c96f, 0 14px 30px rgba(120, 90, 30, 0.22); }

.ex-prev { display: block; height: var(--ex-prev-h, 132px); background: linear-gradient(160deg, #f6eed6, #efe2c4); border-bottom: 1px solid #ddceb0; overflow: hidden; }
.ex-prev-svg { display: block; width: 100%; height: 100%; }
.ex-prev-img { display: block; width: 100%; height: 100%; object-fit: cover; }

.ex-card-body { display: flex; flex-direction: column; padding: 15px 18px 16px; }
.ex-card-flag { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #a8823f; margin-bottom: 5px; }
.ex-card-title { font-family: 'Cinzel', serif; font-size: 19px; font-weight: 600; color: #2c2a26; line-height: 1.15; margin-bottom: 5px; }
.ex-card-blurb { font-family: 'Cormorant Garamond', serif; font-size: 16px; line-height: 1.4; color: #5f5647; margin-bottom: 12px; flex: 1; }
.ex-open { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 0.05em; color: #a8823f; display: inline-flex; align-items: center; gap: 5px; }
.ex-open i { width: 15px; height: 15px; }

/* Featured card: preview on the side */
.ex-card--featured { flex-direction: row; margin-bottom: 16px; align-items: stretch; }
.ex-card--featured .ex-prev { flex: 0 0 42%; height: auto; min-height: 150px; border-bottom: none; border-right: 1px solid #ddceb0; }
.ex-card--featured .ex-card-body { flex: 1; justify-content: center; padding: 22px 26px; }
.ex-card--featured .ex-card-title { font-size: 24px; }
.ex-card--featured .ex-card-blurb { font-size: 17px; flex: 0 0 auto; }

.ex-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

.ex-seeall { text-align: center; margin-top: 22px; }
.ex-seeall a { font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 0.06em; color: #6b5a34; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid #c9a24e; padding-bottom: 3px; }
.ex-seeall a:hover { color: #2c2a26; }

/* /explore hub: category "rooms" */
.ex-hub .ex-card--featured { margin-bottom: 34px; }
.ex-room { margin-top: 42px; }
.ex-room-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; padding-bottom: 9px; border-bottom: 1px solid #e2d3ad; }
.ex-room-title { font-family: 'Cinzel', serif; font-size: clamp(18px, 2.6vw, 23px); font-weight: 700; color: #6b5a34; margin: 0; letter-spacing: 0.01em; }
.ex-room-all { font-family: 'Cinzel', serif; font-size: 12.5px; letter-spacing: 0.05em; color: #a8823f; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.ex-room-all:hover { color: #6b4f1e; }
.ex-room-all i { width: 14px; height: 14px; }
.ex-room--all { margin-top: 50px; }
.ex-room--all .ex-room-head { border-bottom-color: #c9a24e; }

@media (max-width: 620px) {
  .ex-card--featured { flex-direction: column; }
  .ex-card--featured .ex-prev { flex: none; height: 120px; border-right: none; border-bottom: 1px solid #ddceb0; }
  .ex-card--featured .ex-card-body { padding: 15px 18px; }
}
@media (prefers-reduced-motion: reduce) { .ex-card { transition: none; } }
