/* ============================================================
   SHARED PAGE STYLES (Tours, Book, About, Contact, etc)
   ============================================================ */

/* ----- Page hero (smaller than home) ----- */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.svg') center/cover;
  opacity: 0.35;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,31,46,0.6) 0%, rgba(14,31,46,0.85) 100%);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.25rem; }

.page-hero h1 {
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
}

.page-hero h1 em { font-style: italic; color: var(--gold-soft); }

.page-hero p {
  font-size: 1.125rem;
  color: rgba(245, 239, 224, 0.78);
  max-width: 580px;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.breadcrumb a { color: rgba(245, 239, 224, 0.7); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb .sep { color: rgba(245, 239, 224, 0.3); }

/* ============================================================
   TOURS CATALOG
   ============================================================ */

.tours-filter {
  background: var(--cream);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  /* once header scrolls in, push down */
}

.tours-filter-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.filter-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; flex: 1; }

.filter-chip {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}

.filter-chip:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.filter-chip.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.filter-select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B3B2F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.tours-results-meta {
  font-size: 0.85rem;
  color: var(--muted);
}
.tours-results-meta strong { color: var(--forest-deep); font-weight: 600; }

.tours-catalog-section {
  background: var(--sand);
  padding: 4rem 0 6rem;
}

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

@media (max-width: 980px) { .tours-grid-cat { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .tours-grid-cat { grid-template-columns: 1fr; } }

/* ============================================================
   TOUR DETAIL PAGE
   ============================================================ */

.tour-detail-hero {
  padding-top: 7rem;
  background: var(--cream);
}

.tour-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.625rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 540px;
}

.tour-gallery > a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.tour-gallery > a:first-child {
  grid-row: 1 / -1;
}

.tour-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.tour-gallery a:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
  .tour-gallery { grid-template-columns: 1fr; grid-template-rows: 1fr; height: auto; }
  .tour-gallery > a { aspect-ratio: 16/10; }
  .tour-gallery > a:not(:first-child) { display: none; }
}

.tour-detail-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  position: relative;
}

@media (max-width: 880px) {
  .tour-detail-body { grid-template-columns: 1fr; gap: 2rem; }
}

.tour-detail-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.tour-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1rem 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.tour-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.tour-detail-meta-item strong {
  color: var(--forest-deep);
  font-weight: 600;
}

.tour-detail-meta-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.tour-detail-content h3 {
  font-size: 1.45rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.tour-detail-content p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.tour-detail-content ul {
  list-style: none;
  margin: 1rem 0 2rem;
}

.tour-detail-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.tour-detail-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.tour-detail-content ul.dot li::before { content: "•"; font-size: 1.3rem; line-height: 1.2; }

.itinerary {
  margin: 2rem 0;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

.itinerary-step {
  margin-bottom: 1.75rem;
  position: relative;
}

.itinerary-step::before {
  content: "";
  position: absolute;
  left: -1.625rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.itinerary-step time {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.itinerary-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.375rem;
}

.itinerary-step p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Booking sidebar */
.book-card {
  position: sticky;
  top: 7rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  align-self: start;
}

.book-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.book-card-price .from {
  font-size: 0.85rem;
  color: var(--muted);
}

.book-card-price .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1;
}

.book-card-price .per { color: var(--muted); font-size: 0.9rem; }

.book-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.book-card-rating .stars { color: var(--gold); letter-spacing: 0.05em; }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest-deep);
  outline: none;
  transition: all var(--t-fast) var(--ease);
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(201, 160, 78, 0.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.book-card .btn { width: 100%; margin-top: 1rem; }

.book-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.book-card-meta-item { display: flex; gap: 0.625rem; align-items: center; }
.book-card-meta-item .icon { color: var(--gold); flex-shrink: 0; }

/* Includes/Excludes grid */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 600px) { .includes-grid { grid-template-columns: 1fr; } }

.includes-grid h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.includes-grid ul li { font-size: 0.95rem; }

.includes-grid ul.excludes li::before {
  content: "✕";
  color: var(--coral);
}

/* ============================================================
   FORMS PAGES (Book, Enquiry, Contact)
   ============================================================ */

.form-page-section {
  padding: 5rem 0;
  background: var(--cream);
}

.form-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 880px) {
  .form-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.form-block {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.form-block-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-block-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-divider {
  margin: 2rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest-deep);
  font-weight: 500;
}

textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.55; }

/* Waiver block */
.waiver-block {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-height: 220px;
  overflow-y: auto;
}

.waiver-block strong { color: var(--forest-deep); }

.waiver-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0;
}

.waiver-check input { margin-top: 0.25rem; flex-shrink: 0; }
.waiver-check label { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }

/* Signature pad */
.signature-pad {
  margin-top: 1.5rem;
}
.signature-pad label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.signature-canvas {
  width: 100%;
  height: 140px;
  background: var(--cream);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius-md);
  cursor: crosshair;
  display: block;
}

.signature-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.signature-clear {
  color: var(--coral);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0.78rem;
  padding: 0;
  letter-spacing: 0.05em;
}

/* Summary sidebar */
.summary-card {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 7rem;
}

.summary-card h4 {
  color: var(--cream);
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}

.summary-tour {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,239,224,0.15);
}

.summary-tour img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.summary-tour h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.summary-tour small {
  color: rgba(245,239,224,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(245,239,224,0.8);
}

.summary-line strong { color: var(--cream); font-weight: 500; }

.summary-total {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,239,224,0.15);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-total .label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.summary-total .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 500;
}

.summary-trust {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,239,224,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-trust-item {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245,239,224,0.7);
}

.summary-trust-item .icon { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-intro {
  padding: 6rem 0;
  background: var(--cream);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 880px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.about-portrait::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  transform: rotate(-1deg);
  z-index: -1;
  opacity: 0.5;
}

.about-text .eyebrow { margin-bottom: 1.25rem; }
.about-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-text h2 em { font-style: italic; color: var(--coral); }
.about-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-values {
  background: var(--forest-deep);
  padding: var(--space-xl) 0;
  color: var(--cream);
}

.about-values h2 { color: var(--cream); margin-bottom: 3rem; }
.about-values .eyebrow { color: var(--gold-soft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: 2rem;
  background: rgba(245,239,224,0.05);
  border: 1px solid rgba(245,239,224,0.12);
  border-radius: var(--radius-md);
  transition: all var(--t-med) var(--ease);
}

.value-card:hover {
  background: rgba(245,239,224,0.08);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.value-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: rgba(245,239,224,0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-section {
  padding: 4rem 0 6rem;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.faq-side h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.1; margin-bottom: 1rem; }
.faq-side p { color: var(--muted); margin-bottom: 1.5rem; }

.faq-side .btn { margin-top: 1rem; }

.faq-list {}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: -0.005em;
  transition: color var(--t-fast) var(--ease);
}

.faq-item summary:hover { color: var(--coral); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--t-med) var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-info p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-channel {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--sand);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all var(--t-fast) var(--ease);
}

.contact-channel:hover {
  background: var(--sand-warm);
  transform: translateX(4px);
}

.contact-channel .icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: var(--gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-channel small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-channel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest-deep);
  font-weight: 500;
}

/* ============================================================
   404
   ============================================================ */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.svg') center/cover;
  opacity: 0.3;
}

.error-inner { position: relative; z-index: 2; max-width: 540px; }

.error-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(6rem, 16vw, 10rem);
  color: var(--gold-soft);
  line-height: 0.85;
  margin-bottom: 1rem;
}

.error-inner h1 { color: var(--cream); margin-bottom: 1rem; }
.error-inner p { color: rgba(245,239,224,0.75); margin-bottom: 2rem; }

/* ============================================================
   EVENTS / SHOP / DESTINATIONS
   ============================================================ */

.events-section, .shop-section, .destinations-section {
  background: var(--sand);
  padding: 4rem 0 6rem;
}

.event-list {
  max-width: 920px;
  margin: 0 auto;
}

.event-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  transition: all var(--t-med) var(--ease);
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 680px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }
}

.event-date {
  text-align: center;
  padding: 0.75rem 0;
  border-right: 1px solid var(--line);
}

.event-date .month {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.event-date .day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--forest-deep);
  line-height: 1;
}

.event-date .year {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 680px) {
  .event-date { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 0.75rem; text-align: left; display: flex; align-items: baseline; gap: 0.5rem; }
}

.event-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
  line-height: 1.2;
}

.event-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.event-meta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.625rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Shop */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: var(--content-w);
  margin: 0 auto;
}

@media (max-width: 980px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }

.shop-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--t-med) var(--ease);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.shop-media {
  aspect-ratio: 1;
  background: var(--sand);
}

.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-body { padding: 1.25rem; }

.shop-body h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.shop-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Destinations */
.dest-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

@media (max-width: 880px) { .dest-hero-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-hero-grid { grid-template-columns: 1fr; } }

.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all var(--t-med) var(--ease);
}

.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,31,46,0.9));
  z-index: 1;
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.dest-card:hover img { transform: scale(1.06); }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.dest-card > * { position: relative; z-index: 2; }

.dest-card h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.dest-card small {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
