*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

/*
 * Brand font: Gala Biline (custom / commercial)
 * To use, add font files to assets/fonts/ and uncomment:
 *
 * @font-face {
 *   font-family: 'Gala Biline';
 *   src: url('assets/fonts/GalaBiline.woff2') format('woff2'),
 *        url('assets/fonts/GalaBiline.woff') format('woff');
 *   font-weight: normal;
 *   font-style: normal;
 *   font-display: swap;
 * }
 */

/* ─── Page shell ────────────────────────────────────────────────────── */

.page {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
}

/* ─── Background image + gradient ──────────────────────────────────── */

.bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Left-anchored so the right side crops first as the viewport narrows. */
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Two corner gradients from Figma: top-left and bottom-right darkening */
.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160.733deg, rgba(0, 0, 0, 0.5) 8.55%, rgba(102, 102, 102, 0) 40.48%),
    linear-gradient(212.747deg, rgba(0, 0, 0, 0.5) 22.98%, rgba(102, 102, 102, 0) 54.58%);
}

/* ─── Site header: logo + Instagram ────────────────────────────────── */

.site-header {
  position: absolute;
  /* Figma: top 46px, left 68px in 1440×900 frame */
  top: clamp(20px, 5.1vh, 46px);
  left: clamp(20px, 4.72vw, 68px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.92vw, 42px);
}

.logo {
  font-family: "gala-biline", sans-serif;
  font-size: clamp(44px, 6.83vw, 98.417px);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Figma: 32.131px */
  width: clamp(22px, 2.23vw, 32px);
  height: clamp(22px, 2.23vw, 32px);
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 0.7;
  outline: none;
}

.social-link img {
  width: 100%;
  height: 100%;
}

/* ─── Bottom tagline ────────────────────────────────────────────────── */

.bottom-tagline {
  position: absolute;
  bottom: clamp(24px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(18px, 2.22vw, 32px);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

/* ─── Event panel ───────────────────────────────────────────────────── */

.event-panel {
  position: absolute;
  /* Figma: top 86px, right ≈ 106px (= 1440 - 1219 - 115) */
  top: clamp(28px, 9.6vh, 86px);
  right: clamp(20px, 7.36vw, 106px);
  text-align: right;
}

.event-info {
  display: flex;
  flex-direction: column;
  /* Figma: 31px gap between meta block and tickets link */
  gap: clamp(16px, 2.15vw, 31px);
  align-items: flex-end;
}

.event-meta {
  display: flex;
  flex-direction: column;
}

.event-meta p {
  /* Figma: 30px Urbanist Medium */
  font-size: clamp(16px, 2.08vw, 30px);
  font-weight: 500;
  line-height: normal;
}

.event-tickets {
  /* Figma: 25px Urbanist Light, underlined */
  font-size: clamp(13px, 1.74vw, 25px);
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.event-tickets:hover,
.event-tickets:focus-visible {
  opacity: 0.7;
  outline: none;
}
