:root {
  --bg-ivory: #faf9f6;
  --text-dark: #1c1c1c;
  --text-muted: #6f6f6f;
  --accent-gold: #b89b5e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-ivory);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
}

/* ================= HERO ================= */
.exp-hero {
  padding: 140px 20px 100px;
  text-align: center;
}

.exp-hero-inner {
  max-width: 760px;
  margin: auto;
}

.exp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.exp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  margin: 24px 0 20px;
}

.exp-hero p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ================= FILTER ================= */
.exp-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.exp-filter button {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-muted);
}

.exp-filter button.active {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

/* ================= GRID ================= */
.exp-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.exp-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.exp-content {
  margin-top: 18px;
}

.exp-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.exp-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exp-hero {
    padding: 110px 20px 80px;
  }

  .exp-hero h1 {
    font-size: 30px;
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .exp-card img {
    height: 320px;
  }
}
/* ================= VARIABLES ================= */
:root {
  --bg-ivory: #faf9f6;
  --text-dark: #1c1c1c;
  --text-muted: #6f6f6f;
  --accent-gold: #b89b5e;
}

/* ================= HERO ================= */
.exp-hero {
  padding: 140px 20px 100px;
  text-align: center;
}

.exp-hero-inner {
  max-width: 760px;
  margin: auto;
}

.exp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.exp-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  margin: 22px 0 18px;
}

.exp-hero p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ================= FILTER ================= */
.exp-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 70px;
}

.exp-filter button {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.exp-filter button.active,
.exp-filter button:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

/* ================= GRID ================= */
.exp-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.exp-card {
  transition: transform 0.4s ease;
}

.exp-card:hover {
  transform: translateY(-6px);
}

.exp-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.exp-content {
  margin-top: 18px;
}

.exp-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.exp-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ================= FILTER ANIMATION ================= */
.exp-card.hide {
  display: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exp-hero {
    padding: 110px 20px 80px;
  }

  .exp-hero h1 {
    font-size: 30px;
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .exp-card img {
    height: 320px;
  }
}
/* ================= EXPERIENCE LINK ================= */
.exp-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.exp-link:hover h3 {
  opacity: 0.7;
}
