.eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
}

.site-nav__link {
  padding: 0.28rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
}

.site-nav__link:hover {
  border-color: rgba(212, 168, 83, 0.45);
  text-decoration: none;
}

.site-nav__link--active {
  background: rgba(212, 168, 83, 0.16);
  border-color: rgba(212, 168, 83, 0.72);
  color: #ffe8aa;
}

.panel--surf-summary {
  background: linear-gradient(160deg, rgba(21, 42, 52, 0.92) 0%, var(--bg-elevated) 100%);
  border-color: rgba(110, 200, 255, 0.22);
}

.surf-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.surf-metric {
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.surf-metric__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.surf-metric__value {
  display: block;
  margin-top: 0.3rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1;
  color: var(--text);
}

.surf-metric__hint {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.swell-chart {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(0, 0, 0, 0.18);
  background-size: 100% 25%, 12.5% 100%, auto;
}

.swell-chart__scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.swell-chart svg {
  display: block;
  min-width: 820px;
  max-width: none;
  height: 320px;
}

.swell-chart__axis,
.swell-chart__grid {
  stroke: rgba(139, 155, 179, 0.28);
  stroke-width: 1;
}

.swell-chart__label {
  fill: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.swell-chart__y-labels {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 46px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12, 17, 24, 0.92) 0%, rgba(12, 17, 24, 0.68) 72%, transparent 100%);
}

.swell-chart__y-labels span {
  position: absolute;
  right: 6px;
  transform: translateY(-50%);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
}

.swell-chart__line--fort {
  fill: none;
  stroke: #9ee6ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swell-chart__fill {
  fill: rgba(158, 230, 255, 0.1);
}

.swell-chart__dot {
  fill: #9ee6ff;
  stroke: #06111a;
  stroke-width: 1.5;
}

.swell-chart__bubble {
  opacity: 0.78;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1;
}

.swell-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.swell-chart-legend__item {
  padding-left: 0.5rem;
  border-left: 3px solid var(--border);
}

.swell-chart-legend__item--fort {
  border-left-color: #9ee6ff;
  color: #9ee6ff;
}

.swell-chart-legend__item--south {
  border-left-color: rgba(251, 113, 133, 0.9);
  color: #fb7185;
}

.swell-chart-legend__item--west {
  border-left-color: rgba(251, 146, 60, 0.95);
  color: #fb923c;
}

.swell-chart-legend__item--north {
  border-left-color: rgba(96, 165, 250, 0.9);
  color: #60a5fa;
}

@media (max-width: 640px) {
  .surf-summary-grid {
    grid-template-columns: 1fr;
  }
}
