/* HAZET World Official - hazet.world
   Single stylesheet, shared by every locale. Class prefix: hz-
   Palette: HAZET blue, HAZET yellow, ink, steel, paper. No gradients. */

:root {
  --hz-ink: #101315;
  --hz-ink-2: #1c2124;
  --hz-steel: #6d747a;
  --hz-line: #dcdad6;
  --hz-paper: #f4f3f0;
  --hz-paper-2: #eae8e4;
  --hz-white: #ffffff;
  --hz-blue: #00559b;
  --hz-blue-d: #003f74;
  --hz-yellow: #ffcc00;
  --hz-max: 1180px;
  --hz-gut: 20px;
  --hz-sans: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --hz-mono: "Andale Mono", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--hz-white);
  color: var(--hz-ink);
  font-family: var(--hz-sans);
  font-size: 16px;
  line-height: 1.5;
  font-synthesis-weight: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

section[id], [id] { scroll-margin-top: 84px; }
.hz-wrap { width: 100%; max-width: var(--hz-max); margin: 0 auto; padding: 0 var(--hz-gut); }
.hz-skip { position: absolute; left: -9999px; top: 0; background: var(--hz-yellow); color: var(--hz-ink); padding: 12px 16px; z-index: 99; }
.hz-skip:focus { left: 8px; top: 8px; }

:focus-visible { outline: 3px solid var(--hz-blue); outline-offset: 2px; }

/* ---------- type ---------- */
.hz-h1 {
  margin: 0;
  font-size: clamp(38px, 8.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.hz-h1 .hz-year { color: var(--hz-yellow); }
.hz-h2 {
  margin: 0 0 16px;
  font-size: clamp(27px, 4.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 22ch;
}
.hz-h2--wide { max-width: 30ch; }
.hz-h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }
.hz-lead { margin: 0; font-size: 17px; color: var(--hz-steel); max-width: 62ch; }
.hz-eyebrow {
  display: block;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hz-blue);
}
.hz-eyebrow--light { color: var(--hz-yellow); }
.hz-sku { font-family: var(--hz-mono); font-size: 12px; color: var(--hz-steel); }

/* ---------- buttons ---------- */
.hz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid var(--hz-blue);
  border-radius: 3px;
  background: var(--hz-blue);
  color: var(--hz-white);
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.hz-btn:hover { background: var(--hz-blue-d); border-color: var(--hz-blue-d); }
.hz-btn--ghost { background: transparent; color: var(--hz-ink); border-color: var(--hz-ink); }
.hz-btn--ghost:hover { background: var(--hz-ink); border-color: var(--hz-ink); color: var(--hz-white); }
.hz-btn--yellow { background: var(--hz-yellow); border-color: var(--hz-yellow); color: var(--hz-ink); }
.hz-btn--yellow:hover { background: #e8bb00; border-color: #e8bb00; }
.hz-btn--onink { background: transparent; border-color: rgba(255,255,255,.6); color: var(--hz-white); }
.hz-btn--onink:hover { background: var(--hz-white); border-color: var(--hz-white); color: var(--hz-ink); }
.hz-btn--block { width: 100%; }
.hz-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- topbar ---------- */
.hz-top {
  background: var(--hz-ink);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .01em;
}
.hz-top__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 36px; }
.hz-top__txt { margin: 0; padding: 8px 0; }

/* language disclosure */

/* ---------- header ---------- */
.hz-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--hz-white);
  border-bottom: 1px solid var(--hz-line);
}
.hz-head__in { display: flex; align-items: center; gap: 16px; min-height: 68px; }
.hz-logo { display: flex; align-items: center; margin-right: auto; }
.hz-logo img { height: 30px; width: auto; }
.hz-nav { display: none; gap: 26px; }
.hz-nav a { font-size: 15px; font-weight: 600; text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.hz-nav a:hover { border-bottom-color: var(--hz-blue); }
.hz-head .hz-btn { min-height: 44px; padding: 10px 20px; }

.hz-burger { margin-left: 4px; }
.hz-burger > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  border: 1px solid var(--hz-line);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}
.hz-burger > summary::-webkit-details-marker { display: none; }
.hz-burger__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--hz-white);
  border-bottom: 1px solid var(--hz-line);
  padding: 8px var(--hz-gut) 20px;
}
.hz-burger__panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--hz-line);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- hero ---------- */
.hz-hero { background: var(--hz-ink); color: var(--hz-white); }
.hz-hero__grid { display: grid; grid-template-columns: 1fr; }
.hz-hero__pic { position: relative; min-height: 260px; }
.hz-hero__pic img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.hz-hero__txt { padding: 36px var(--hz-gut) 40px; }
.hz-hero__kicker {
  display: inline-block;
  margin: 0 0 20px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--hz-yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hz-hero__lead { margin: 22px 0 28px; font-size: 17px; color: rgba(255,255,255,.78); max-width: 46ch; }

.hz-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
}
.hz-facts__i { padding: 20px var(--hz-gut); border-bottom: 1px solid rgba(255,255,255,.18); }
.hz-facts__i + .hz-facts__i { border-left: 1px solid rgba(255,255,255,.18); }
.hz-facts__n { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.hz-facts__t { display: block; margin-top: 4px; font-size: 13px; color: rgba(255,255,255,.66); }

/* ---------- yellow band ---------- */
.hz-band { background: var(--hz-yellow); color: var(--hz-ink); }
.hz-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

/* ---------- sections ---------- */
.hz-sec { padding: 64px 0; }
.hz-sec--paper { background: var(--hz-paper); }
.hz-sec--ink { background: var(--hz-ink); color: var(--hz-white); }
.hz-sec--ink .hz-lead { color: rgba(255,255,255,.72); }
.hz-sec__head { margin-bottom: 32px; }
.hz-sec__head--split { display: grid; gap: 16px; }

/* range tiles */
.hz-tiles { display: grid; grid-template-columns: 1fr; gap: 4px; }
.hz-tile { display: flex; flex-direction: column; background: var(--hz-white); text-decoration: none; }
.hz-tile__pic { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--hz-white); }
.hz-tile__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.hz-tile:hover .hz-tile__pic img { transform: scale(1.03); }
.hz-tile__body { display: block; margin-top: auto; padding: 18px 20px 22px; }
.hz-tile__name { display: block; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.hz-tile:hover .hz-tile__name { color: var(--hz-blue); }
.hz-tile__desc { display: block; margin-top: 6px; font-size: 14px; color: var(--hz-steel); }

/* products */
.hz-prods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.hz-prod { display: flex; flex-direction: column; background: var(--hz-white); padding: 14px 14px 18px; }
.hz-prod__pic { background: var(--hz-white); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; padding: 10px; }
.hz-prod__pic img { width: 100%; height: 100%; object-fit: contain; }
.hz-prod__name { margin: 12px 0 6px; font-size: 15px; font-weight: 700; line-height: 1.3; }
.hz-prod__desc { margin: 0 0 12px; font-size: 13.5px; color: var(--hz-steel); }
.hz-prod__specs { margin: 0 0 18px; padding: 0; list-style: none; font-size: 12.5px; }
.hz-prod__specs li { padding: 6px 0; border-top: 1px solid var(--hz-line); }
.hz-prod__cta { margin-top: auto; }
.hz-prod__cta .hz-btn { min-height: 46px; font-size: 14px; }
.hz-note { margin: 20px 0 0; font-size: 13px; color: var(--hz-steel); }

/* staples list */
.hz-staples { margin-top: 48px; border-top: 2px solid var(--hz-ink); padding-top: 20px; }
.hz-staples ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.hz-staples li { padding: 12px 0; border-bottom: 1px solid var(--hz-line); font-size: 14.5px; }
.hz-staples a { text-decoration: none; font-weight: 600; }
.hz-staples a:hover { color: var(--hz-blue); }

/* split feature */
.hz-split { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.hz-split__media { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.hz-split__media .hz-split__main { grid-column: span 2; background: var(--hz-white); }
.hz-split__media img { width: 100%; background: var(--hz-white); }
.hz-split p { font-size: 16px; }
.hz-split p + p { margin-top: 14px; }

.hz-spec { width: 100%; border-collapse: collapse; margin: 24px 0 28px; font-size: 14px; }
.hz-spec caption { text-align: left; font-weight: 700; font-size: 13px; padding-bottom: 10px; }
.hz-spec th, .hz-spec td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--hz-line); vertical-align: top; }
.hz-spec th { font-weight: 600; color: var(--hz-steel); width: 48%; }
.hz-spec td { font-family: var(--hz-mono); font-size: 13px; }

/* torque rows */
.hz-torque { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hz-torque__pic { background: var(--hz-white); padding: 24px; }
.hz-rows { margin: 28px 0 28px; }
.hz-row { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); }
.hz-row__n { font-family: var(--hz-mono); font-size: 13px; color: var(--hz-yellow); padding-top: 3px; }
.hz-row h3 { margin: 0 0 4px; font-size: 17px; font-weight: 700; }
.hz-row p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,.72); }

/* quality columns */
.hz-qpic { margin: 0 0 40px; }
.hz-qpic img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.hz-cols { display: grid; grid-template-columns: 1fr; gap: 28px; }
.hz-col h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.hz-col p { margin: 0; font-size: 15px; color: var(--hz-steel); }
.hz-col { border-top: 2px solid var(--hz-ink); padding-top: 14px; }

/* timeline */
.hz-time { display: grid; grid-template-columns: 1fr; gap: 0; }
.hz-ev { display: grid; grid-template-columns: 82px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--hz-line); }
.hz-ev__y { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.hz-ev h3 { margin: 0 0 4px; font-size: 17px; font-weight: 700; }
.hz-ev p { margin: 0; font-size: 14.5px; color: var(--hz-steel); }
.hz-hist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 32px; }
.hz-hist img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--hz-paper-2); }
.hz-hist figure { margin: 0; }
.hz-hist figcaption { padding: 8px 0; font-size: 12px; color: var(--hz-steel); }

/* racing */
.hz-race { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.hz-race__pic img { width: 100%; }

/* faq */
.hz-faq { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 2px solid var(--hz-ink); }
.hz-q { border-bottom: 1px solid var(--hz-line); }
.hz-q > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
}
.hz-q > summary::-webkit-details-marker { display: none; }
.hz-q > summary::after { content: "+"; color: var(--hz-blue); font-size: 20px; line-height: 1; }
.hz-q[open] > summary::after { content: "\2212"; }
.hz-q p { margin: 0 0 20px; font-size: 15px; color: var(--hz-steel); max-width: 68ch; }

/* closing cta */
.hz-cta { background: var(--hz-blue); color: var(--hz-white); padding: 56px 0; }
.hz-cta .hz-h2 { max-width: 26ch; }
.hz-cta p { margin: 0 0 26px; font-size: 16.5px; color: rgba(255,255,255,.82); max-width: 52ch; }
.hz-cta .hz-btn--yellow { border-color: var(--hz-yellow); }

/* footer */
.hz-foot { background: var(--hz-ink); color: rgba(255,255,255,.7); padding: 48px 0 28px; font-size: 14px; }
.hz-foot__top { display: grid; grid-template-columns: 1fr; gap: 32px; }
.hz-foot img { height: 28px; width: auto; }
.hz-foot__tag { margin: 16px 0 0; max-width: 34ch; }
.hz-foot h3 { margin: 0 0 14px; font-size: 13px; font-weight: 700; color: var(--hz-white); letter-spacing: .04em; text-transform: uppercase; }
.hz-foot ul { margin: 0; padding: 0; list-style: none; }
.hz-foot li { padding: 5px 0; }
.hz-foot a { text-decoration: none; }
.hz-foot a:hover { color: var(--hz-yellow); }
.hz-foot__langs { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.hz-foot__langs ul { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hz-foot__legal { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: 12.5px; color: rgba(255,255,255,.5); }
.hz-foot__legal p { margin: 0 0 4px; }

/* ---------- responsive ---------- */
@media (min-width: 700px) {
  :root { --hz-gut: 32px; }
  .hz-tiles { grid-template-columns: repeat(2, 1fr); }
  .hz-prods { grid-template-columns: repeat(3, 1fr); }
  .hz-cols { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .hz-facts { grid-template-columns: repeat(4, 1fr); }
  .hz-staples ul { grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
  .hz-tiles .hz-tile:nth-child(1) { grid-column: span 2; }
  .hz-tiles .hz-tile:nth-child(1) .hz-tile__pic { aspect-ratio: 32 / 10; }
  .hz-sec__head--split { grid-template-columns: 1.1fr 1fr; align-items: end; gap: 32px; }
  .hz-ev { grid-template-columns: 120px 1fr; }
  .hz-ev__y { font-size: 22px; }
}

@media (min-width: 1000px) {
  .hz-nav { display: flex; }
  .hz-burger { display: none; }
  .hz-sec { padding: 96px 0; }
  .hz-hero__grid { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .hz-hero__txt { padding: 78px 56px 78px var(--hz-gut); max-width: 700px; margin-left: auto; }
  .hz-hero__pic img { min-height: 100%; }
  .hz-facts__i { padding: 22px 32px; }
  .hz-tiles { grid-template-columns: repeat(4, 1fr); }
  .hz-prods { grid-template-columns: repeat(4, 1fr); }
  .hz-split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .hz-torque { grid-template-columns: 1fr 1.1fr; gap: 64px; }
  .hz-race { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .hz-faq { grid-template-columns: 1fr 1fr; gap: 0 56px; }
  .hz-foot__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}


/* Long-word safety for compound languages: de, nl, sv, pl */
body,
.hz-h1, .hz-h2, .hz-h3,
.hz-lead,
.hz-tile__body,
.hz-prod h3,
.hz-spec th, .hz-spec td,
.hz-q,
.hz-foot a {
	overflow-wrap: break-word;
	word-break: normal;
}

.hz-h1, .hz-h2, .hz-h3 {
	hyphens: auto;
}

/* Grid and flex children must be allowed to shrink below their min-content
   width, otherwise long compound words widen a track and cause horizontal
   overflow on narrow screens. */
.hz-prods > *,
.hz-tiles > *,
.hz-cols > *,
.hz-rows > *,
.hz-facts > *,
.hz-band > *,
.hz-split > *,
.hz-time > *,
.hz-staples > *,
.hz-foot > * {
	min-width: 0;
}

.hz-prod *,
.hz-tile *,
.hz-row *,
.hz-col *,
.hz-ev * {
	overflow-wrap: break-word;
}


/* ================= service pages, breadcrumb, prose ================= */
.hz-top__link { color: var(--hz-ink); text-decoration: none; font-weight: 600; }
.hz-top__link:hover { color: var(--hz-blue); }

.hz-page { padding: 34px 0 0; }
.hz-crumb { font-size: 13px; color: var(--hz-steel); margin-bottom: 22px; }
.hz-crumb a { color: var(--hz-steel); text-decoration: none; }
.hz-crumb a:hover { color: var(--hz-blue); }
.hz-page__head { max-width: 46rem; padding-bottom: 30px; border-bottom: 1px solid var(--hz-line); }
.hz-h1--page { font-size: clamp(30px, 6vw, 50px); color: var(--hz-ink); }
.hz-lead--page { margin-top: 14px; }
.hz-page__date { margin: 18px 0 0; font-size: 13px; color: var(--hz-steel); font-family: var(--hz-mono); }

.hz-prose { max-width: 46rem; padding: 34px 0 10px; }
.hz-prose__b { margin: 0 0 30px; }
.hz-prose__b h2 { margin: 0 0 10px; }
.hz-prose p { margin: 0 0 12px; color: var(--hz-ink-2); }
.hz-prose--legal .hz-prose__b { margin-bottom: 26px; }
.hz-prose--legal p, .hz-prose--legal li { font-size: 14.5px; }
.hz-ul { margin: 6px 0 0; padding-left: 20px; }
.hz-ul li { padding: 4px 0; }
.hz-spec--full { width: 100%; margin-top: 12px; }
.hz-inline { color: var(--hz-blue); font-weight: 600; }

.hz-pagecta { margin: 10px 0 70px; padding: 26px 24px; background: var(--hz-paper); border-left: 3px solid var(--hz-blue); max-width: 46rem; }
.hz-pagecta h2 { margin: 0 0 8px; }
.hz-pagecta p { margin: 0 0 18px; color: var(--hz-steel); }
.hz-faq--page { margin-top: 4px; }

/* ================= consent banner ================= */
.hz-consent {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 60;
	background: var(--hz-white);
	border-top: 3px solid var(--hz-yellow);
	box-shadow: 0 -10px 30px rgba(16,19,21,.14);
}
.hz-consent[hidden] { display: none; }
.hz-consent__in {
	max-width: var(--hz-max);
	margin: 0 auto;
	padding: 18px var(--hz-gut);
	display: grid;
	gap: 14px;
}
.hz-consent__h { margin: 0 0 6px; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.hz-consent__txt p { margin: 0; font-size: 13.5px; color: var(--hz-ink-2); }
.hz-consent__txt a { color: var(--hz-blue); font-weight: 600; }
.hz-consent__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.hz-consent__btns .hz-btn { flex: 1 1 auto; min-height: 46px; }

@media (min-width: 700px) {
	.hz-consent__in { grid-template-columns: 1fr auto; align-items: center; gap: 26px; padding: 18px var(--hz-gut); }
	.hz-consent__btns .hz-btn { flex: 0 0 auto; min-width: 150px; }
	.hz-page { padding-top: 44px; }
}

/* footer legal navigation row */
.hz-foot__legalnav { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0 0 14px; padding: 0; list-style: none; }
.hz-foot__legalnav a { color: rgba(255,255,255,.7); }
