/* =========================================================
   RAW VISION COLLECTIVE — Home page
   ========================================================= */

@font-face {
  font-family: 'Menlo';
  src: url('../assets/fonts/Menlo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../assets/fonts/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../assets/fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../assets/fonts/Helvetica-Oblique.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../assets/fonts/Helvetica-BoldOblique.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --color-black: #1e1e1e;
  --color-black-2: #161616;
  --color-cream: #f3f1ea;
  --color-cream-dim: #cfcdc4;
  --color-muted-bg: #b3b2ad;
  --color-card-bg: #d9d9d9;
  --color-line: rgba(243, 241, 234, 0.22);
  --color-white: #ffffff;

  --font-display: 'Menlo', monospace;
  --font-mono: 'Menlo', monospace;
  --font-body: 'Menlo', monospace;

  --fluid-pad: clamp(20px, 4.5vw, 72px);

  /* Durasi morph header — lebih lambat biar smooth */
  --header-dur: 1.2s;
  --header-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /*
    Logo besar; tepi band hitam memotong di tengah teks "COLLECTIVE"
    (COLLECTIVE ≈ 2/3–1 dari tinggi logo → tengah ≈ 83% dari tinggi logo)
  */
  --header-pad: clamp(18px, 2.8vw, 32px);
  --logo-expanded: clamp(280px, 48vw, 560px);
  --logo-compact: clamp(40px, 5vw, 56px);
  --header-band: calc(var(--header-pad) + var(--logo-expanded) * 0.83);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-black);
  color: var(--color-cream);
  font-family: var(--font-body);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
body.is-loading {
  overflow: hidden;
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1e1e1e;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(28px, 5vh, 64px) var(--fluid-pad) clamp(40px, 6vh, 80px);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 4.5vh, 48px);
  padding-top: clamp(8px, 2vh, 24px);
}

.preloader__logo {
  display: block;
  width: min(96vw, 1320px);
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: left top;
}

.preloader__track {
  position: relative;
  width: 100%;
  height: 36px;
}

.preloader__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #ffffff;
}

.preloader__badge {
  position: absolute;
  top: 1px; /* tepat di bawah garis */
  left: 0;
  transform: translate(0, 0);
  background: #ffffff;
  color: #111111;
  font-family: Menlo, var(--font-mono), monospace;
  font-weight: 400;
  font-size: clamp(10px, 1.1vw, 24px);
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0.45em 0.55em;
  white-space: nowrap;
  will-change: left;
}

@media (max-width: 720px) {
  .preloader__logo {
    width: min(96vw, 640px);
    max-height: 52vh;
  }
  .preloader__inner {
    gap: 24px;
  }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-cream);
  color: var(--color-black);
  padding: 8px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Full-width fluid container */
.container-fluid {
  width: 100%;
  padding-left: var(--fluid-pad);
  padding-right: var(--fluid-pad);
}

.section-label-wrap {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(14px, 2vw, 20px);
}
.section-label {
  display: inline-block;
  background: var(--color-cream);
  color: var(--color-black);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.02em;
  padding: 0.3em 0.6em 0.35em;
}

/* ---------- Nav ---------- */
.main-nav {
  display: flex;
  gap: clamp(18px, 3vw, 100px);
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  transition: transform var(--header-dur) var(--header-ease);
}
.main-nav a {
  transition: opacity 0.2s ease;
  opacity: 0.9;
}
.main-nav a:hover,
.main-nav a:focus-visible { opacity: 1; }

/* ---------- Site header (morphs on scroll) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  overflow: visible;
  padding: var(--header-pad) 0 0;
  background: transparent;
  transition: padding var(--header-dur) var(--header-ease);
}

/* Solid black band — bottom edge cuts mid-"COLLECTIVE" */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-band);
  background: #1e1e1e;
  z-index: -1;
  transition:
    height var(--header-dur) var(--header-ease),
    opacity calc(var(--header-dur) * 0.85) ease;
}
.site-header.is-compact {
  padding: clamp(14px, 1.8vw, 20px) 0;
}
.site-header.is-compact::before {
  height: 0;
  opacity: 0;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 30px);
  /* Inner height = black band minus top padding — keeps menu inside band */
  height: calc(var(--header-band) - var(--header-pad));
  transition:
    align-items var(--header-dur) var(--header-ease),
    height var(--header-dur) var(--header-ease);
}
.site-header.is-compact .site-header__inner {
  align-items: center;
  height: auto;
}

.site-header__logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.site-header__logo img {
  display: block;
  width: auto;
  height: var(--logo-expanded);
  max-width: min(85vw, 1320px);
  object-fit: contain;
  object-position: top left;
  transform-origin: top left;
  transition:
    height var(--header-dur) var(--header-ease),
    max-width var(--header-dur) var(--header-ease);
}
.site-header.is-compact .site-header__logo img {
  height: var(--logo-compact);
  max-width: 200px;
}

/* Tagline + nav: locked inside the black band (no overlap onto hero) */
.site-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  flex-shrink: 0;
  align-self: stretch;
  height: 100%;
  max-height: 100%;
  gap: 12px;
  padding-bottom: clamp(10px, 1.6vh, 18px);
  overflow: hidden; /* prevent menu from spilling past band */
  transition:
    height var(--header-dur) var(--header-ease),
    padding var(--header-dur) ease,
    gap var(--header-dur) var(--header-ease);
}
.site-header.is-compact .site-header__right {
  align-self: center;
  height: auto;
  max-height: none;
  overflow: visible;
  justify-content: center;
  gap: 0;
  padding-bottom: 0;
}

.brand-tagline {
  color: var(--color-cream-dim);
  max-width: 350px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
  text-align: left;
  overflow: hidden;
  opacity: 1;
  max-height: 96px;
  transform: translateY(0);
  transition:
    opacity calc(var(--header-dur) * 0.8) ease,
    max-height var(--header-dur) var(--header-ease),
    transform var(--header-dur) var(--header-ease),
    margin var(--header-dur) ease;
}
.site-header.is-compact .brand-tagline {
  opacity: 0;
  max-height: 0;
  margin: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-top: 8px;
}
.site-header.is-compact .nav-toggle {
  margin-top: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 199;
  width: min(78vw, 300px);
  height: 100%;
  background: var(--color-black-2);
  border-left: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 96px 32px 32px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { opacity: 0.85; }
.mobile-nav a:hover { opacity: 1; }

/* =========================================================
   HERO BANNER — sits BELOW the black header band (expanded)
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  /* Push hero below solid black header; logo overlaps into this area */
  margin-top: var(--header-band);
  min-height: calc(100vh - var(--header-band));
  min-height: calc(100dvh - var(--header-band));
  overflow: hidden;
  background: #0a0a0a;
  color: var(--color-white);
  transition:
    margin-top var(--header-dur) var(--header-ease),
    min-height var(--header-dur) var(--header-ease);
}

/* When header is compact: hero goes full-bleed under transparent header */
.site-header.is-compact ~ main .hero {
  margin-top: 0;
  height: 100vh;
}

/* .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
} */
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: clamp(46px, calc(14vh - 50px), 110px) var(--fluid-pad) clamp(24px, 4vh, 48px);
  box-sizing: border-box;
}

/* YE — stadium — LIVE row (true horizontal center) */
.hero__stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  margin-top: 110px;
}

.hero__side {
  font-family: Menlo, var(--font-mono), monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 6.5vw, 93px);
  line-height: 100%;
  letter-spacing: 0.08em; /* Figma: 8% */
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}
.hero__side--left {
  justify-self: center;
  padding-right: 250px;
}
.hero__side--right {
  justify-self: center;
  padding-left: 250px;
}

.hero__core {
  position: relative;
  width: clamp(220px, 32vw, 420px);
  aspect-ratio: 1 / 1;
  margin: 0;
  pointer-events: none;
}

.hero__date, .hero__venue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
  font-family: Menlo;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 7%;
}
.hero__date { top: 30%; }
.hero__venue { bottom: 30%; }

/* Buy tickets + countdown — centered under stadium */
.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vh, 48px);
  margin-top: clamp(16px, 3.5vh, 36px);
  width: 100%;
}

.btn-buy {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(20, 20, 20, 0.35);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  text-transform: uppercase;
  padding: 0.95em 3.2em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: Menlo;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  width: 350px;
  height: 67px;
  opacity: 1;
  border-width: 1px;
  gap: 10px;
  padding-top: 16px;
  padding-right: 12px;
  padding-bottom: 16px;
  padding-left: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-buy:hover,
.btn-buy:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.countdown {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-family: var(--font-mono);
  margin-top: 40px;
}
.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 2.8em;
}
.countdown__num {
  color: var(--color-white);
  font-family: Menlo;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
}

.countdown__label {
  text-transform: uppercase;
  color: #ffffff;
  font-family: Menlo;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 5%;
}
.countdown__sep {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-10px);
  font-family: Menlo;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
}

/* ---------- About ---------- */
.about {
  position: relative;
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about__hit {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  cursor: pointer;
}

.about__visual {
  width: 100%;
  aspect-ratio: 1482 / 553;
  max-height: 560px;
  overflow: hidden;
}
.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.05);
}

/* ---------- Shared section button (About Us / Events) ---------- */
.section-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  box-sizing: border-box;
  width: 238px;
  height: 67px;
  padding: 16px 12px;
  background: #ffffff;
  color: #111111;
  font-family: 'Helvetica', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  overflow: hidden;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-btn__text {
  display: inline-block;
  white-space: nowrap;
}
.section-btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 33px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  flex-shrink: 0;
  transform: translate(-6px, 4px);
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-btn__arrow img {
  display: block;
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  object-fit: contain;
}

/* About: positioned on image; hover via section */
.about__btn {
  position: absolute;
  top: clamp(16px, 2.5vw, 28px);
  left: var(--fluid-pad);
  z-index: 2;
}
.about:hover .about__btn,
.about__hit:hover .about__btn,
.about__hit:focus-visible .about__btn,
.events__btn:hover,
.events__btn:focus-visible {
  width: 281px;
  gap: 10px;
}
.about:hover .section-btn__arrow,
.about__hit:hover .section-btn__arrow,
.about__hit:focus-visible .section-btn__arrow,
.events__btn:hover .section-btn__arrow,
.events__btn:focus-visible .section-btn__arrow {
  width: 33px;
  max-width: 33px;
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- Events ---------- */
.events {
  background: var(--color-muted-bg);
  color: var(--color-black);
  padding-top: 25px;
  padding-bottom: clamp(32px, 5vw, 56px);
}

.events__head {
  width: 100%;
  margin: 0 0 clamp(18px, 3vw, 30px);
  padding: 0;
  /* Garis hanya selebar container-fluid, nempel di atas button */
  border-top: 1px solid #d9d9d9;
}

.events__btn {
  width: 182px;
  background: #d9d9d9;
  margin-top: 0;
  vertical-align: top;
}
.events__btn:hover,
.events__btn:focus-visible {
  width: 228px;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.event-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 186px);
  grid-template-rows: auto minmax(100px, 186px);
  column-gap: clamp(10px, 1.5vw, 20px);
  row-gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
  background: #D9D9D9;
  padding: clamp(12px, 1.4vw, 13px);
  color: #111111;
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.event-card__title {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  font-family: 'Helvetica', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(18px, 1.7vw, 32px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-card__meta {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin: 0;
  font-family: Menlo, var(--font-mono), monospace;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(10px, 0.85vw, 12px);
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: inherit;
}

.event-card__thumb {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  max-width: 186px;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  background: #0e0e0e;
  flex-shrink: 0;
  justify-self: end;
  align-self: end;
}
.event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s ease;
}
.event-card__thumb--empty {
  width: 100%;
  max-width: 186px;
  aspect-ratio: 1 / 1;
  height: auto;
}

/* Card hover: bg hitam, text putih, gambar berwarna */
.event-card:hover,
.event-card:focus-within {
  background: #111111;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}
.event-card:hover .event-card__thumb img,
.event-card:focus-within .event-card__thumb img {
  filter: grayscale(0);
}

@media (max-width: 1100px) {
  .events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .event-card__title {
    font-size: clamp(20px, 3vw, 28px);
  }
}

@media (max-width: 600px) {
  .events__grid {
    grid-template-columns: 1fr;
  }
  .event-card {
    grid-template-columns: minmax(0, 1fr) 120px;
    grid-template-rows: auto 120px;
    column-gap: 12px;
    row-gap: 14px;
    padding: 14px;
  }
  .event-card__thumb,
  .event-card__thumb--empty {
    width: 120px;
    height: 120px;
    max-width: 120px;
    aspect-ratio: auto;
  }
  .event-card__title {
    font-size: 20px;
    line-height: 1.05;
  }
  .event-card__meta {
    font-size: 11px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  padding-top: clamp(20px, 3vw, 32px);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--color-cream-dim);
  padding-bottom: clamp(18px, 3vw, 28px);
  font-family: Menlo;
  font-weight: 400;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 100%;
  letter-spacing: 0.08em;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}
.footer__contact:hover,
.footer__social:hover { color: var(--color-cream); text-decoration: underline; }

.footer__wordmark {
  padding: clamp(24px, 4vw, 50px) var(--fluid-pad);
  line-height: 0;
}
.footer__wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Responsive ---------- */

@media (max-width: 1280px) {
  .section-btn {
    width: clamp(200px, 18vw, 238px);
    height: clamp(56px, 5vw, 67px);
    font-size: clamp(36px, 3.6vw, 48px);
    padding: clamp(12px, 1.1vw, 16px) clamp(10px, 0.9vw, 12px);
  }
  .about:hover .about__btn,
  .about__hit:hover .about__btn,
  .about__hit:focus-visible .about__btn {
    width: clamp(236px, 22vw, 281px);
  }
  .events__btn {
    width: clamp(156px, 14vw, 182px);
  }
  .events__btn:hover,
  .events__btn:focus-visible {
    width: clamp(196px, 18vw, 228px);
  }
  .section-btn__arrow {
    height: clamp(26px, 2.4vw, 33px);
  }
  .section-btn__arrow img {
    width: clamp(26px, 2.4vw, 33px);
    height: clamp(26px, 2.4vw, 33px);
  }
  .about:hover .section-btn__arrow,
  .about__hit:hover .section-btn__arrow,
  .about__hit:focus-visible .section-btn__arrow,
  .events__btn:hover .section-btn__arrow,
  .events__btn:focus-visible .section-btn__arrow {
    width: clamp(26px, 2.4vw, 33px);
    max-width: clamp(26px, 2.4vw, 33px);
  }
}

@media (max-width: 900px) {
  .hero__side {
    font-size: clamp(36px, 7vw, 72px);
  }
  .hero__side--left { padding-right: clamp(8px, 2vw, 20px); }
  .hero__side--right { padding-left: clamp(8px, 2vw, 20px); }
  .hero__core {
    width: clamp(180px, 36vw, 300px);
  }
}

@media (max-width: 720px) {
  :root {
    --header-pad: 16px;
    --logo-expanded: clamp(140px, 38vw, 200px);
  }

  .site-header__inner {
    align-items: flex-start;
  }
  .site-header__right {
    align-items: flex-end;
    text-align: right;
  }
  .site-header:not(.is-compact) .brand-tagline {
    display: none;
  }
  .site-header:not(.is-compact) .site-header__right {
    justify-content: flex-end;
  }
  .site-header.is-compact .site-header__logo img {
    height: 40px;
  }

  .hero__content {
    padding: clamp(56px, 10vh, 80px) var(--fluid-pad) 28px;
  }
  .hero__stage {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 10px;
  }
  .hero__side--left,
  .hero__side--right {
    justify-self: center;
    text-align: center;
    padding: 0;
  }
  .hero__side {
    font-size: clamp(32px, 10vw, 48px);
  }
  .hero__core {
    order: -1;
    width: min(260px, 70vw);
  }
  .hero__date { top: 28%; }
  .hero__venue { bottom: 28%; }
  .hero__bottom {
    margin-top: 18px;
    gap: 22px;
  }

  .about__visual {
    max-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .section-btn {
    width: 160px;
    height: 46px;
    padding: 8px;
    font-size: 26px;
  }
  .about:hover .about__btn,
  .about__hit:hover .about__btn,
  .about__hit:focus-visible .about__btn,
  .events__btn:hover,
  .events__btn:focus-visible {
    width: 190px;
    gap: 8px;
  }
  .events__btn {
    width: 132px;
  }
  .events__btn:hover,
  .events__btn:focus-visible {
    width: 168px;
  }
  .section-btn__arrow {
    height: 20px;
  }
  .section-btn__arrow img {
    width: 20px;
    height: 20px;
  }
  .about:hover .section-btn__arrow,
  .about__hit:hover .section-btn__arrow,
  .about__hit:focus-visible .section-btn__arrow,
  .events__btn:hover .section-btn__arrow,
  .events__btn:focus-visible .section-btn__arrow {
    width: 20px;
    max-width: 20px;
  }

  .events {
    padding-top: 20px;
    padding-bottom: 36px;
  }
  .events__head {
    margin-bottom: 16px;
  }

  .footer__row {
    font-size: 11px;
    letter-spacing: 0.04em;
    gap: 8px 16px;
  }
  .footer__wordmark {
    padding: 28px var(--fluid-pad) 32px;
  }
}

@media (max-width: 600px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header__inner {
    gap: 12px;
  }
  /* Toggle di kanan; logo + right group */
  .nav-toggle {
    order: 3;
    margin-left: auto;
  }
  .site-header__right {
    display: none;
  }
  .site-header.is-compact .site-header__right {
    display: none;
  }
}

@media (max-width: 420px) {
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero__side {
    font-size: clamp(24px, 11vw, 32px);
  }
  .btn-buy {
    width: 100%;
  }
  .countdown {
    gap: 6px;
    width: 100%;
    justify-content: space-between;
  }
  .countdown__item {
    min-width: 0;
    flex: 1;
  }
  .event-card {
    grid-template-columns: minmax(0, 1fr) 100px;
    grid-template-rows: auto 100px;
  }
  .event-card__thumb,
  .event-card__thumb--empty {
    width: 100px;
    height: 100px;
    max-width: 100px;
  }
  .event-card__title {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header::before,
  .site-header__logo img,
  .site-header__right,
  .brand-tagline,
  .main-nav,
  .hero {
    transition: none !important;
  }
}
