.elementor-13599 .elementor-element.elementor-element-ee17796{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}/* Start custom CSS *//* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --green:        #074435;
  --green-mid:    #0a5a46;
  --green-light:  #0d7a5f;
  --cream:        #F1E6DE;
  --cream-dark:   #e4d8cf;
  --warm:         #faf7f4;
  --teal:         #2a9d8f;
  --gold:         #B8935A;
  --gold-light:   #d4aa72;
  --body:         #3a3530;
  --muted:        #7a7068;
  --border:       rgba(7,68,53,0.1);
  --border-mid:   rgba(7,68,53,0.18);
  --border-strong:rgba(7,68,53,0.25);
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── NAV ─── */
.site-nav {
  background: var(--green);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-back {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(241,230,222,0.55);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--cream); }
.nav-spacer { width: 120px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  /* PHOTO PLACEHOLDER — Belen: use existing hero shot (woman with coffee on rainforest balcony). Keep object-position: center 30% so the figure stays centred */
  background: linear-gradient(160deg, #0a5a3f 0%, #074435 45%, #0d3d2a 70%, #1a6b52 100%);
}
.hero-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,68,53,0.2) 0%,
    rgba(7,68,53,0.18) 40%,
    rgba(7,68,53,0.78) 80%,
    rgba(7,68,53,0.92) 100%
  );
}
.hero-atmo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 5rem 3.5rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--teal);
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(241,230,222,0.78);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 1.75rem;
}
.hero-sub strong {
  color: var(--cream);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--green);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover { background: white; }
.btn-primary.dark {
  background: var(--green);
  color: var(--cream);
}
.btn-primary.dark:hover { background: var(--green-mid); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(241,230,222,0.7);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(241,230,222,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(241,230,222,0.65); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars-row { display: flex; gap: 2px; }
.stars-row svg { width: 13px; height: 13px; fill: var(--gold-light); }
.hero-rating-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(241,230,222,0.5);
  letter-spacing: 0.04em;
}

/* ─── PAGE SECTION WRAPPER ─── */
.page-section {
  padding: 4rem 5rem;
  border-bottom: 0.5px solid var(--border);
}
.page-section:last-of-type { border-bottom: none; }
.page-section.alt-bg  { background: var(--cream); }
.page-section.dark-bg { background: var(--green); }
.page-section.warm-bg { background: var(--warm); }

/* Inner content width constraint — matches add-ons pattern */
.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 0.5px;
  background: var(--teal);
}
.section-eyebrow.on-dark { color: var(--teal); }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.section-title.on-dark { color: var(--cream); }

.section-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.section-desc.on-dark { color: rgba(241,230,222,0.65); }

/* ─── INCLUSIONS STRIP ─── */
.inclusions-wrap { background: var(--green); }
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}
.inclusion-cell {
  padding: 2.5rem 2.5rem;
  border-right: 0.5px solid rgba(241,230,222,0.08);
}
.inclusion-cell:last-child { border-right: none; }
.inclusion-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.75rem;
}
.inclusion-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.inclusion-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(241,230,222,0.6);
  line-height: 1.75;
}

/* ─── EXPERIENCES — split block ─── */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-mid);
  border: 0.5px solid var(--border-mid);
}
.exp-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.exp-bg {
  position: absolute;
  inset: 0;
}
.exp-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.exp-card:hover .exp-bg img { transform: scale(1.04); }
/* painted placeholders */
.pb-canyon { background: linear-gradient(145deg,#0a1a2a,#1a3a5a,#0a2a4a); }
.pb-sol    { background: linear-gradient(145deg,#0a3a2e,#0a5a45,#074435); }
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(7,68,53,0.92) 0%,rgba(7,68,53,0.45) 55%,transparent 100%);
}
.exp-body {
  position: relative;
  z-index: 2;
  padding: 2.25rem;
  width: 100%;
}
.exp-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}
.exp-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.exp-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(241,230,222,0.72);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 1.25rem;
}
.exp-detail-pill {
  display: inline-block;
  background: rgba(42,157,143,0.18);
  border: 0.5px solid rgba(42,157,143,0.4);
  border-radius: 2px;
  padding: 0.45rem 0.85rem;
  font-size: 11px;
  font-weight: 400;
  color: rgba(241,230,222,0.85);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.exp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0.5px solid rgba(241,230,222,0.4);
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.exp-btn:hover { background: var(--teal); border-color: var(--teal); }

.sol-code-box {
  background: rgba(7,68,53,0.7);
  border: 0.5px solid rgba(184,147,90,0.35);
  border-radius: 3px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.1rem;
  display: inline-block;
}
.sol-code-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241,230,222,0.45);
  display: block;
  margin-bottom: 3px;
}
.sol-code {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  display: block;
}
.sol-code-note {
  font-size: 10px;
  font-weight: 300;
  color: rgba(241,230,222,0.38);
  margin-top: 3px;
  display: block;
  font-style: italic;
}

/* ─── ACCOMMODATION ─── */

/* Glamping hero card — large feature */
.accom-hero {
  position: relative;
  min-height: 520px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
}
/* PHOTO PLACEHOLDER — Belen: Woodland Glamping tent, evening atmosphere, fire pit lit */
.accom-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,#0a2a1a,#1a5a30,#0a3a20);
}
.accom-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.accom-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(7,68,53,0.9) 0%,rgba(7,68,53,0.3) 60%,transparent 100%);
}
.accom-hero-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--teal);
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.accom-hero-body {
  position: relative;
  z-index: 2;
  padding: 2.25rem;
  width: 100%;
}
.accom-hero-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}
.accom-hero-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.accom-hero-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(241,230,222,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.1rem;
}
.accom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.accom-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(241,230,222,0.72);
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(241,230,222,0.18);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Secondary accom grid — 3 cards */
.accom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.accom-card {
  background: white;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  overflow: hidden;
}
.accom-card-visual {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.accom-card-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.accom-card:hover .accom-card-visual img { transform: scale(1.04); }
/* painted placeholders */
.pb-vista    { background: linear-gradient(145deg,#0a2a2a,#1a4a4a,#0a3a3a); }
.pb-lodge    { background: linear-gradient(145deg,#1a2a0a,#3a4a1a,#2a3a0a); }
.pb-hillside { background: linear-gradient(145deg,#2a1a0a,#4a3a1a,#3a2a0a); }
.accom-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}
.accom-card-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.accom-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.accom-card-link {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}
.accom-card-link:hover { text-decoration: underline; }

/* ─── SOCIAL PROOF ─── */
.proof-rating-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(241,230,222,0.08);
}
.proof-big-num {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.proof-rating-detail { flex: 1; }
.proof-stars-lg {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.proof-stars-lg svg { width: 16px; height: 16px; fill: var(--gold-light); }
.proof-source {
  font-size: 12px;
  font-weight: 300;
  color: rgba(241,230,222,0.45);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.proof-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(241,230,222,0.1);
  border-radius: 3px;
  padding: 1.5rem;
}
.proof-stars-sm {
  display: flex;
  gap: 2px;
  margin-bottom: 0.85rem;
}
.proof-stars-sm svg { width: 12px; height: 12px; fill: var(--gold-light); }
.proof-quote {
  font-size: 13px;
  font-weight: 300;
  color: rgba(241,230,222,0.82);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.1rem;
}
.proof-name {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.proof-type {
  font-size: 10px;
  font-weight: 300;
  color: rgba(241,230,222,0.35);
  margin-top: 2px;
}

/* ─── BOOKING CLOSE ─── */
.close-wrap { background: var(--cream); }
.close-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.close-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.close-eyebrow::before {
  content: '';
  width: 20px;
  height: 0.5px;
  background: var(--teal);
}
.close-h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.close-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 1.5rem;
}
.close-terms {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 500px;
  margin-top: 1rem;
}
.close-terms a { color: var(--teal); text-decoration: none; }
.close-terms a:hover { text-decoration: underline; }

.close-checklist {
  flex-shrink: 0;
  background: white;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  padding: 1.5rem 1.75rem;
  min-width: 220px;
}
.close-checklist-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}
.close-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.close-check-item:last-child { margin-bottom: 0; }
.close-tick {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.close-tick svg { width: 9px; height: 9px; fill: white; }

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq-item {
  background: white;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  padding: 1.35rem 1.5rem;
}
.faq-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.faq-a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a a { color: var(--teal); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
.page-footer {
  background: var(--green);
  padding: 1.75rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-help {
  font-size: 12px;
  font-weight: 300;
  color: rgba(241,230,222,0.5);
}
.footer-help a { color: var(--teal); text-decoration: none; }

/* ─── STAR SVG helper ─── */
.star-svg { display: inline-block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-content  { padding: 2.5rem 2rem 3rem; }
  .page-section  { padding: 3rem 2rem; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .inclusion-cell { border-right: none; border-bottom: 0.5px solid rgba(241,230,222,0.08); }
  .inclusion-cell:last-child { border-bottom: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .accom-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .close-inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .page-footer { flex-direction: column; gap: 1rem; padding: 1.5rem 2rem; text-align: center; }
}
@media (max-width: 560px) {
  .accom-grid { grid-template-columns: 1fr; }
}

/* ─── ACTIVITY TILE CAROUSEL ─── */
.tiles-outer {
  position: relative;
  overflow: hidden;
}
.tiles-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}
.activity-tile {
  flex: 0 0 calc(33.333% - 0.67rem);
  background: white;
  border: 0.5px solid var(--border-mid);
  border-radius: 3px;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.activity-tile--featured {
  border-color: var(--teal);
  border-width: 1px;
}
.activity-tile-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  background: var(--teal);
  color: white;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 3px 3px;
}
.activity-tile-icon {
  font-size: 28px;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.activity-tile-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.activity-tile-freq {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}
.activity-tile-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.activity-tile-footer {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  padding-top: 0.75rem;
  border-top: 0.5px solid var(--border);
}
.tiles-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.tiles-btn {
  background: white;
  border: 0.5px solid var(--border-mid);
  border-radius: 2px;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: inherit;
}
.tiles-btn:hover { background: var(--cream-dark); }
.tiles-btn:disabled { opacity: 0.3; cursor: default; }
.tiles-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.tiles-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-mid);
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.tiles-dot.active { background: var(--green); }

@media (max-width: 760px) {
  .activity-tile { flex: 0 0 calc(50% - 0.5rem); }
}
@media (max-width: 480px) {
  .activity-tile { flex: 0 0 85%; }
}/* End custom CSS */