/* V17 · Garage Hex
 * Inspired by motorsport club badges: hexagonal shield, industrial grate
 * background, orange + electric blue + chrome on deep black, bold italic
 * display type with diagonal banner ribbons.
 */

:root {
  --gh-bg:        #0b0d10;
  --gh-bg-2:      #15191f;
  --gh-panel:     #1c2128;
  --gh-panel-2:   #242a33;
  --gh-line:      #2e3640;
  --gh-line-2:    #3d4855;
  --gh-text:      #f4f6f8;
  --gh-muted:     #8d97a3;
  --gh-orange:    #ff6b1a;
  --gh-orange-2:  #ff8b3d;
  --gh-blue:      #27a8d9;
  --gh-blue-2:    #6cd1f0;
  --gh-chrome:    #c8ced6;
  --gh-warning:   #ffb800;
}

.gh-body {
  margin: 0;
  background: var(--gh-bg);
  color: var(--gh-text);
  font-family: "Saira Condensed", "Barlow Condensed", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255, 107, 26, 0.07), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(39, 168, 217, 0.06), transparent 60%),
    linear-gradient(180deg, var(--gh-bg) 0%, #07090b 100%);
  min-height: 100dvh;
}
.gh-mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

/* ============ NAV ============ */
.gh-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px;
  background: rgba(11, 13, 16, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gh-line);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 8px 24px rgba(0,0,0,0.4);
}
.gh-nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 13px;
}
.gh-nav__logo {
  height: 36px; width: auto; display: block;
  background: rgba(255,255,255,0.92); padding: 3px 8px; border-radius: 4px;
}
.gh-hex-dot {
  width: 18px; height: 20px;
  background: var(--gh-orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 16px rgba(255,107,26,0.6);
}
.gh-nav__links {
  display: flex; gap: 22px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
}
.gh-nav__links a {
  color: var(--gh-muted); text-decoration: none;
  transition: color .2s;
}
.gh-nav__links a:hover { color: var(--gh-text); }

/* ============ BUTTONS ============ */
.gh-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: transform .15s ease, filter .15s ease;
}
.gh-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.gh-btn--primary {
  background: linear-gradient(180deg, var(--gh-orange-2), var(--gh-orange));
  color: #0a0a0b;
  box-shadow: 0 8px 22px rgba(255,107,26,0.4);
}
.gh-btn--ghost {
  background: transparent;
  color: var(--gh-text);
  border: 1px solid var(--gh-line-2);
}
.gh-btn--ghost:hover { border-color: var(--gh-blue); color: var(--gh-blue-2); }
.gh-btn--nav { padding: 8px 18px; font-size: 11px; }
.gh-btn--cta {
  padding: 16px 32px; font-size: 14px;
  background: linear-gradient(180deg, var(--gh-orange-2), var(--gh-orange));
  color: #0a0a0b;
  box-shadow: 0 10px 30px rgba(255,107,26,0.5);
}

/* ============ HERO ============ */
.gh-hero {
  position: relative; overflow: hidden;
  padding: 64px 28px 88px;
  border-bottom: 1px solid var(--gh-line);
}
.gh-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0, transparent 30px,
      rgba(255,255,255,0.025) 30px, rgba(255,255,255,0.025) 32px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0, transparent 30px,
      rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 32px
    );
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 80%, transparent 100%);
}
.gh-hero::after {
  content: "";
  position: absolute; top: -120px; right: -120px;
  width: 520px; height: 600px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,107,26,0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(39,168,217,0.12), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.gh-hero__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}
@media (max-width: 880px) {
  .gh-hero__inner { grid-template-columns: 1fr; }
}

.gh-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(39,168,217,0.08);
  border: 1px solid rgba(39,168,217,0.3);
  color: var(--gh-blue-2);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  margin-bottom: 24px;
}

.gh-hero__title {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--gh-text);
}
.gh-hero__title em {
  font-style: italic;
  color: var(--gh-orange);
  display: block;
  background: linear-gradient(180deg, var(--gh-orange-2), var(--gh-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255,107,26,0.25);
}
.gh-hero__subtitle {
  font-size: 19px; color: var(--gh-chrome);
  margin: 0 0 14px; letter-spacing: 0.04em;
  font-style: italic;
}
.gh-hero__lede {
  max-width: 540px; font-size: 15px; color: var(--gh-muted);
  margin: 0 0 28px; line-height: 1.65;
}
.gh-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============ BADGE ============ */
.gh-badge-card {
  position: relative;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, var(--gh-panel) 0%, var(--gh-panel-2) 100%);
  border: 1px solid var(--gh-line-2);
  box-shadow: 0 18px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}
.gh-badge-card::before {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px; height: 4px;
  background: linear-gradient(90deg, var(--gh-orange) 0%, var(--gh-orange) 50%, var(--gh-blue) 50%, var(--gh-blue) 100%);
}
.gh-badge {
  width: 116px; height: 132px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,107,26,0.4), transparent 60%),
    linear-gradient(180deg, #2a323d, #161a20);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid var(--gh-line);
  position: relative;
}
.gh-badge__inner {
  width: 88px; height: 100px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(180deg, #0d1014, #20262e);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.gh-badge__num {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 34px; line-height: 1;
  color: var(--gh-orange);
  text-shadow: 0 0 12px rgba(255,107,26,0.4);
}
.gh-badge__label {
  font-size: 9px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--gh-muted); text-transform: uppercase;
}

.gh-badge-card__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-top: 1px dashed var(--gh-line);
  font-size: 13px;
}
.gh-badge-card__k {
  font-size: 10px; color: var(--gh-muted);
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700;
}
.gh-badge-card__v { color: var(--gh-text); font-weight: 600; }
.gh-badge-card__v--accent { color: var(--gh-orange); }

.gh-fill {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--gh-line);
}
.gh-fill__bar {
  height: 6px; background: var(--gh-bg);
  border: 1px solid var(--gh-line);
  position: relative; overflow: hidden;
}
.gh-fill__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gh-orange), var(--gh-orange-2));
  width: var(--fill, 0%);
  box-shadow: 0 0 10px rgba(255,107,26,0.5);
}
.gh-fill__meta {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gh-muted);
  font-weight: 700;
}
.gh-fill__meta strong { color: var(--gh-orange); }

/* ============ STATS BAND ============ */
.gh-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--gh-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
}
@media (max-width: 720px) { .gh-band { grid-template-columns: repeat(2, 1fr); } }
.gh-band__cell {
  padding: 28px 24px;
  border-right: 1px solid var(--gh-line);
  position: relative;
}
.gh-band__cell:last-child { border-right: 0; }
.gh-band__cell::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 28px; height: 2px;
  background: var(--gh-orange);
}
.gh-band__k {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gh-muted);
  font-weight: 700; margin-bottom: 10px;
}
.gh-band__v {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(34px, 4.2vw, 56px); line-height: 1;
  color: var(--gh-text);
}
.gh-band__v small {
  font-size: 14px; color: var(--gh-muted);
  margin-left: 6px; font-weight: 500; font-style: normal;
}

/* ============ SECTION ============ */
.gh-section {
  padding: 72px 28px;
  max-width: 1200px; margin: 0 auto;
}
.gh-section-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gh-blue-2);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.26em;
  margin-bottom: 20px;
}
.gh-section-label::before {
  content: ""; width: 20px; height: 2px; background: var(--gh-blue);
}
.gh-section-title {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.gh-section-title span {
  display: block; color: var(--gh-orange);
}

/* ============ VENUE ============ */
.gh-venue-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) { .gh-venue-grid { grid-template-columns: 1fr; } }

.gh-venue-card {
  background: var(--gh-panel);
  border: 1px solid var(--gh-line-2);
  padding: 24px;
  position: relative;
}
.gh-venue-card::before {
  content: "";
  position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gh-orange), var(--gh-blue));
}
.gh-venue-card__name {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 30px; line-height: 1.1; text-transform: uppercase;
  margin-bottom: 4px;
}
.gh-venue-card__city {
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gh-muted);
}
.gh-venue-card__details {
  margin-top: 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px;
}
.gh-venue-detail__k {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gh-muted);
  font-weight: 700;
}
.gh-venue-detail__v {
  font-size: 14px; color: var(--gh-text);
  margin-top: 3px;
}

.gh-map {
  margin: 16px 0;
  height: 200px; border: 1px solid var(--gh-line);
  background:
    repeating-linear-gradient(45deg, var(--gh-panel-2) 0 10px, var(--gh-panel) 10px 20px);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gh-map__pin {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gh-orange);
  box-shadow: 0 0 0 6px rgba(255,107,26,0.2), 0 0 0 14px rgba(255,107,26,0.1);
}

/* ============ PROGRAMME ============ */
.gh-section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gh-line);
}
.gh-section-desc {
  font-size: 14px; color: var(--gh-muted);
  max-width: 320px; line-height: 1.6;
}

.gh-phase {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px dashed var(--gh-line);
  transition: background .2s;
}
.gh-phase:hover { background: rgba(255,107,26,0.04); }
.gh-phase__num {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 36px; line-height: 1;
  color: var(--gh-orange);
}
.gh-phase__name {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 22px; text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 4px;
}
.gh-phase__window {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gh-blue-2);
  font-weight: 600;
}
.gh-phase__note {
  font-size: 14px; color: var(--gh-muted);
  margin: 8px 0 0; line-height: 1.6;
}

/* ============ REGISTER CTA ============ */
.gh-register {
  position: relative; overflow: hidden;
  padding: 80px 28px;
  background:
    linear-gradient(135deg, #1a0e06 0%, #0b0d10 60%);
  border-top: 1px solid var(--gh-line);
  border-bottom: 1px solid var(--gh-line);
}
.gh-register::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0 26px,
      rgba(255,107,26,0.06) 26px 28px
    );
  pointer-events: none;
}
.gh-register::after {
  content: "";
  position: absolute; right: -200px; bottom: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,26,0.18), transparent 60%);
  pointer-events: none;
}
.gh-register__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; flex-wrap: wrap;
}
.gh-register__slots {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gh-orange-2);
  margin-bottom: 14px;
}
.gh-register__slots::before {
  content: ""; width: 20px; height: 2px; background: var(--gh-orange);
}
.gh-register__title {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--gh-text);
}
.gh-register__title em {
  font-style: italic; color: var(--gh-orange);
  display: block;
}
.gh-register__desc {
  max-width: 520px; color: var(--gh-muted);
  font-size: 15px; line-height: 1.7;
}

/* ============ FOOTER ============ */
.gh-footer {
  padding: 26px 28px;
  background: #07090b;
  border-top: 1px solid var(--gh-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gh-muted);
  font-weight: 700;
}
.gh-footer a { color: var(--gh-muted); text-decoration: none; }
.gh-footer a:hover { color: var(--gh-orange); }
