/* =============================================
   RALLE VS JARMO – Finsk Tiokamp
   Mörk, maskulin design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;700&display=swap');

:root {
  --bg:        #0A0A0A;
  --surface:   #141414;
  --surface2:  #1C1C1C;
  --border:    #2A2A2A;
  --red:       #C41E1E;
  --red-dark:  #8B1010;
  --gold:      #D4A017;
  --gold-light:#F0C040;
  --blue:      #1E7BC4;   /* finsk is-blå */
  --text:      #F0EDE8;
  --muted:     #888880;
  --white:     #FFFFFF;

  --font-hero: 'Bebas Neue', Impact, sans-serif;
  --font-head: 'Barlow Condensed', Arial Narrow, sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;

  --max-width: 1100px;
  --radius: 4px;
  --transition: all 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ---------- Typografi ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }
p  { margin-bottom: 1rem; color: var(--muted); }
p:last-child { margin-bottom: 0; }

/* ==============================
   NAVIGATION
   ============================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 2px solid var(--red);
  padding: 0 2rem;
}
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.navbar__logo span { color: var(--red); }
.navbar__logo em   { color: var(--gold); font-style: normal; }

.navbar__links { display: flex; gap: 2rem; align-items: center; }
.navbar__links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--white); }

/* ==============================
   KNAPPAR
   ============================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn--red     { background: var(--red);   color: #fff; border-color: var(--red); }
.btn--red:hover     { background: transparent; color: var(--red); }
.btn--gold    { background: var(--gold);  color: #000; border-color: var(--gold); }
.btn--gold:hover    { background: transparent; color: var(--gold); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { border-color: var(--red); color: var(--red); }
.btn--blue    { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--blue:hover    { background: transparent; color: var(--blue); }
.btn--lg { padding: 1.1rem 3rem; font-size: 1.15rem; }

/* ==============================
   LAYOUT
   ============================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section--dark  { background: var(--bg); }
.section--surf  { background: var(--surface); }
.section--surf2 { background: var(--surface2); }
.section--red   { background: var(--red-dark); }

.section__header { text-align: center; margin-bottom: 3rem; }
.section__header h2 { margin-bottom: 0.75rem; }
.section__header p  { max-width: 600px; margin: 0 auto; }

.divider     { width: 60px; height: 3px; background: var(--red); margin: 1rem auto; }
.divider--gold { background: var(--gold); }
.divider--blue { background: var(--blue); }

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(196,30,30,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(30,123,196,0.18) 0%, transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.hero__bg-text {
  position: absolute;
  font-family: var(--font-hero);
  font-size: clamp(14rem, 30vw, 28rem);
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.hero__tag {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.fighters {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.fighter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.fighter--ralle { align-items: flex-end; text-align: right; }
.fighter--jarmo { align-items: flex-start; text-align: left; }

.fighter__flag  { font-size: 3.5rem; line-height: 1; }

.fighter__name  {
  font-family: var(--font-hero);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}
.fighter--ralle .fighter__name { color: var(--red); text-shadow: 0 0 60px rgba(196,30,30,0.4); }
.fighter--jarmo .fighter__name { color: #5AADDB;    text-shadow: 0 0 60px rgba(30,123,196,0.4); }

.fighter__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.fighter__origin {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.fighter__stat-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.fighter--ralle .fighter__stat-row { align-items: flex-end; }

.vs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vs-text {
  font-family: var(--font-hero);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(212,160,23,0.5);
}

.vs-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero__event-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.event-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-pill__icon { font-size: 1.4rem; }
.event-pill__label { font-size: 0.78rem; color: var(--muted); display: block; }
.event-pill__value { font-size: 1.05rem; color: var(--white); display: block; }

.hero__cta {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   EVENTBILD
   ============================== */
.event-photo-wrap {
  position: relative;
  overflow: hidden;
  max-height: 620px;
  display: block;
}

.event-photo {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: contrast(1.08) saturate(0.85);
  transition: transform 6s ease;
}

.event-photo-wrap:hover .event-photo {
  transform: scale(1.03);
}

.event-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.15) 35%,
      rgba(10,10,10,0.15) 65%,
      rgba(10,10,10,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.event-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.event-photo-text {
  max-width: 600px;
}

.event-photo-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.event-photo-text h2 {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}

/* ==============================
   NEDRÄKNING
   ============================== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.countdown-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 110px;
}
.countdown-block__num {
  font-family: var(--font-hero);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--red);
}
.countdown-block__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ==============================
   RÖSTNING
   ============================== */
.vote-section {
  background: var(--surface);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.vote-arena {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.vote-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}
.vote-card--ralle::before { background: linear-gradient(135deg, rgba(196,30,30,0.12), transparent); }
.vote-card--jarmo::before { background: linear-gradient(135deg, rgba(30,123,196,0.12), transparent); }
.vote-card:hover::before  { opacity: 1; }

.vote-card__flag  { font-size: 3rem; margin-bottom: 0.75rem; }
.vote-card__name  {
  font-family: var(--font-hero);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.vote-card--ralle .vote-card__name { color: var(--red); }
.vote-card--jarmo .vote-card__name { color: #5AADDB; }

.vote-card__origin { font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }

.vote-count { font-family: var(--font-hero); font-size: 2.5rem; color: var(--white); margin-bottom: 0.3rem; }
.vote-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }

.vote-divider { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; }
.vote-divider__line { flex: 1; width: 1px; background: var(--border); }
.vote-divider__text { font-family: var(--font-hero); font-size: 2rem; color: var(--gold); }

/* Progress bar */
.vote-bar-wrap { margin-top: 1rem; }
.vote-bar-track {
  height: 10px;
  background: var(--surface2);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
}
.vote-bar-red  { height: 100%; background: var(--red);  transition: width 0.6s ease; }
.vote-bar-blue { height: 100%; background: #5AADDB; transition: width 0.6s ease; }
.vote-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
}
.vote-bar-labels span:first-child { color: var(--red); }
.vote-bar-labels span:last-child  { color: #5AADDB; }

.vote-success { display: none; text-align: center; padding: 1.5rem; background: rgba(212,160,23,0.1); border: 1px solid var(--gold); margin-top: 1.5rem; }
.vote-success p { color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin: 0; }

/* ==============================
   GRENAR
   ============================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.event-item {
  background: var(--surface);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.event-item:hover { background: var(--surface2); }
.event-item__num {
  font-family: var(--font-hero);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.event-item__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.event-item__fi {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ==============================
   BILJETTER
   ============================== */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.ticket-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.ticket-card:hover { border-color: var(--red); transform: translateY(-4px); }
.ticket-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--surface2), rgba(212,160,23,0.08));
}
.ticket-card--featured:hover { border-color: var(--gold-light); }

.ticket-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
}
.ticket-card__type {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.ticket-card__price {
  font-family: var(--font-hero);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ticket-card__currency { font-family: var(--font-head); font-size: 1rem; color: var(--muted); margin-bottom: 1.5rem; }
.ticket-card__features { margin-bottom: 2rem; }
.ticket-card__features li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.ticket-card__features li:last-child { border-bottom: none; }
.ticket-card__features li::before { content: '✓ '; color: var(--gold); }

.ticket-form { background: var(--surface2); border: 1px solid var(--border); padding: 2.5rem; margin-top: 3rem; }
.ticket-form h3 { margin-bottom: 1.5rem; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--red); }
.form-group select option { background: var(--surface2); }

/* ==============================
   DELTAGARPORTRÄTT
   ============================== */
.fighter-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--border);
}
.fighter-profile-card {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.fighter-profile-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.fighter-profile-card--ralle::before { background: var(--red); }
.fighter-profile-card--jarmo::before { background: var(--blue); }

.profile-flag   { font-size: 4rem; margin-bottom: 1rem; }
.profile-name   { font-family: var(--font-hero); font-size: 4rem; line-height: 0.95; margin-bottom: 0.5rem; }
.fighter-profile-card--ralle .profile-name { color: var(--red); }
.fighter-profile-card--jarmo .profile-name { color: #5AADDB; }
.profile-origin { font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }

.profile-bio { color: var(--muted); font-size: 0.97rem; margin-bottom: 2rem; }

.profile-stats { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.profile-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.profile-stat__label { font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.profile-stat__value { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--white); }

.profile-quote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
  margin-top: 1.5rem;
}
.fighter-profile-card--jarmo .profile-quote { border-left-color: var(--blue); }

/* ==============================
   KONTAKT
   ============================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-fighter {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2rem;
}
.contact-fighter__name { font-family: var(--font-hero); font-size: 2.5rem; margin-bottom: 0.3rem; }
.contact-fighter--ralle .contact-fighter__name { color: var(--red); }
.contact-fighter--jarmo .contact-fighter__name { color: #5AADDB; }
.contact-fighter__origin { font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.contact-fighter__detail { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--muted); }
.contact-fighter__detail:last-of-type { border: none; }
.contact-fighter__detail strong { color: var(--text); }

.contact-form { background: var(--surface2); border: 1px solid var(--border); padding: 2.5rem; }
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  min-height: 140px;
  resize: vertical;
  transition: var(--transition);
}
.contact-form textarea:focus { border-color: var(--red); }

/* ==============================
   PAGE HERO
   ============================== */
.page-hero {
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(196,30,30,0.15) 0%, transparent 60%),
    var(--surface);
  border-bottom: 2px solid var(--border);
}
.page-hero .overline {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), #1a0000);
  border-top: 2px solid var(--red);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { margin-bottom: 2rem; }

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.footer__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer__title span { color: var(--red); }
.footer__title em   { color: var(--gold); font-style: normal; }
.footer__sub  { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer__link