*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #f5c400;
  --gold-dark: #c49a00;
  --black: #0e0e0c;
  --white: #ffffff;
  --off-white: #f6f5f1;
  --stone: #eceae3;
  --text: #1a1a17;
  --muted: #9a9890;
  --surface: #f6f5f1;
  --dark: #ffffff;
  --forest: #1e2d1e;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  font-weight: 300;
  cursor: none;
}

/* --- NAV --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.2rem;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav-logo img {
  height: 30px;
  width: 150px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border-color: rgba(0, 0, 0, 0.07);
}

nav.scrolled .nav-logo img {
  filter: none;
}

nav.scrolled .nav-links a {
  color: var(--muted);
}

nav.scrolled .nav-lang {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--muted);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 2px;
}

.nav-links a:hover {
  color: var(--gold) !important;
}

.nav-lang {
  font-size: 12px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-lang:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- HERO --- */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.556) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(img/main-img.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  z-index: 2;
  position: relative;
  padding: 0 3rem 5rem;
  max-width: 860px;
}

#hero h1 {
  display: block;
  font-family: "Bebas Neue", serif;
  font-size: clamp(4rem, 13vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--gold);
}

.hero-scroll {
  z-index: 2;
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-lr;
}

.hero-title-bold {
  font-family: "Bebas Neue", sans-serif;
  display: block;
  color: var(--white);
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 400px;
  line-height: 1.8;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "DM Sans", sans-serif;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 13px 26px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: none;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 13px 0;
  font-size: 11px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--stone);
  display: flex;
}

.stat-item {
  flex: 1;
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--stone);
  transition: background 0.25s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--stone);
}

.stat-num {
  font-family: "Bebas Neue", serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--black);
  display: block;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* --- EXPERIENCES --- */
#experiences {
  background: var(--white);
  padding: 96px 48px;
}

.btn-ghost-light {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}

.btn-ghost-light:hover {
  color: var(--black);
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

#experiences h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
}

#experiences h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-dark);
  text-transform: capitalize;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2px;
}

.exp-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.exp-card:nth-child(1) .exp-card-bg {
  background-image: url(img/family.jpg);
  background-size: cover;
  background-position: center;
}
.exp-card:nth-child(2) .exp-card-bg {
  background-image: url(img/tunnel.jpg);
  background-size: cover;
  background-position: center;
}
.exp-card:nth-child(3) .exp-card-bg {
  background-image: url(img/bluffs.jpg);
  background-size: cover;
  background-position: center;
}
.exp-card:nth-child(4) .exp-card-bg {
  background-image: url(img/img-women.jpg);
  background-size: cover;
  background-position: center;
}
.exp-card:nth-child(5) .exp-card-bg {
  background-image: url(img/m-img.webp);
  background-size: cover;
  background-position: center;
}

.exp-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.exp-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s ease;
}

.exp-card:hover .exp-card-bg {
  transform: scale(1.05);
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  z-index: 1;
}

.exp-name {
  font-family: "Bebas Neue", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}

.exp-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.exp-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.carousel-dots {
  display: none;
}

/* --- CALENDAR --- */

#calendar {
  background: var(--off-white);
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.556) 0%, rgba(0, 0, 0, 0.2) 100%),
    url(img/hero-img-1.jpg);
  background-size: cover;
  background-position: center;
  padding: 96px 48px;
}

#calendar h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 48px;
}

#calendar h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
}

#calendar .section-label {
  color: var(--gold);
}

.cal-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.mini-cal {
  background: var(--white);
  padding: 1.8rem;
  user-select: none;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.cal-nav-btn:hover {
  background: var(--stone);
  color: var(--black);
}

.cal-month-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day-header {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
  gap: 3px;
}

.cal-day:hover:not(.other-month) {
  background: var(--stone);
  color: var(--black);
}

.cal-day.has-events {
  color: var(--black);
}

.dot {
  display: none;
  width: 4px;
  height: 4px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.cal-day.has-events .dot {
  display: block;
}

.cal-day.selected {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.cal-day.selected .dot {
  background: var(--black);
}

.cal-day.today:not(.selected) {
  color: var(--gold-dark);
  font-weight: 500;
}

.cal-day.other-month {
  opacity: 0.25;
  cursor: default;
}

/* Right panel */
.right-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.panel-header {
  padding: 1.4rem 2rem;
  border-bottom: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.panel-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

.panel-meta {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.back-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  font-family: "DM Sans", sans-serif;
}

.back-btn:hover {
  color: var(--black);
}
.back-btn.visible {
  display: flex;
}

/* Event list */
.event-list-view {
  flex: 1;
  overflow-y: auto;
}

.event-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid var(--stone);
  cursor: pointer;
  transition: background 0.15s;
}

.event-row:last-child {
  border-bottom: none;
}
.event-row:hover {
  background: var(--off-white);
}

.event-row.active {
  background: rgba(245, 196, 0, 0.08);
  border-left: 3px solid var(--gold);
  padding-left: calc(2rem - 3px);
}

.edate .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--black);
  display: block;
  line-height: 1;
  letter-spacing: 0.02em;
}

.edate .day {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.ename {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 3px;
}

.edetails {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.ebadge {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  white-space: nowrap;
}

.b-open {
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--text);
}
.b-limited {
  background: rgba(245, 196, 0, 0.15);
  color: #8a6e00;
  border: 1px solid rgba(245, 196, 0, 0.4);
}
.b-sold {
  background: rgba(180, 50, 30, 0.07);
  color: #a03320;
  border: 1px solid rgba(180, 50, 30, 0.2);
}

/* Detail view */
.detail-view {
  display: none;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
}

.detail-view.visible {
  display: flex;
}

.detail-hero {
  background: var(--off-white);
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--stone);
}

.detail-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.detail-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--black);
  line-height: 0.92;
  margin-bottom: 0.6rem;
}

.detail-date-line {
  font-size: 12px;
  color: var(--muted);
}

.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone);
  border-bottom: 1px solid var(--stone);
}

.detail-meta-item {
  background: var(--white);
  padding: 1rem 2rem;
}

.dmeta-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.dmeta-value {
  font-size: 13px;
  color: var(--black);
  font-weight: 400;
}

.detail-desc {
  padding: 1.5rem 2rem;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  border-bottom: 1px solid var(--stone);
  flex: 1;
}

.detail-cta {
  padding: 1.2rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-wa {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #1a9e4a;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-wa:hover {
  background: rgba(37, 211, 102, 0.15);
}

.detail-spots {
  font-size: 11px;
  color: var(--muted);
}

.no-selection {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px;
  color: var(--muted);
}

.no-selection-icon {
  font-size: 2rem;
  opacity: 0.25;
}
.no-selection p {
  font-size: 13px;
  text-align: center;
  line-height: 1.7;
}

/* --- HOW IT WORKS --- */
#how {
  background: var(--white);
  padding: 96px 48px;
}

.how-header {
  margin-bottom: 64px;
}

#how h2 {
  font-family: "Bebas Neue", serif;
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: 3px;
  font-weight: 300;
  color: var(--black);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--stone);
}

.how-step {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.how-step:hover {
  background: var(--off-white);
}

.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
  margin-top: 48px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

/* --- ABOUT --- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-text {
  background: var(--off-white);
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-visual {
  position: relative;
  overflow: hidden;
  background-image: url(img/about.jpg);
  background-size: cover;
  background-position: center;
}

.about-text .section-label {
  color: var(--gold);
}

.about-text h2 {
  font-family: "Bebas Neue", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: var(--black);
  margin-top: 12px;
}

.about-text em {
  font-family: "Bebas Neue", serif;
  color: var(--gold);
}

.about-text p {
  font-size: 13px;
  color: rgba(28, 28, 28, 0.45);
  line-height: 1.9;
  margin-top: 20px;
  max-width: 380px;
}

.guide-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.pill {
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid rgba(28, 28, 28, 0.45);
  color: rgba(28, 28, 28, 0.45);
  transition: all 0.2s;
  cursor: default;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- CTA --- */
#join {
  background: var(--black);
  padding: 156px 64px;
  position: relative;
  overflow: hidden;
}

#join::before {
  content: "WANDER";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20vw;
  color: rgba(245, 196, 0, 0.03);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.cta-title {
  font-family: "Bebas Neue", serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-top: 0;
  text-align: center;
}

.cta-title em {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
}

.cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 380px;
  margin: 20px auto 48px;
  line-height: 1.95;
  text-align: center;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whats {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-whats:hover {
  background: rgba(37, 211, 102, 0.2);
}

.btn-ig {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-ig:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* --- FOOTER --- */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--stone);
  padding: 35px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: block;
  height: 25px;
}

.footer-logo img {
  height: 25px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
  filter: none;
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--black);
}

.footer-copy {
  font-size: 11px;
  color: rgba(154, 152, 144, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- CURSOR --- */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.15s,
    height 0.15s;
  mix-blend-mode: multiply;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 196, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Nav */
  nav {
    padding: 1rem 1.2rem;
  }
  .nav-links {
    display: none;
  }
  .nav-lang {
    font-size: 10px;
    padding: 6px 10px;
  }

  /* Hero */
  .hero-content {
    padding: 0 1.5rem 3rem;
  }
  #hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }
  .hero-desc {
    font-size: 0.8rem;
  }
  .hero-scroll {
    display: none;
  }
  .hero-bg {
    background-image:
      linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%),
      url("img/mobile.JPG");
  }

  /* Stats */
  .stats-bar {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--stone);
    padding: 28px 16px;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--stone);
  }
  .stat-num {
    font-size: 36px;
  }

  /* Experiences */
  #experiences {
    padding: 48px 0 48px 20px;
  }
  .exp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 28px;
  }

  /* CARROUSEL VIEW */

  .exp-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .exp-grid::-webkit-scrollbar {
    display: none;
  }

  .exp-card {
    flex: 0 0 85%;
    aspect-ratio: 3/4;
    scroll-snap-align: start;
  }

  .exp-card:first-child {
    grid-row: span 1;
    aspect-ratio: 3/4;
    flex: 0 0 85%;
  }

  .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding-right: 20px;
}

.carousel-dots .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone);
  transition: background 0.2s, width 0.2s;
}

.carousel-dots .dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}


  /* Calendar */
  #calendar {
    padding: 48px 20px;
  }
  .cal-wrap {
    grid-template-columns: 1fr;
  }
  .mini-cal {
    display: none;
  }
  .right-panel {
    min-height: 400px;
  }
  .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
  }
  .event-row {
    padding: 0.9rem 1.2rem;
    gap: 0.8rem;
    grid-template-columns: 48px 1fr auto;
  }
  .edate .num {
    font-size: 1.6rem;
  }
  .detail-meta {
    grid-template-columns: 1fr;
  }
  .detail-meta-item {
    padding: 0.8rem 1.2rem;
  }
  .detail-hero {
    padding: 1.2rem;
  }
  .detail-desc {
    padding: 1rem 1.2rem;
  }
  .detail-cta {
    padding: 1rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .back-btn {
    color: var(--gold);
  }
  /* How it works */
  #how {
    padding: 48px 20px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .how-step {
    padding: 28px 24px;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 280px;
  }
  .about-text {
    padding: 48px 28px;
  }

  /* CTA */
  #join {
    padding: 80px 24px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-whats,
  .btn-ig {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 28px 24px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  #cursor,
  #cursor-ring {
    display: none;
  }
}
