:root {
  color-scheme: dark;
  --ink: #071a21;
  --ink-2: #0b2730;
  --paper: #f5f2e8;
  --gold: #e9b94d;
  --green: #18a26d;
  --muted: #9fb0ae;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.header-note {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 570px;
  padding: 90px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .22em;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 8.6vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .82;
}

h1 em { color: var(--gold); display: inline-block; font-weight: 400; }

.intro {
  max-width: 610px;
  margin: 48px 0 0;
  color: #c5cfcd;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.identity-panel {
  aspect-ratio: 1 / 1.05;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(24,162,109,.18), rgba(255,255,255,.025));
  box-shadow: 18px 18px 0 rgba(233,185,77,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(2deg);
}

.identity-panel > img {
  width: 100%;
  height: auto;
  margin: auto;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.2));
}

.identity-tags {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.events {
  padding: 74px 0 96px;
  border-top: 1px solid var(--line);
}

.section-title {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.live-label {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-label i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(24,162,109,.12); }

.event-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.event-card {
  min-height: 230px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.event-card-live {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: stretch;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.event-card-live:hover, .event-card-live:focus-visible {
  border-color: var(--gold);
  background: rgba(255,255,255,.06);
  outline: none;
  transform: translateY(-4px);
}

.event-number {
  border-right: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem;
}

.event-main { padding: 42px; align-self: center; }
.event-main p { margin: 0 0 12px; color: var(--gold); font-size: .74rem; font-weight: 900; letter-spacing: .13em; }
.event-main h3 { margin: 0 0 15px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 5vw, 4.1rem); font-weight: 400; letter-spacing: -.045em; }
.event-main span { color: var(--muted); font-size: 1rem; line-height: 1.55; }

.event-action {
  min-width: 160px;
  padding: 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.event-action b { color: var(--gold); font-size: 2.2rem; font-weight: 400; }

.event-card-planned {
  grid-column: span 2;
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.planned-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.planned-top span { color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.planned-top b { padding: 6px 8px; border: 1px solid var(--line); color: var(--muted); font-size: .6rem; letter-spacing: .1em; }
.event-card-planned h3 { margin: auto 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; letter-spacing: -.04em; line-height: .95; }
.event-card-planned p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.5; }

.event-card-planned:nth-child(2) { background: linear-gradient(145deg, rgba(134,31,65,.2), rgba(255,255,255,.025)); }
.event-card-planned:nth-child(3) { background: linear-gradient(145deg, rgba(233,185,77,.12), rgba(255,255,255,.025)); }
.event-card-planned:nth-child(4) { background: linear-gradient(145deg, rgba(24,162,109,.13), rgba(255,255,255,.025)); }
}

footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 90px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
}

@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 28px, 1180px); }
  .header-note { display: none; }
  .hero { min-height: auto; padding: 70px 0 56px; grid-template-columns: 1fr; gap: 54px; }
  h1 { font-size: clamp(4.6rem, 25vw, 7rem); }
  .intro { margin-top: 38px; }
  .identity-panel { width: min(100%, 390px); justify-self: center; }
  .section-title { align-items: start; flex-direction: column; }
  .event-card-live { grid-column: span 6; grid-template-columns: 82px 1fr; }
  .event-number { font-size: 2.6rem; }
  .event-main { padding: 30px 24px; }
  .event-action { grid-column: 1 / -1; min-width: 0; padding: 18px 22px; border-top: 1px solid var(--line); border-left: 0; flex-direction: row; align-items: center; }
  .event-action b { font-size: 1.5rem; }
  .event-card-planned { grid-column: span 6; min-height: 220px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
  footer { padding: 25px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
