@import url("shared.css");

/* ================= INTRO (overrides on top of shared.css) ================= */
.intro {
  padding: 88px 0 56px;
}
.intro h2 {
  max-width: 24ch;
  margin-bottom: 18px;
}

/* ================= SESSION SCHEDULE ================= */
.schedule {
  padding: 10px 0 90px;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.session-card {
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.1);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.session-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(0, 33, 71, 0.25);
}
.session-date {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.session-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--main);
  line-height: 1.25;
  margin-bottom: 10px;
}
.session-time {
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 18px;
}
.session-card p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  flex-grow: 1;
  margin-bottom: 24px;
}
.session-link {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--main);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--gold);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.session-link:hover {
  color: var(--gold);
}

/* ================= WHAT TO EXPECT — STEPS ================= */
.steps {
  background: var(--grey-bg);
  padding: 90px 0;
}
.steps .intro {
  padding: 0 0 56px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 10px;
}
.step-index {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--main);
  margin-bottom: 10px;
}
.step p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: #56575c;
}

/* ================= QUOTE BAND (overrides on top of shared.css) ================= */
.quoteband p {
  margin: 0 auto 18px;
}
.quoteband cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ================= GALLERY (overrides on top of shared.css) ================= */
.gallery .intro {
  padding: 0 0 56px;
}
.g1 { height: 380px; }
.g2 { height: 250px; }
.g3 { height: 300px; }
.g4 { height: 220px; }
.g5 { height: 340px; }
.g6 { height: 270px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .masonry {
    columns: 2 180px;
  }
}

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
