:root {
  --bg: #000;
  --bg-light: #fff;
  --text-dark: #121212;
  --text: #f4f4f4;
  --muted: #b3b3b3;
  --grey: #e1e1e1;
  --accent: #800000;
}

* {
  box-sizing: border-box;
}

.staatliches-regular {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jaro-alternate {
  font-family: "Jaro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.bricolage-grotesque-para {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Staatliches", sans-serif;
  line-height: 1.6;
}

.header-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.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;
}

/* Header */
.site-header {
  background: var(--bg);
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 70px;
  padding: 30px 60px 30px 30px;
}

.brand-logo { height: 132px; }

.headline {
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.main-nav { 
  display: flex; 
  justify-content: space-between; 
  gap: 24px; 
  border-top: .5px solid var(--muted); 
  padding-top: 8px;
}

.main-nav a {
  color: var(--text);
  font-family: "Jaro", sans-serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--accent); }

/* Global checker strip (top/bottom) */
.checker {
  height: 16px;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, #fff 0 16px, #000 16px 32px);
}
.checker-2 {
  height: 16px;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, #000 0 16px, #fff 16px 32px);
}

.announcement {
  display: block;
  width: 100%;
  background-color: var(--grey);
  padding: 10px 0;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 20px;
}

.announcement-text {
  flex: 1;
  text-align: left;
  color: var(--text-dark);
  font-size: 20px;
}

.announcement-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.announcement-counter {
  color: var(--text-dark);
  min-width: 40px;
}

.announcement-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: opacity 0.2s;
}

.announcement-nav:hover {
  opacity: 0.7;
}

.announcement-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.announcement-nav svg {
  width: 20px;
  height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  color: var(--accent);
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Hero */
.hero-media {
  display: block;
  width: 100%;
  height: clamp(220px, 60vw, 600px);
  object-fit: cover;
}

/* Countdown */
.countdown { 
  padding: 60px 0;  
  text-align: center; 
  background-color: var(--grey);
}

.timer {
  display: inline-grid;
  grid-template-columns: 120px auto 120px auto 120px auto 120px;
  gap: 40px;
  align-items: start;
}

.time .value {
  font-size: clamp(24px, 15vw, 112px);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}

.time .label {
  display: block;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
  margin-top: 20px;
}

.timer-separator {
  font-size: clamp(24px, 15vw, 112px);
  color: var(--accent);
  font-weight: 800;
  align-self: center;
  line-height: 0.1;
  padding-bottom: 0.6em;
}

/* About */
.about-jf { 
  display: grid;
  grid-template-rows: 1fr;
  padding: 50px;
  background: var(--bg); 
  gap: 20px; 
}

.badge-jf {
  width: fit-content;
  padding: 8px 20px 8px 38px;
  clip-path: ellipse(40% 42% at 40% 50%);
  min-width: 240px;
  background: var(--grey);
  font-family: Jaro;
  color: var(--accent);
  font-size: 24px;
}

.about-text { 
  font-size: 30px;
  font-family: Bricolage Grotesque;
  line-height: 130%;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--grey);
}

/* Who */
.who { 
  display: grid;
  grid-template-rows: 1fr;
  padding: 50px; 
  background: var(--bg-light); 
  gap: 20px; 
}

.badge-biz {
  width: fit-content;
  padding: 8px 10px 8px 23px;
  clip-path: ellipse(28% 42% at 28% 50%);
  min-width: 240px;
  background: var(--bg);
  font-family: Jaro;
  color: var(--white);
  font-size: 24px;
}

.who-text { 
  font-size: 30px;
  font-family: Bricolage Grotesque;
  line-height: 130%;
  color: var(--text-dark);
}

.who-highlight {
  color: var(--accent);
}


/* footer */
.contact {
  display: block;
  margin: 0 auto 40px;
  width: fit-content;
  padding: 20px;
  border: 2px solid var(--bg);
  color: var(--bg);
  font-size: 26px;
  text-decoration: none;
}
.contact:hover {
  border-color: var(--accent);
  color: var(--accent)
}
.site-footer {
  background: var(--bg-light); 
  text-align: center;
}
.copyright { 
  color: var(--text-dark); 
}

.footer-logos {
  display: flex;
  padding: 0 40px;
  width: 100%;
  justify-content: space-between;
}

.footer-logo-left {
  text-align: left;
}

.footer-logo-right {
  text-align: right;
}
/* Responsive */
@media (max-width: 900px) {
  .header-inner { flex-direction: column; align-items: flex-center; gap: 16px; padding: 30px; }
  .main-nav { width: 100%; }
  .header-right { width: 100%; }
  .headline {text-align: center;}
}
@media (max-width: 600px) {
  /* font size */
  .headline {font-size: 18px;}
  .main-nav a {font-size: 18px;}
  .about-text, .who-text {font-size: 20px;}
  .contact {padding: 16px; font-size: 18px;}

  /* layout */
  .timer {grid-template-columns: 60px auto 60px auto 60px auto 60px;}
  .timer-separator {padding-bottom: 0.8em;}
  .brand-logo, .footer-logo {height: 80px;}
  .announcement {display: none;}
  .about-jf, .who {padding: 20px;}
  .about-grid { grid-template-columns: 1fr; }
  .timer {gap: 12px; }
  .gallery {grid-template-columns: 1fr;}
  .footer-logos {padding: 0 10px;}
}


