/* ============================================================
   EXPERIENCES.CSS – Experiences page-specific styles
   ============================================================ */

/* ── PAGE INTRO ────────────────────────────────────────────── */
.exp-intro {
  padding: 6rem 0 0;
}

.exp-intro-title {
  font-size: 3.6rem;          /* 36px */
  font-weight: 400;
  line-height: 4.6rem;       /* 46px */
  color: #000;
  margin: 0 0 1.5rem;       /* 15px below */
}

.exp-intro-text {
  font-size: 1.6rem;             /* 16px */
  font-weight: 300;
  line-height: 2.4rem;         /* 24px */
  color: #000;
  max-width: 100%;
}

/* ── EXPERIENCE SECTIONS ────────────────────────────────────── */
.exp-section {
  padding-top: 6rem;        /* 60px */
}

.exp-section-title {
  font-size: 3.6rem;          /* 36px */
  font-weight: 400;
  line-height: 4.6rem;       /* 46px */
  color: #000;
  margin: 0 0 3rem;        /* 30px gap to hero */
}

/* ── HERO IMAGE ─────────────────────────────────────────────── */
.exp-hero {
  width: 100%;
  height: 33.5rem;          /* 335px */
  overflow: hidden;
}

.exp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── SECTION INTRO TEXT ─────────────────────────────────────── */
.exp-section-intro {
  font-size: 1.6rem;             /* 16px */
  font-weight: 300;
  line-height: 2.4rem;         /* 24px */
  color: #000;
  max-width: 71.3rem;       /* 713px */
  margin: 3rem 0;          /* 30px top & bottom */
}

/* ── CARD GRID ──────────────────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;               /* 30px */
  margin-top: 0;
}

/* ── EXPERIENCE CARD ─────────────────────────────────────────── */
.exp-card {
  display: flex;
  flex-direction: column;
}

.exp-card-img {
  width: 100%;
  height: 18rem;            /* 180px */
  background: #f6efe9;
  overflow: hidden;
  flex-shrink: 0;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exp-card-body {
  padding-top: 1.5rem;      /* 15px gap between image and text */
  flex: 1;
}

.exp-card-title {
  font-size: 1.8rem;         /* 18px */
  font-weight: 400;
  line-height: 3rem;       /* 30px */
  color: #000;
  margin: 0 0 0.4rem;
}

.exp-card-desc {
  font-size: 1.6rem;             /* 16px */
  font-weight: 300;
  line-height: 2.4rem;         /* 24px */
  color: #000;
  margin: 0;
}

/* ── MUSEUM CITY SUB-NAV ─────────────────────────────────────── */
.exp-city-nav {
  display: flex;
  border-bottom: 0.1rem solid var(--color-border, #cbc4bc);
  margin-bottom: 3rem;     /* 30px */
  gap: 0;
}

.exp-city-btn {
  font-family: var(--font-family, 'SUSE', sans-serif);
  font-size: 1.6rem;             /* 16px */
  font-weight: 400;
  color: #000;
  background: none;
  border: none;
  padding: 1.4rem 2.4rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.exp-city-btn::after {
  content: '';
  position: absolute;
  bottom: -0.1000rem;
  left: 0;
  right: 0;
  height: 0.2rem;            /* 2px */
  background: var(--color-blue, #022d6d);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.exp-city-btn.active {
  color: var(--color-blue, #022d6d);
  font-weight: 500;
}

.exp-city-btn.active::after {
  transform: scaleX(1);
}

.exp-city-group {
  display: none;
}

.exp-city-group.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* ── WHY SECTION ─────────────────────────────────────────────── */
.exp-why {
  padding: 6rem 0 0;
}

.exp-why-title {
  font-size: 3.6rem;          /* 36px */
  font-weight: 400;
  line-height: 4.6rem;       /* 46px */
  color: #000;
  margin: 0 0 1.5rem;
}

.exp-why-text {
  font-size: 1.6rem;             /* 16px */
  font-weight: 300;
  line-height: 2.4rem;
  color: #000;
  max-width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .exp-grid,
  .exp-city-group.active {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .exp-hero {
    height: 25.6rem;
  }
}

@media (max-width: 768px) {
  .exp-intro-title,
  .exp-section-title,
  .exp-why-title {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .exp-grid,
  .exp-city-group.active {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .exp-hero {
    height: 20.8rem;
  }

  .exp-section-intro {
    max-width: 100%;
    margin: 2rem 0;
  }

  .exp-city-btn {
    font-size: 1.4rem;
    padding: 1.2rem 1.6rem;
  }
}

@media (max-width: 480px) {
  .exp-section {
    padding-top: 4rem;
  }

  .exp-intro {
    padding-top: 4rem;
  }

  .exp-grid,
  .exp-city-group.active {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  .exp-hero {
    height: 16rem;
  }

  .exp-card-img {
    height: 12.8rem;
  }

  .exp-card-title {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .exp-intro-title,
  .exp-section-title,
  .exp-why-title {
    font-size: 2.2rem;
    line-height: 3rem;
  }

  .exp-city-nav {
    flex-wrap: wrap;
  }

  .exp-city-btn {
    flex: 0 0 50%;
    text-align: left;
    padding: 1rem 1.2rem;
  }
}
