:root {
  --ink: #0a0a0a;
  --paper: #eee9df;
  --white: #f7f3ea;
  --accent: #d64d25;
  --line: rgba(247, 243, 234, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
}
a { color: inherit; }
img { display: block; width: 100%; }

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__image {
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
.hero__shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.40) 52%, rgba(0,0,0,.74) 100%),
    linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%);
}
.nav,
.hero__content,
.scroll { position: relative; z-index: 2; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 5vw;
}
.brand img {
  width: 118px;
  max-height: 100px;
  object-fit: contain;
  object-position: left top;
}
.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr);
  gap: 7vw;
  align-items: end;
  padding: 5vh 6vw 11vh;
}
.hero__title h1,
.event h2 {
  font-family: "Archivo Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.hero__title h1 {
  margin: 0;
  font-size: clamp(76px, 10.2vw, 170px);
  line-height: .74;
  font-weight: 700;
}
.hero__title p {
  margin: 26px 0 0;
  color: var(--accent);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: .08em;
}
.event {
  max-width: 430px;
  padding-bottom: 8px;
}
.eyebrow,
.footer__label,
.lately__heading p {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 600;
}
.event__datetime {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 28px;
}
.event__separator {
  color: var(--accent);
  font: 700 clamp(25px, 2.6vw, 38px)/1 "Archivo Narrow", sans-serif;
}
.event__date {
  display: block;
  color: var(--accent);
  font: 700 clamp(54px, 6vw, 88px)/.95 "Archivo Narrow", sans-serif;
  line-height: .9;
  margin: 0;
}
.event h2 {
  max-width: 10ch;
  font-size: clamp(36px, 4.8vw, 67px);
  line-height: .86;
  margin: 0 0 16px;
}
.event__time {
  color: var(--accent);
  font: 700 clamp(25px, 2.6vw, 38px)/1 "Archivo Narrow", sans-serif;
  margin: 0;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  gap: 40px;
  min-width: 220px;
  padding: 15px 16px;
  border: 1px solid var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
}
.button:hover { background: var(--accent); }
.scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .12em;
  text-decoration: none;
}

.lately {
  padding: 54px 5vw 68px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.lately__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}
.lately__heading p { margin: 0; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: #161616;
  min-height: 390px;
}
.photo-grid figure:nth-child(2) { transform: translateY(28px); }
.photo-grid img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: filter .25s ease, transform .45s ease;
}
.photo-grid figure:hover img {
  filter: grayscale(.15) contrast(1.03);
  transform: scale(1.015);
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 44px 6vw 56px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(0,0,0,.15);
  font-size: 13px;
}
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__label { margin: 0 0 12px; }

@media (max-width: 820px) {
  .nav { padding: 22px; }
  .brand img { width: 92px; }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: end;
    padding: 8vh 22px 84px;
  }
  .hero__title h1 { font-size: clamp(66px, 22vw, 105px); }
  .event {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
  }
  .event__date { font-size: 56px; }
  .event h2 { font-size: 44px; }
  .lately { padding: 42px 22px 60px; }
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .photo-grid figure,
  .photo-grid figure:nth-child(2) {
    min-height: 54vw;
    transform: none;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 38px 22px 46px;
  }
}
@media (max-width: 520px) {
  .footer { grid-template-columns: 1fr; }
}

/* Language switcher */
.language {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(247,243,234,.48);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
}
.language__option {
  appearance: none;
  border: 0;
  padding: 3px 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color .25s ease, opacity .25s ease;
}
.language__option:hover { color: var(--white); }
.language__option.is-active { color: var(--accent); }

.lang-fade,
.event {
  transition: opacity .18s ease, transform .18s ease;
}
.is-switching-language .lang-fade,
.is-switching-language .event {
  opacity: 0;
  transform: translateY(4px);
}

@media (prefers-reduced-motion: reduce) {
  .lang-fade,
  .event,
  .language__option { transition: none; }
}
