/* ============================================================
   SMYF THEME — HOMEPAGE STYLES
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.hp-hero {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height) - 120px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hp-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transition: transform 10s ease;
}
.hp-hero:hover .hp-hero__img { transform: scale(1.04); }

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 24, 14, 0.94) 0%,
    rgba(10, 24, 14, 0.60) 42%,
    rgba(10, 24, 14, 0.12) 100%
  );
}

.hp-hero__gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  z-index: 3;
}

.hp-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 64px 60px;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: flex-end;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hp-hero__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-hero__kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.hp-hero__headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 74px);
  color: white;
  line-height: 1.04;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hp-hero__sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 540px;
  margin-bottom: 32px;
}

.hp-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Event Card over hero */
.hp-hero__event-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hp-hero__event-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fresh);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fresh);
  display: block;
  animation: pulse-anim 2s ease infinite;
}

@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.hp-hero__event-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hp-hero__event-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hp-hero__event-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── Pulse Strip ──────────────────────────────────────────── */
.hp-pulse {
  background: var(--green);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hp-pulse__cell {
  padding: 28px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hp-pulse__cell:last-child { border-right: none; }

.hp-pulse__label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hp-pulse__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hp-pulse__meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.hp-pulse__link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.hp-pulse__link:hover { gap: 10px; }

.hp-pulse__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  background: var(--gold);
  border-radius: 2px;
  color: var(--ink);
  font-size: 8px;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Programmes ───────────────────────────────────────────── */
.hp-programmes {
  padding: var(--space-2xl) 0;
  background: white;
}

.hp-programmes__header {
  margin-bottom: 52px;
}

.hp-programmes__headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  max-width: 640px;
}

.hp-programmes__sub {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.hp-programmes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.hp-prog-card {
  background: white;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.hp-prog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  background: currentColor;
}
.hp-prog-card:hover { background: var(--warm); }
.hp-prog-card:hover::after { transform: scaleX(1); }

.hp-prog-card__bar {
  height: 4px;
}

.hp-prog-card__body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
}

.hp-prog-card__num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.hp-prog-card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 12px 0 10px;
}

.hp-prog-card__desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
}

.hp-prog-card__link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  align-self: flex-start;
}
.hp-prog-card:hover .hp-prog-card__link { gap: 10px; }

/* ── Events ───────────────────────────────────────────────── */
.hp-events {
  padding: var(--space-2xl) 0;
  background: var(--warm);
}

.hp-events__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.hp-events__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.hp-events__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.card:hover .hp-events__img-wrap img { transform: scale(1.04); }

.hp-events__body { padding: 24px 24px 28px; }

.hp-events__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hp-events__date {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}

.hp-events__title {
  font-family: var(--serif);
  font-size: 15px !important;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
}
.hp-events__title a { color: var(--text); }
.hp-events__title a:hover { color: var(--green); }

.hp-events__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── Unfinished Bridge ────────────────────────────────────── */
.hp-bridge {
  background: #080f09;
  overflow: hidden;
}

.hp-bridge__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.hp-bridge__img-col {
  position: relative;
  overflow: hidden;
}
.hp-bridge__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.4s, transform 8s ease;
}
.hp-bridge:hover .hp-bridge__img-col img { transform: scale(1.03); opacity: 0.95; }
.hp-bridge__img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(8, 15, 9, 0.9) 100%);
}

.hp-bridge__play-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hp-bridge__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 213, 4, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(255, 213, 4, 0.4);
  animation: ring 2.5s ease infinite;
  transition: transform 0.2s;
}
.hp-bridge__play:hover { transform: scale(1.1); }

@keyframes ring {
  0%   { box-shadow: 0 0 0 0 rgba(255, 213, 4, 0.4); }
  70%  { box-shadow: 0 0 0 20px rgba(255, 213, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 213, 4, 0); }
}

.hp-bridge__content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hp-bridge__content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--fresh), transparent);
  opacity: 0.35;
}

.hp-bridge__eyebrow {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fresh);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-bridge__eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--fresh);
  display: block;
}

.hp-bridge__title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  color: white;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hp-bridge__title em { font-style: italic; color: var(--gold); }

.hp-bridge__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 32px;
}

.hp-bridge__episodes {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}

.hp-bridge__ep {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  transition: background 0.2s;
}
.hp-bridge__ep:hover { background: rgba(255, 255, 255, 0.08); }

.hp-bridge__ep-thumb {
  width: 48px;
  height: 32px;
  border-radius: 2px;
  background: rgba(255, 213, 4, 0.15);
  border: 1px solid rgba(255, 213, 4, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

.hp-bridge__ep-info {
  flex: 1;
  min-width: 0;
}

.hp-bridge__ep-num {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.hp-bridge__ep-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.hp-bridge__ep-dur {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.hp-bridge__btns { display: flex; gap: 10px; flex-wrap: wrap; }

.hp-bridge__btn-yt {
  background: #FF0000;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.hp-bridge__btn-yt:hover { opacity: 0.88; }

/* ── Opinions ─────────────────────────────────────────────── */
.hp-opinions {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.hp-opinions__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.hp-opinions__list { display: flex; flex-direction: column; }

.hp-opinion-row {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 0.2s;
}
.hp-opinion-row:hover {
  background: white;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.hp-opinion-row__date {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hp-opinion-row__tag { display: inline-block; margin-bottom: 6px; }

.hp-opinion-row__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 4px;
}

.hp-opinion-row__author {
  font-size: 12px;
  color: var(--muted);
}

.hp-opinion-row__arrow {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.18);
  text-align: right;
  transition: transform 0.2s, color 0.2s;
}
.hp-opinion-row:hover .hp-opinion-row__arrow {
  transform: translateX(4px);
  color: var(--green);
}

/* ── Centre ───────────────────────────────────────────────── */
.hp-centre {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hp-centre__img-col {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hp-centre__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hp-centre:hover .hp-centre__img-col img { transform: scale(1.04); }

.hp-centre__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10, 24, 14, 0.75), transparent);
  padding: 28px 28px 18px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

.hp-centre__content {
  background: var(--green);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-centre__content .section-kicker { color: rgba(255, 213, 4, 0.7); }

.hp-centre__content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: white;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hp-centre__body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 28px;
}

.hp-centre__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.hp-centre__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.hp-centre__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hp-centre__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Connect / Newsletter ─────────────────────────────────── */
.hp-connect {
  background: var(--ink);
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hp-connect__social .section-kicker { color: var(--gold); }

.hp-connect__hl {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
}

.hp-connect__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hp-connect__channels { display: flex; flex-direction: column; gap: 10px; }

.hp-connect__channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.hp-connect__channel:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 213, 4, 0.3);
}

.hp-connect__ch-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.hp-connect__ch-name {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.hp-connect__ch-handle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.hp-connect__ch-action {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: auto;
}

/* Newsletter */
.hp-connect__nl-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fresh);
  margin-bottom: 14px;
  display: block;
}

.hp-connect__nl-hl {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hp-connect__nl-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hp-connect__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp-connect__form input {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.hp-connect__form input::placeholder { color: rgba(255, 255, 255, 0.25); }
.hp-connect__form input:focus { border-color: rgba(255, 213, 4, 0.5); }

/* ── Partners ─────────────────────────────────────────────── */
.hp-partners {
  padding: 56px 0;
  background: var(--cream);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hp-partners__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}

.hp-partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.hp-partners__item {
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.25s, transform 0.2s;
  cursor: pointer;
}
.hp-partners__item:hover { filter: none; transform: translateY(-2px); }

.hp-partners__item img { height: 40px; width: auto; }

.hp-partners__item span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  display: block;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hp-hero__content {
    grid-template-columns: 1fr;
    padding: 0 28px 48px;
  }
  /* Collapse hero to single column — hidden event card still occupies
     its 340px track if grid-template-columns is not reset. */
  .hp-hero__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hp-hero__event-card { display: none; }
  .hp-pulse { grid-template-columns: 1fr; }
  .hp-pulse__cell { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hp-programmes__grid { grid-template-columns: 1fr; }
  .hp-bridge__inner { grid-template-columns: 1fr; min-height: 0; }
  .hp-bridge__img-col { min-height: 260px; }
  .hp-bridge__content { padding: 36px 24px; }
  .hp-bridge__content::before { display: none; }
  .hp-bridge__ep-dur { display: none; }
  .hp-bridge__btns { flex-direction: column; }
  .hp-bridge__btn-yt,
  .hp-bridge__btns .btn--outline-white { width: 100%; justify-content: center; }
  .hp-centre { grid-template-columns: 1fr; }
  .hp-centre__img-col { min-height: 280px; }
  .hp-centre__content { padding: 40px 28px; }
  .hp-connect { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .hp-opinion-row { grid-template-columns: 1fr; }
  .hp-opinion-row__date,
  .hp-opinion-row__arrow { display: none; }
}

@media (max-width: 600px) {
  .hp-hero__content { padding: 0 20px 40px; }
  .hp-programmes__grid,
  .hp-events .grid { grid-template-columns: 1fr; }

  /* ── Podcast / Bridge section ───────────────────────────── */
  .hp-bridge__img-col   { min-height: 220px; }   /* shorter image on phones */
  .hp-bridge__content   { padding: 32px 20px; }  /* tighter side padding */

  /* Title: clamp goes too big on phones — cap it */
  .hp-bridge__title     { font-size: 30px; }

  /* Episode rows: tighten up, drop the date stamp */
  .hp-bridge__ep        { padding: 10px 12px; gap: 10px; }
  .hp-bridge__ep-dur    { display: none; }        /* drops "28 Nov 2024" etc. */
  .hp-bridge__ep-thumb  { width: 38px; height: 26px; font-size: 10px; }

  /* Buttons: full-width stack */
  .hp-bridge__btns      { flex-direction: column; }
  .hp-bridge__btn-yt,
  .hp-bridge__btns .btn { width: 100%; justify-content: center; text-align: center; }
}


/* ── Hero kicker: ensure space from gold bar on small screens ── */
.hp-hero__content { padding-top: 60px; }
@media (max-width: 600px) {
  .hp-hero__content { padding-top: 48px; }
}