/* ============================================================
   AMUG Australia — static site
   Type: Archivo (display) + IBM Plex Sans (body)
   All darks/greys tinted navy; brand gold accents.
   ============================================================ */

:root {
  --navy-950: #061733;   /* deepest — hero/footer base (matches mineral image) */
  --navy-900: #0a1e3d;   /* primary dark sections */
  --navy-850: #0d2348;   /* events band */
  --panel:    #0e2650;   /* cards on navy */
  --panel-2:  #12305f;   /* card hover */
  --line:     rgba(201, 154, 69, .28);  /* gold hairline borders */
  --line-dim: rgba(173, 190, 220, .16); /* cool hairline */

  --gold:        #c99a45;
  --gold-bright: #e0b85f;
  --gold-soft:   #ecd18c;

  --cream:   #efebe4;
  --cream-2: #f6f3ec;

  --ink:      #0b1f3d;   /* headings on cream */
  --ink-body: #3c4a66;   /* body on cream (navy-tinted, never grey) */
  --white:    #ffffff;
  --muted:    #aeb9cf;   /* body on navy (blue-tinted) */
  --muted-dim:#8593ae;

  --wrap: 1180px;
  --r: 10px;
  --ease: cubic-bezier(.2, .7, .3, 1);
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; margin: 0; letter-spacing: -.01em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--gold); color: var(--navy-950); font-weight: 700;
  padding: 10px 16px; border-radius: 8px; transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px; }

.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 50px; padding: var(--pad-y) 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
  border-radius: 8px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:active { transform: translateY(0); }
.btn--sm { min-height: 42px; padding: 10px 18px; font-size: 13px; }

.btn--gold { background: var(--gold); color: var(--navy-950); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); }

.btn--ghost { background: transparent; border-color: var(--line); color: var(--gold-soft); }
.btn--ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(201, 154, 69, .08); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--gold);
  transition: gap .18s var(--ease), color .18s var(--ease);
}
.link-arrow:hover { color: var(--gold-bright); gap: .7em; }

.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 14px;
}
.rule { display: block; width: 68px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 20, 45, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dim);
}
.header__inner { display: flex; align-items: center; gap: 24px; min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark { width: 60px; height: 60px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: .01em; color: var(--white); text-transform: uppercase; }
.brand__sub { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }

.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav > a:not(.btn) {
  position: relative; font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: .03em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap; padding: 6px 0; transition: color .16s var(--ease);
}
.brand__name { white-space: nowrap; }
.nav > a:not(.btn):hover { color: var(--white); }
.nav > a.is-active { color: var(--white); }
.nav > a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line); border-radius: 8px;
  cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--gold-soft); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy-950); }
.hero__inner { position: relative; z-index: 3; padding-block: clamp(30px, 3.6vw, 50px); }
.hero__copy { max-width: 620px; }

.hero__media { position: absolute; inset: 0 0 0 auto; width: 56%; z-index: 1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__feather {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy-950) 4%, rgba(6, 23, 51, .72) 34%, rgba(6, 23, 51, .1) 72%, rgba(6, 23, 51, .35) 100%),
    linear-gradient(0deg, rgba(6, 23, 51, .55), rgba(6, 23, 51, 0) 30%, rgba(6, 23, 51, 0) 70%, rgba(6, 23, 51, .35));
}
.hero__arcs { position: absolute; z-index: 2; top: 0; right: 40%; height: 100%; width: 520px; color: var(--gold); opacity: .16; pointer-events: none; }

.hero__title { font-size: clamp(28px, 3.6vw, 47px); text-transform: uppercase; letter-spacing: -.015em; line-height: 1.05; }
.hero__title .ln { display: block; color: var(--white); }
.hero__title .ln--gold { color: var(--gold); }
.hero .rule { margin: 22px 0 20px; }
.hero__lede { max-width: 32em; color: var(--muted); font-size: 17px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ---------- Values / About ---------- */
.values { background: var(--cream); color: var(--ink-body); padding-block: clamp(48px, 6vw, 74px); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3.5vw, 48px); }
.value__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold); margin-bottom: 20px;
}
.value__icon svg { width: 30px; height: 30px; }
.value__title {
  font-size: 20px; color: var(--ink); text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 10px;
}
.value p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-body); }

/* ---------- Section heads ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-title { font-size: clamp(28px, 3.6vw, 40px); text-transform: uppercase; color: var(--white); position: relative; }
.events .section-title, .membership .section-title { color: var(--white); }
.resources .section-title { color: var(--ink); }
.section-title::after { content: ""; display: block; width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin-top: 16px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .section-title::after { margin-inline: auto; }
.section-lede { max-width: 60ch; margin: 4px auto 0; color: var(--ink-body); }

/* ---------- Events ---------- */
.events { background: var(--navy-850); padding-block: clamp(56px, 7vw, 88px); }
.events .section-head { align-items: center; }
.events__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; }

.event-card, .subscribe { border: 1px solid var(--line); border-radius: var(--r); background: rgba(12, 34, 68, .5); }
.event-card { display: grid; grid-template-columns: 150px 1fr; overflow: hidden; transition: border-color .2s var(--ease), transform .2s var(--ease); }
.event-card:hover { border-color: rgba(201, 154, 69, .55); transform: translateY(-3px); }
.event-card__media { overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { display: flex; gap: 24px; padding: 26px 28px; }
.event-card__date { margin: 0; display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 800; color: var(--gold); line-height: 1.05; font-size: 26px; }
.event-card__date span:first-child { font-size: 22px; }
.event-card__mon { text-transform: uppercase; letter-spacing: .04em; }
.event-card__date span:last-child { color: var(--white); }
.event-card__title { font-size: 21px; color: var(--white); margin-bottom: 12px; }
.event-card__loc { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: 14.5px; color: var(--gold-soft); }
.event-card__loc .ico { color: var(--gold); }
.event-card__desc { margin: 0 0 16px; font-size: 15px; color: var(--muted); }

.subscribe { padding: 30px 32px; }
.subscribe__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(201, 154, 69, .12); color: var(--gold); margin-bottom: 18px; }
.subscribe__icon svg { width: 26px; height: 26px; }
.subscribe__title { font-size: 22px; color: var(--white); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.subscribe__text { margin: 0 0 20px; font-size: 15px; color: var(--muted); }
.subscribe__form { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe__form input {
  flex: 1 1 200px; min-height: 50px; padding: 12px 16px;
  background: var(--navy-950); border: 1px solid var(--line-dim); border-radius: 8px;
  color: var(--white); font: inherit; font-size: 15px;
  transition: border-color .18s var(--ease);
}
.subscribe__form input::placeholder { color: var(--muted-dim); }
.subscribe__form input:focus-visible { outline: none; border-color: var(--gold); }
.subscribe__note { margin: 6px 2px 0; color: var(--gold-soft); font-weight: 500; }

/* ---------- Resources ---------- */
.resources { background: var(--cream-2); color: var(--ink-body); padding-block: clamp(56px, 7vw, 88px); }
.resources .eyebrow { text-align: center; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card {
  background: var(--white); border: 1px solid rgba(11, 31, 61, .08); border-radius: var(--r);
  padding: 34px 30px; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 1px 2px rgba(11, 31, 61, .04);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(11, 31, 61, .45); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: var(--navy-900); color: var(--gold); margin-bottom: 20px; }
.card__icon svg { width: 27px; height: 27px; }
.card__title { font-size: 19px; color: var(--ink); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px; }
.card p { margin: 0; font-size: 15px; color: var(--ink-body); }

/* ---------- Membership ---------- */
.membership { background: var(--navy-900); padding-block: clamp(56px, 7vw, 90px); position: relative; }
.membership__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.membership .section-lede { margin-left: 0; }
.membership .hero__actions { margin-top: 30px; }
.benefits { list-style: none; margin: 0; padding: 30px 32px; display: grid; gap: 16px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
.benefits li { display: flex; align-items: flex-start; gap: 14px; color: var(--white); font-size: 16px; }
.benefits .ico { color: var(--gold); width: 22px; height: 22px; margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--line-dim); padding-top: clamp(48px, 6vw, 72px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer__brand .brand__mark { width: 52px; height: 52px; }
.footer__brand .brand__name { font-size: 19px; }
.footer__tag { margin: 18px 0 0; font-size: 14.5px; color: var(--muted-dim); max-width: 34ch; }
.footer__h { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 15px; color: var(--muted); width: fit-content; transition: color .16s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__social { display: inline-flex; align-items: center; gap: 9px; }
.footer__social svg { width: 20px; height: 20px; color: var(--gold); }
.footer__mail { color: var(--muted-dim); font-size: 14px; }

.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid var(--line-dim); }
.footer__bar p { margin: 0; font-size: 13px; color: var(--muted-dim); }
.footer__legal a:hover { color: var(--gold-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .events__grid { grid-template-columns: 1fr; }
  .membership__inner { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .hero__media { width: 62%; opacity: .5; }
  .hero__feather { background: linear-gradient(90deg, var(--navy-950) 20%, rgba(6, 23, 51, .55) 60%, rgba(6, 23, 51, .3) 100%); }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; margin: 0;
    padding: 14px clamp(20px, 5vw, 40px) 22px;
    background: var(--navy-900); border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line-dim); }
  .nav > a.is-active::after { display: none; }
  .nav__cta { margin: 12px 0 0; }
  .section-head:not(.section-head--center) { flex-direction: column; align-items: flex-start; }
  .hero__media { opacity: .38; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand__sub { display: none; }
  .values__grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; text-align: left; }
  .event-card { grid-template-columns: 1fr; }
  .event-card__media { height: 150px; }
  .event-card__body { flex-direction: column; gap: 14px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* ---------- Generic content sections ---------- */
.section { padding-block: clamp(52px, 7vw, 88px); }
.section--navy  { background: var(--navy-900); }
.section--navy2 { background: var(--navy-850); }
.section--cream { background: var(--cream); color: var(--ink-body); }
.section--cream2{ background: var(--cream-2); color: var(--ink-body); }
.section--cream .section-title, .section--cream2 .section-title { color: var(--ink); }
.prose { max-width: 68ch; }
.prose p { margin: 0 0 18px; }
.lead { font-size: 20px; line-height: 1.6; }
.section--navy .lead, .section--navy2 .lead { color: #c3cee1; }

/* ---------- Branded "scheme" page hero ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(135% 130% at 74% 6%, #143259 0%, #0b2349 38%, #071a3a 70%, #050f28 100%);
  border-bottom: 1px solid var(--line-dim);
  padding-block: clamp(56px, 9vw, 104px);
}
.page-hero::before {   /* halftone dot field, upper-right */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(201,154,69,.55) 1.1px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(58% 62% at 90% -6%, #000 0%, transparent 62%);
  mask-image: radial-gradient(58% 62% at 90% -6%, #000 0%, transparent 62%);
  opacity: .55;
}
.page-hero__mineral {   /* false-colour mineral bleed on the right, gold diagonal edge */
  position: absolute; z-index: -1; inset: 0 0 0 auto; width: 40%;
  background: var(--gold);
  -webkit-clip-path: polygon(24% 0, 100% 0, 100% 100%, 7% 100%);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 7% 100%);
}
.page-hero__mineral::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/hero-mineral.webp") 62% center/cover no-repeat;
  -webkit-clip-path: polygon(25.6% 0, 100% 0, 100% 100%, 8.6% 100%);
  clip-path: polygon(25.6% 0, 100% 0, 100% 100%, 8.6% 100%);
}
.page-hero__mineral::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(103deg, #061835 2%, rgba(6,24,53,.68) 30%, rgba(6,24,53,.06) 62%, rgba(6,24,53,.22) 100%);
}
.page-hero__inner { position: relative; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero__title { font-size: clamp(30px, 4vw, 50px); text-transform: uppercase; color: var(--white); letter-spacing: -.015em; max-width: 15em; }
.page-hero__lede { max-width: 50ch; margin-top: 20px; color: var(--muted); font-size: 19px; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 26px; }
.page-hero__meta span { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-soft); font-size: 15px; }
.page-hero__meta .ico { color: var(--gold); }

/* ---------- Breadcrumb-ish intro ---------- */
.intro-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.intro-split .lead:last-child { margin-bottom: 0; }
.figure-frame { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--navy-950); }
.figure-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figure-frame figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 18px 12px; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-soft); background: linear-gradient(0deg, rgba(5,15,40,.85), transparent); }

/* ---------- History timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; top: 7px; left: 11%; right: 11%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent); opacity: .5; }
.tl-item { position: relative; padding-top: 0; }
.tl-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(201,154,69,.16); margin: 0 auto 20px; }
.tl-year { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--gold); text-align: center; }
.tl-place { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); text-align: center; margin: 4px 0 10px; }
.tl-note { font-size: 14.5px; color: var(--muted); text-align: center; margin: 0; }

/* ---------- Committee ---------- */
.committee { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 18px; background: var(--panel); border: 1px solid var(--line-dim); border-radius: var(--r); transition: border-color .2s var(--ease), transform .2s var(--ease); }
.member:hover { border-color: var(--line); transform: translateY(-3px); }
.avatar { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--gold-soft); background: radial-gradient(circle at 30% 25%, #16376a, #0a1f42); box-shadow: 0 0 0 2px rgba(201,154,69,.4), inset 0 0 0 1px rgba(255,255,255,.04); margin-bottom: 16px; }
.member__name { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--white); }
.member__role { font-size: 13.5px; color: var(--muted-dim); margin-top: 3px; }
.member__photo { position: relative; display: inline-flex; margin-bottom: 16px; border-radius: 50%; transition: transform .2s var(--ease); }
.member__photo .avatar { margin-bottom: 0; }
.member__photo:hover { transform: translateY(-2px); }
.member__photo:hover .avatar { box-shadow: 0 0 0 2px var(--gold-bright), inset 0 0 0 1px rgba(255, 255, 255, .05); }
.member__photo:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; border-radius: 50%; }
.avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.member__li { position: absolute; right: -2px; bottom: -2px; width: 23px; height: 23px; border-radius: 50%; background: var(--gold); color: #0a1f42; display: grid; place-items: center; box-shadow: 0 0 0 3px var(--panel); }
.member__li svg { width: 13px; height: 13px; }

/* ---------- Program / schedule ---------- */
.prog-days { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.prog-days--3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sched { border: 1px solid var(--line); border-radius: var(--r); background: rgba(12,34,68,.42); overflow: hidden; }
.sched__head { padding: 20px 24px; border-bottom: 1px solid var(--line-dim); }
.sched__day { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; color: var(--white); }
.sched__date { font-size: 14px; color: var(--gold-soft); margin-top: 2px; }
.sched__list { list-style: none; margin: 0; padding: 8px 0; }
.sched-theme { padding: 14px 24px 6px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.sched-row { display: grid; grid-template-columns: 62px 1fr; gap: 14px; padding: 9px 24px; }
.sched-row + .sched-row { border-top: 1px solid rgba(173,190,220,.07); }
.sched-time { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--gold-soft); }
.sched-title { margin: 0; font-size: 14.5px; color: #dbe3f0; line-height: 1.45; }
.sched-by { margin: 2px 0 0; font-size: 13px; color: var(--muted-dim); }
.sched-row--break .sched-title { color: var(--muted-dim); font-style: italic; }

/* ---------- Workshops / feature cards ---------- */
.wk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.wk { padding: 24px 26px; border: 1px solid var(--line-dim); border-radius: var(--r); background: var(--panel); }
.wk__tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.wk__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--white); margin: 8px 0 6px; }
.wk__by { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Facts / stats row ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fact { text-align: center; padding: 22px 14px; border: 1px solid var(--line-dim); border-radius: var(--r); }
.fact__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 34px); color: var(--gold); }
.fact__label { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 172px; gap: 14px; grid-auto-flow: dense; }
.gallery a { position: relative; overflow: hidden; border-radius: 8px; border: 1px solid var(--line-dim); display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(201,154,69,0); transition: box-shadow .2s var(--ease); }
.gallery a:hover::after { box-shadow: inset 0 0 0 2px rgba(201,154,69,.6); }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-big  { grid-column: span 2; grid-row: span 2; }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 14px 10px; font-size: 12px; letter-spacing: .03em; color: #eae2d0; background: linear-gradient(0deg, rgba(5,12,30,.82), transparent); opacity: 0; transition: opacity .2s var(--ease); }
.gallery a:hover figcaption { opacity: 1; }

/* ---------- Past events ---------- */
.past-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.past { display: grid; grid-template-columns: 150px 1fr; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: rgba(12,34,68,.42); transition: transform .2s var(--ease), border-color .2s var(--ease); }
.past:hover { transform: translateY(-3px); border-color: rgba(201,154,69,.5); }
.past__media { overflow: hidden; background: var(--navy-950); }
.past__media img { width: 100%; height: 100%; object-fit: cover; }
.past__body { padding: 22px 24px; }
.past__year { font-family: var(--font-display); font-weight: 800; color: var(--gold); font-size: 22px; }
.past__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white); margin: 2px 0 8px; text-transform: uppercase; letter-spacing: .02em; }
.past__note { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Definition / contact list ---------- */
.info-list { display: grid; gap: 22px; }
.info-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; }
.info-item .info-ico { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,154,69,.12); color: var(--gold); }
.info-item .info-ico svg { width: 24px; height: 24px; }
.info-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin: 4px 0 4px; }
.info-item p, .info-item a { margin: 0; font-size: 15px; color: var(--muted); }
.info-item a.link-arrow { color: var(--gold); }

/* ---------- Bullets ---------- */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ticks li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; }
.section--cream .ticks li, .section--cream2 .ticks li { color: var(--ink-body); }
.ticks .ico { color: var(--gold); width: 21px; height: 21px; margin-top: 2px; flex: none; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .section-title { color: var(--white); }
.cta-band .section-title::after { margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; margin-top: 28px; }

/* ---------- Event highlights (events page) ---------- */
.ev-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.ev-year { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4.6vw, 50px); color: var(--gold); line-height: 1; }
.ev-place { font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 2.6vw, 25px); text-transform: uppercase; letter-spacing: .02em; color: var(--white); }
.section--cream .ev-place, .section--cream2 .ev-place { color: var(--ink); }
.ev-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 14px 0 0; }
.ev-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--gold-soft); }
.section--cream .ev-meta span, .section--cream2 .ev-meta span { color: #7c6c40; }
.ev-meta .ico { color: var(--gold); }
.ev-body { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(26px, 4vw, 54px); margin-top: 30px; align-items: start; }
.ev-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ev-photos a { display: block; overflow: hidden; border-radius: 8px; border: 1px solid var(--line-dim); }
.ev-photos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; transition: transform .5s var(--ease); }
.ev-photos a:hover img { transform: scale(1.06); }
.ev-photos .span2 { grid-column: span 2; }
.ev-photos .span2 img { aspect-ratio: 16 / 8; }
.quote { border-left: 3px solid var(--gold); padding-left: 18px; margin: 22px 0; font-size: 16px; font-style: italic; color: #cdd6e6; }
.section--cream .quote, .section--cream2 .quote { color: var(--ink); }
.quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-dim); }
.sponsors { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.sponsors span { font-size: 12.5px; padding: 6px 13px; border: 1px solid var(--line-dim); border-radius: 999px; color: var(--muted); }
.section--cream .sponsors span, .section--cream2 .sponsors span { color: var(--ink-body); border-color: rgba(11, 31, 61, .14); }

/* program disclosure */
details.prog { border: 1px solid var(--line); border-radius: var(--r); margin-top: 26px; background: rgba(12, 34, 68, .35); }
.section--cream details.prog, .section--cream2 details.prog { background: #fff; border-color: rgba(11, 31, 61, .1); }
details.prog > summary { cursor: pointer; list-style: none; padding: 16px 22px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 13.5px; color: var(--gold); display: flex; align-items: center; gap: 10px; }
details.prog > summary::-webkit-details-marker { display: none; }
details.prog > summary::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: auto; transition: transform .2s var(--ease); }
details.prog[open] > summary::after { transform: rotate(-135deg); }
details.prog[open] > summary { border-bottom: 1px solid var(--line-dim); }
.section--cream details.prog[open] > summary { border-bottom-color: rgba(11, 31, 61, .1); }
.prog-inner { padding: 12px; }
.prog-inner .prog-days { margin: 0; }
.prog-note { font-size: 13.5px; color: var(--muted-dim); margin: 4px 2px 0; }

/* save the date 2028 */
.savedate { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r); background: radial-gradient(125% 150% at 80% 0%, #163256 0%, #0b2247 46%, #071a3a 100%); padding: clamp(36px, 5.5vw, 64px) clamp(24px, 4vw, 48px); text-align: center; }
.savedate::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(201, 154, 69, .5) 1px, transparent 1.4px); background-size: 15px 15px; -webkit-mask-image: radial-gradient(70% 80% at 50% -12%, #000, transparent 60%); mask-image: radial-gradient(70% 80% at 50% -12%, #000, transparent 60%); opacity: .4; }
.savedate > * { position: relative; }
.savedate__tag { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--gold-soft); font-size: 13px; margin-bottom: 12px; }
.savedate__year { font-family: var(--font-display); font-weight: 800; font-size: clamp(52px, 10vw, 116px); line-height: .92; color: var(--white); letter-spacing: -.01em; }
.savedate__year span { color: var(--gold); }
.savedate__sub { max-width: 46ch; margin: 18px auto 0; color: var(--muted); font-size: 17px; }
.savedate .hero__actions { justify-content: center; margin-top: 30px; }

/* ---------- Responsive: multi-page ---------- */
@media (max-width: 1000px) {
  .intro-split { grid-template-columns: 1fr; }
  .ev-body { grid-template-columns: 1fr; }
  .committee { grid-template-columns: repeat(2, 1fr); }
  .prog-days { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .past-grid { grid-template-columns: 1fr; }
  .page-hero__mineral { width: 46%; opacity: .8; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent); }
  .tl-item { display: grid; grid-template-columns: 16px 1fr; column-gap: 18px; row-gap: 4px; padding: 0 0 32px; text-align: left; }
  .tl-dot { grid-column: 1; grid-row: 1; margin: 5px 0 0; }
  .tl-year { grid-column: 2; grid-row: 1; text-align: left; }
  .tl-place { grid-column: 2; grid-row: 2; text-align: left; margin: 0 0 4px; }
  .tl-note { grid-column: 2; grid-row: 3; text-align: left; }
  .wk-grid { grid-template-columns: 1fr; }
  .page-hero__mineral { width: 60%; opacity: .5; }
  .page-hero__mineral::after { background: linear-gradient(103deg, #061835 24%, rgba(6,24,53,.5) 64%, rgba(6,24,53,.3) 100%); }
}
@media (max-width: 560px) {
  .committee { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .gallery { grid-auto-rows: 140px; }
  .past { grid-template-columns: 1fr; }
  .past__media { height: 150px; }
  .member { padding: 20px 12px; }
}
