/**
 * SLOPECHECK DESIGN SYSTEM v2
 * Anti-AI-Slop: Topographic map inspired, editorial magazine feel
 * 
 * Fonts: Bricolage Grotesque (display), Source Serif 4 (body), Space Mono (data)
 * Palette: Elevation-inspired neutrals + piste-colour accents
 */

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,500&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Typography */
  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body: 'Source Serif 4', Georgia, serif;
  --f-data: 'Space Mono', 'Courier New', monospace;

  /* ============================================
     COLOURS - Topographic Map Inspired
     ============================================ */
  
  /* Neutrals — elevation-inspired naming */
  --ink: #0d1117;
  --ink-soft: #1c2333;
  --ridge: #2a3244;
  --slate: #566478;
  --stone: #8b95a5;
  --mist: #c4ccd8;
  --ice: #e6eaf0;
  --snow: #f5f4f0;
  --paper: #faf9f6;

  /* Piste Accents — ski-run difficulty inspired */
  --piste-blue: #1a6dd4;
  --piste-red: #d63c3c;
  --piste-green: #2a8a4b;
  --piste-black: #1a1a1a;
  --gold: #c4960a;
  --purple: #7c3aed;

  /* Wash Backgrounds — tinted cards/sections */
  --gold-wash: #fdf8e8;
  --blue-wash: #edf4fc;
  --red-wash: #fdf0f0;
  --green-wash: #edf8f1;
  --purple-wash: #f3f0ff;

  /* ============================================
     SPACING SCALE
     ============================================ */
  --sp-xs: 4px;
  --sp-s: 8px;
  --sp-m: 16px;
  --sp-l: 24px;
  --sp-xl: 40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* ============================================
     GRAIN TEXTURE (for dark sections)
     ============================================ */
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ============================================
   BASE RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  background: var(--snow);
  color: var(--ridge);
  line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Display headings */
h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

h1, .h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

h3, .h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Body text */
p {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ridge);
}

/* Data/monospace */
.data, .price, .stat, code {
  font-family: var(--f-data);
}

/* Links */
a {
  color: var(--piste-blue);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--ink);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-l);
}

.nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  pointer-events: none;
  opacity: 0.5;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-s);
  font-family: var(--f-data);
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav__logo-icon {
  width: 28px;
  height: 28px;
  background: var(--piste-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.nav__links {
  display: flex;
  gap: var(--sp-l);
  margin-left: auto;
  list-style: none;
}

.nav__link {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  padding: var(--sp-s) var(--sp-m);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.nav__link:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  font-family: var(--f-data);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--stone);
  padding: var(--sp-m) 0;
}

.breadcrumb a {
  color: var(--piste-blue);
}

.breadcrumb__sep {
  color: var(--mist);
  margin: 0 var(--sp-s);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  display: flex;
  gap: var(--sp-l);
  padding: var(--sp-m) 0;
  border-top: 1px solid var(--ice);
  border-bottom: 1px solid var(--ice);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-s);
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--slate);
}

.trust-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--piste-green);
}

/* ============================================
   ICON CHIPS
   ============================================ */
.icon-chip {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-chip svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Category colours */
.icon-chip--beer { background: var(--gold-wash); }
.icon-chip--beer svg { stroke: var(--gold); }

.icon-chip--ski { background: var(--blue-wash); }
.icon-chip--ski svg { stroke: var(--piste-blue); }

.icon-chip--school { background: var(--green-wash); }
.icon-chip--school svg { stroke: var(--piste-green); }

.icon-chip--food { background: var(--red-wash); }
.icon-chip--food svg { stroke: var(--piste-red); }

.icon-chip--transport { background: var(--purple-wash); }
.icon-chip--transport svg { stroke: var(--purple); }

.icon-chip--money { background: var(--green-wash); }
.icon-chip--money svg { stroke: var(--piste-green); }

/* ============================================
   PRICE CARD
   ============================================ */
.price-card {
  background: var(--paper);
  border: 1px solid var(--ice);
  border-radius: 10px;
  padding: var(--sp-l);
  transition: border-color 0.2s ease;
}

.price-card:hover {
  border-color: var(--piste-blue);
}

.price-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-m);
  margin-bottom: var(--sp-m);
}

.price-card__label {
  font-family: var(--f-data);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--stone);
  margin-bottom: var(--sp-xs);
}

.price-card__value {
  font-family: var(--f-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.price-card__range {
  font-family: var(--f-body);
  font-size: 12px;
  font-style: italic;
  color: var(--stone);
}

/* Delta badges */
.delta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f-data);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.delta--up {
  background: var(--red-wash);
  color: var(--piste-red);
}

.delta--down {
  background: var(--green-wash);
  color: var(--piste-green);
}

.delta--flat {
  background: var(--ice);
  color: var(--slate);
}

.delta svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   PRICE GRID (4-card layout)
   ============================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-m);
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   EDITORIAL BLOCK
   ============================================ */
.editorial {
  background: var(--paper);
  border: 1px solid var(--ice);
  border-radius: var(--radius-md);
  padding: var(--sp-l);
  padding-left: 56px;
  position: relative;
}

.editorial::before {
  content: '"';
  position: absolute;
  left: var(--sp-l);
  top: var(--sp-m);
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--mist);
  line-height: 1;
  opacity: 0.5;
}

.editorial__tag {
  font-family: var(--f-data);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--piste-blue);
  font-weight: 700;
  margin-bottom: var(--sp-s);
}

.editorial__body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ridge);
}

/* ============================================
   PROPERTY CARD (Accommodation - THE MONEY MAKER)
   ============================================ */
.property-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--paper);
  border: 1px solid var(--ice);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.property-card:hover {
  box-shadow: var(--shadow-md);
}

.property-card__image {
  background: var(--ice);
  position: relative;
  min-height: 200px;
  /* Crosshatch pattern for placeholder */
  background-image: 
    linear-gradient(45deg, var(--mist) 25%, transparent 25%),
    linear-gradient(-45deg, var(--mist) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--mist) 75%),
    linear-gradient(-45deg, transparent 75%, var(--mist) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card__badge {
  position: absolute;
  top: var(--sp-m);
  left: var(--sp-m);
  font-family: var(--f-data);
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.property-card__badge--pick { background: var(--piste-blue); }
.property-card__badge--value { background: var(--piste-green); }
.property-card__badge--splurge { background: var(--gold); }

.property-card__content {
  padding: var(--sp-l);
  display: flex;
  flex-direction: column;
}

.property-card__name {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}

.property-card__meta {
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--stone);
  margin-bottom: var(--sp-s);
}

.property-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-m);
}

.property-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.property-card__desc {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  flex-grow: 1;
}

.property-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: var(--sp-m);
  margin: var(--sp-l) calc(var(--sp-l) * -1) calc(var(--sp-l) * -1);
  border-top: 1px solid var(--ice);
}

.property-card__metrics {
  display: flex;
  gap: var(--sp-l);
}

.property-card__metric {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--slate);
}

.property-card__metric svg {
  width: 14px;
  height: 14px;
  stroke: var(--stone);
}

.property-card__price {
  text-align: right;
}

.property-card__price-label {
  font-family: var(--f-data);
  font-size: 10px;
  color: var(--stone);
  text-transform: uppercase;
}

.property-card__price-value {
  font-family: var(--f-data);
  font-size: 22px;
  font-weight: 700;
  color: var(--piste-blue);
}

.property-card__price-note {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--stone);
  font-style: italic;
}

/* CTA Strip */
.property-card__cta {
  background: var(--blue-wash);
  padding: var(--sp-m) var(--sp-l);
  margin: 0 calc(var(--sp-l) * -1) calc(var(--sp-l) * -1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.property-card__cta:hover {
  background: #dceaf8;
}

.property-card__cta-text {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--piste-blue);
  display: flex;
  align-items: center;
  gap: var(--sp-s);
}

.property-card__cta-text svg {
  width: 16px;
  height: 16px;
  stroke: var(--piste-blue);
}

.property-card__cta-disclosure {
  font-family: var(--f-body);
  font-size: 12px;
  font-style: italic;
  color: var(--slate);
}

/* Responsive */
@media (max-width: 700px) {
  .property-card {
    grid-template-columns: 1fr;
  }
  
  .property-card__image {
    height: 180px;
  }
}

/* ============================================
   AREA CARD (Accommodation areas)
   ============================================ */
.area-card {
  background: var(--paper);
  border: 1px solid var(--ice);
  border-radius: 10px;
  padding: var(--sp-l);
}

.area-card--recommended {
  background: var(--blue-wash);
  border-color: var(--piste-blue);
}

.area-card__badge {
  font-family: var(--f-data);
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--piste-blue);
  margin-bottom: var(--sp-s);
}

.area-card__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}

.area-card__type {
  font-family: var(--f-data);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--sp-m);
}

.area-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-s);
  margin-bottom: var(--sp-m);
}

.area-card__stat {
  background: white;
  padding: var(--sp-s);
  border-radius: 6px;
}

.area-card__stat-label {
  font-family: var(--f-data);
  font-size: 9px;
  text-transform: uppercase;
  color: var(--stone);
}

.area-card__stat-value {
  font-family: var(--f-data);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.area-card__best {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ridge);
}

.area-card__best strong {
  color: var(--ink);
}

/* ============================================
   SCORE STRIP (Resort verdicts)
   ============================================ */
.score-strip {
  display: flex;
  gap: var(--sp-l);
  padding: var(--sp-l);
  background: var(--paper);
  border: 1px solid var(--ice);
  border-radius: 10px;
}

.score-strip__item {
  text-align: center;
}

.score-strip__value {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
}

.score-strip__value--high { color: var(--piste-green); }
.score-strip__value--mid { color: var(--gold); }
.score-strip__value--low { color: var(--piste-red); }

.score-strip__label {
  font-family: var(--f-data);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: var(--sp-m);
  background: var(--piste-blue);
  color: white;
}

.comparison-table td {
  font-family: var(--f-data);
  font-size: 14px;
  padding: var(--sp-m);
  border-bottom: 1px solid var(--ice);
}

.comparison-table tr:nth-child(even) {
  background: var(--paper);
}

.comparison-table tr:hover {
  background: var(--blue-wash);
}

.comparison-table__winner {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--piste-green);
  margin-right: var(--sp-s);
}

/* ============================================
   TIP CARD
   ============================================ */
.tip-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-m);
  padding: var(--sp-l);
  background: var(--paper);
  border: 1px solid var(--ice);
  border-radius: 10px;
}

.tip-card__number {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: white;
  font-family: var(--f-data);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Squared off, NOT circular */
  border-radius: var(--radius-sm);
}

.tip-card__save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-wash);
  color: var(--piste-green);
  font-family: var(--f-data);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-s);
}

.tip-card__save svg {
  width: 12px;
  height: 12px;
  stroke: var(--piste-green);
}

.tip-card__title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-s);
}

.tip-card__body {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ridge);
  line-height: 1.6;
}

/* ============================================
   COST BAR
   ============================================ */
.cost-bar {
  margin-bottom: var(--sp-m);
}

.cost-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--sp-s);
}

.cost-bar__name {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.cost-bar__value {
  font-family: var(--f-data);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.cost-bar__track {
  height: 28px;
  background: var(--ice);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.cost-bar__fill {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: var(--sp-m);
}

.cost-bar__fill--budget { background: var(--piste-green); }
.cost-bar__fill--mid { background: var(--piste-blue); }
.cost-bar__fill--high { background: var(--gold); }
.cost-bar__fill--ultra { background: var(--piste-red); }

.cost-bar__fill-label {
  font-family: var(--f-data);
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.cost-bar__detail {
  font-family: var(--f-body);
  font-size: 12px;
  font-style: italic;
  color: var(--stone);
  margin-top: var(--sp-xs);
}

/* ============================================
   SCENARIO CARD (Budget Builder)
   ============================================ */
.scenario-card {
  background: var(--paper);
  border: 1px solid var(--ice);
  border-radius: 10px;
  overflow: hidden;
}

.scenario-card__header {
  padding: var(--sp-l);
  color: white;
}

.scenario-card__header--budget { background: var(--piste-green); }
.scenario-card__header--mid { background: var(--piste-blue); }
.scenario-card__header--splurge { background: var(--gold); }

.scenario-card__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
}

.scenario-card__total {
  font-family: var(--f-data);
  font-size: 28px;
  font-weight: 700;
  margin-top: var(--sp-s);
}

.scenario-card__perday {
  font-family: var(--f-data);
  font-size: 12px;
  opacity: 0.9;
}

.scenario-card__items {
  padding: var(--sp-l);
}

.scenario-card__item {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-s) 0;
  border-bottom: 1px solid var(--ice);
}

.scenario-card__item:last-child {
  border-bottom: none;
}

.scenario-card__item-label {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ridge);
}

.scenario-card__item-provider {
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--stone);
}

.scenario-card__item-price {
  font-family: var(--f-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-l);
}

.section {
  padding: var(--sp-2xl) 0;
}

.section--dark {
  background: var(--ink);
  color: white;
  position: relative;
}

.section--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  pointer-events: none;
  opacity: 0.5;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-l);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-l);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-l);
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--stone);
  padding: var(--sp-2xl) 0;
  position: relative;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  pointer-events: none;
  opacity: 0.3;
}

.footer__disclosure {
  font-family: var(--f-body);
  font-size: 13px;
  font-style: italic;
  color: var(--slate);
  max-width: 600px;
}

/* ============ SITE HEADER ============ */
.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line, #e5e5e5);
  background: #fff;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo img {
  height: 32px;
  width: auto;
}

.site-header .nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-header .nav a {
  color: #333;
  text-decoration: none;
  font-family: var(--f-display, 'Bricolage Grotesque', sans-serif);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-header .nav a:hover {
  color: #1a6dd4;
}

/* ============ SITE FOOTER ============ */
.site-footer {
  background: #f8f9fa;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line, #e5e5e5);
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-footer p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: #1a6dd4;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .site-header .nav {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .site-footer nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============ WEATHER WIDGET ============ */
.weather-widget {
  background: linear-gradient(135deg, #1a6dd4 0%, #0d4a8c 100%);
  color: white;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1rem 0;
}

.weather-current {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.weather-icon { font-size: 2rem; }

.weather-temp {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: 'Space Mono', monospace;
}

.weather-desc { font-size: 0.95rem; opacity: 0.9; }

.weather-details {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.weather-snow { font-weight: 600; color: #7dd3fc; }

.weather-forecast {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.forecast-day {
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.25rem;
}

.forecast-name {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
}

.forecast-icon { display: block; font-size: 1.1rem; margin: 0.2rem 0; }

.forecast-temps {
  display: block;
  font-size: 0.7rem;
  font-family: 'Space Mono', monospace;
}

.forecast-snow {
  display: block;
  font-size: 0.65rem;
  color: #7dd3fc;
  font-weight: 600;
}

.weather-credit {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  opacity: 0.5;
}

.weather-credit a { color: white; }
