:root {
  --graphiva-yellow: #f3c543;

  --ink: #14110b;
  --ink-60: rgba(20, 17, 11, 0.6);
  --ink-15: rgba(20, 17, 11, 0.15);
  --ink-06: rgba(20, 17, 11, 0.06);

  --bg: #faf7ef;
  --bg-2: #f3eedd;
  --paper: #fff;

  --pad: 96px;
  --hairline: 1.5px solid var(--ink);

  --font-mono: "Special Elite", "Courier New", monospace;
  --font-hand: "Caveat", cursive;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter Tight", sans-serif;
  background-color: var(--bg);
  color: var(--ink);
}

/*----------------- NAVBAR ---------------*/

nav {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: var(--hairline);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

nav ul li a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

nav ul li a:hover,
nav ul li a.is-active {
  border-bottom-color: var(--graphiva-yellow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--ink);
}

.logo img,
.logo svg {
  height: 40px;
  width: auto;
  display: block;
}

.logo-dot {
  color: var(--graphiva-yellow);
}

.nav-station {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-60);
  letter-spacing: 0.15em;
  border-left: 1px solid var(--ink-15);
  padding-left: 14px;
  margin-left: 4px;
}

/*----------------- PAVILLONS (SVG inline) ---------------*/

.pav {
  display: block;
}

.pav-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pav-accent {
  fill: var(--graphiva-yellow);
}

.pav-ink {
  fill: var(--ink);
}

.pav-cadre {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pav-cadre-epais {
  stroke-width: 1.2;
}

.pav-halyard {
  stroke: var(--ink);
  stroke-width: 1.4;
}

.pav-oeillet {
  fill: var(--bg);
  stroke: var(--ink);
  stroke-width: 1;
}

/*----------------- ROSE DES VENTS (SVG inline) ---------------*/

.rose-cercle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
}

.rose-cercle-fin {
  fill: none;
  stroke: var(--ink);
  stroke-width: 0.7;
  opacity: 0.5;
}

.rose-tick {
  stroke: var(--ink);
  stroke-width: 0.7;
}

.rose-tick-majeur {
  stroke-width: 1.2;
}

.rose-nord {
  fill: var(--graphiva-yellow);
  stroke: var(--ink);
  stroke-width: 1;
}

.rose-sud {
  fill: var(--bg);
  stroke: var(--ink);
  stroke-width: 1;
}

.rose-est-ouest {
  fill: var(--ink);
  opacity: 0.35;
}

.gps-bar {
  display: flex;
  justify-content: space-between;
  padding: 12px var(--pad);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
}
