: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: 0px;
}

.exp-filter button {
  background: transparent;
  border: 1px solid #ddd;
  padding: 1px 6px;
  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: 30px;
}

.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;
}
/* ================= HERO VIDEO ================= */

.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.exp-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 750px;
  padding: 0 20px;
}

.exp-hero-inner h1 {
  font-size: 48px;
  margin: 15px 0;
}

.exp-hero-inner p {
  font-size: 17px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .video-hero {
    height: 30vh;
    margin-top: 76px;
  }

  .exp-hero-inner h1 {
    font-size: 30px;
  }

  .exp-hero-inner p {
    font-size: 15px;
  }
}
/* ================= HERO TEXT (AFTER VIDEO) ================= */

.exp-hero-text {
  padding: 120px 20px 80px;
  text-align: center;
  background: #ffffff;
}

.exp-hero-text-inner {
  max-width: 900px;
  margin: 0 auto;
}

.exp-hero-text .exp-eyebrow {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b68c5a;
  margin-bottom: 20px;
}

.exp-hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 400;
  margin-bottom: 0px;
  line-height: 1.2;
}

.exp-hero-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #6f6f6f;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .exp-hero-text {
    padding: 30px 20px 40px;
  }

  .exp-hero-text h1 {
    font-size: 32px;
  }
}