/* =====================================================================
   Havrais Dire — home page styles
   ===================================================================== */

/* ---------- HERO ---------- */
.hero { position: relative; padding: 84px 0 96px; }
.hero__inner {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 22px;
}
.hero__kicker::before { content: ""; width: 30px; height: 1px; background: var(--terracotta); }
.hero h1 {
  font-size: clamp(3rem, 7.2vw, 5.4rem);
  margin: 0 0 .35em; line-height: 1.0;
}
.hero h1 em {
  font-style: italic; color: var(--terracotta); font-weight: 560;
}
.hero__sub {
  font-size: 1.14rem; color: var(--ink-soft);
  max-width: 47ch; margin: 0 0 34px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Emblem — the ONE place the logo appears on the page */
.hero__art { position: relative; justify-self: end; width: min(290px, 62vw); aspect-ratio: 1; }
.hero__art img {
  width: 100%; height: 100%;
  border-radius: 50%; box-shadow: var(--shadow);
  will-change: transform;
}

@media (max-width: 860px) {
  .hero { padding: 48px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__art { grid-row: 1; justify-self: start; width: min(150px, 40vw); }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; margin-top: 56px;
}
.pillar { border-top: 1px solid var(--ink); padding-top: 22px; }
.pillar__num {
  font-family: var(--serif); font-style: italic; font-weight: 560;
  font-size: .95rem; color: var(--terracotta);
  display: block; margin-bottom: 14px;
}
.pillar h3 { font-size: 1.32rem; margin: 0 0 .45em; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 700px) { .about__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- CLUBS ---------- */
.clubs__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.clubs__count {
  font-family: var(--serif); font-style: italic; font-weight: 560;
  font-size: 1.25rem; color: var(--ink-soft); white-space: nowrap;
}
.clubs__count strong {
  font-style: normal; font-weight: 640; color: var(--terracotta);
  font-size: 2.1rem; letter-spacing: -.02em; margin-right: 2px;
}

.clubs__cats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.cat-chip {
  font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  background: transparent; border: 1px solid var(--line);
  padding: 7px 16px; border-radius: 999px; cursor: pointer;
  transition: all .25s var(--ease);
}
.cat-chip:hover { border-color: var(--terracotta); color: var(--terracotta); }
.cat-chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.clubs__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 16px; margin-top: 30px;
}
.club-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 24px 22px 20px;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}
.club-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(214, 72, 38, .28); }
.club-card__group {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .8;
}
.club-card__name { font-family: var(--serif); font-weight: 620; font-size: 1.22rem; letter-spacing: -.01em; color: var(--ink); line-height: 1.2; }
.club-card__name .tag {
  font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(168, 134, 43, .4);
  padding: 2px 8px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
}
.club-card__blurb { color: var(--ink-soft); font-size: .93rem; margin: 0; flex: 1; }
.club-card__more { font-weight: 600; color: var(--terracotta); font-size: .9rem; margin-top: 6px; }
.club-card__more .arr { display: inline-block; transition: transform .3s var(--ease); }
.club-card:hover .club-card__more .arr { transform: translateX(4px); }
.club-card.is-hidden { display: none; }

/* ---------- SPEAKER EVENTS (teaser) ---------- */
.speakers-teaser { position: relative; }
.speakers-teaser .clubs__head { margin-bottom: 6px; }
.sp-teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 38px;
}
@media (max-width: 900px) { .sp-teaser-grid { grid-template-columns: 1fr; } }

/* ---------- BOARD ---------- */
.board__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px; margin-top: 44px;
}
.member { text-align: center; }
.member__avatar {
  width: 96px; height: 96px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--peach-soft);
  border: 1px solid rgba(214, 72, 38, .2);
  color: var(--terracotta); font-family: var(--serif); font-style: italic;
  font-weight: 620; font-size: 2rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s ease;
}
.member:hover .member__avatar { transform: translateY(-5px); box-shadow: var(--shadow-sm); background: var(--peach); }
.member__name { font-family: var(--serif); font-weight: 620; font-size: 1.12rem; }
.member__role { color: var(--ink-soft); font-size: .86rem; }

/* ---------- CONTACT ---------- */
.contact__card {
  background: var(--terracotta);
  color: #fff; border-radius: 28px; padding: clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow);
}
.contact__card h2 { color: #fff; margin-top: 0; }
.contact__card .eyebrow { color: #FFD9C4; }
.contact__card > div > p { color: rgba(255, 255, 255, .92); max-width: 52ch; }
.contact__list { list-style: none; margin: 24px 0 0; padding: 0; }
.contact__list li { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; font-weight: 500; }
.contact__list a { color: #fff; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255,255,255,.4); transition: text-decoration-color .2s ease; }
.contact__list a:hover { text-decoration-color: #fff; }
.contact__list .ico {
  display: inline-grid; place-items: center; width: 38px; height: 38px; flex: none;
  background: rgba(255, 255, 255, .14); border-radius: 50%;
}
.contact__list .ico svg { width: 17px; height: 17px; }
.contact__socials { display: flex; gap: 12px; margin-top: 26px; }
.contact__socials a {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); color: #fff;
  transition: background .2s ease, color .2s ease, transform .3s var(--ease);
}
.contact__socials a:hover { background: #fff; color: var(--terracotta); transform: translateY(-3px); }
.contact__socials svg { width: 21px; height: 21px; }
