/* ============================================
   EXPLORE FANCY GAP - Design System
   A calm, typography-driven nature guide
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Color Palette - Matched to logo */
  --color-stone: #2c3830;
  --color-slate: #4a5249;
  --color-drift: #6b7269;
  --color-mist: #8a918a;
  --color-fog: #f0ebe3;
  --color-cream: #f5f0e8;
  --color-white: #ffffff;

  /* Primary - teal mountain greens from mark */
  --color-ridge: #4a7c6f;
  --color-ridge-dark: #3d665b;
  --color-ridge-light: #5d9485;
  --color-ridge-pale: #7ab3a3;
  --color-ridge-faint: #e5eeeb;

  /* Accent - warm sunset tones from mark clouds & logo */
  --color-sunset: #c96a2d;
  --color-sunset-warm: #d4944c;
  --color-sunset-gold: #e8a854;
  --color-sunset-faint: #faf3eb;

  /* Typography */
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font sizes - fluid scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);

  /* Spacing scale - tightened */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;
  --space-4xl: 4rem;
  --space-5xl: 5rem;

  /* Layout */
  --max-width: 72rem;
  --content-width: 42rem;
  --reading-width: 38rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* Borders */
  --border-subtle: 1px solid rgba(0, 0, 0, 0.08);
  --border-light: 1px solid rgba(0, 0, 0, 0.12);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-stone);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-stone);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--text-4xl);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--text-lg);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-md);
  max-width: var(--reading-width);
}

p + p {
  margin-top: 0;
}

.lead {
  font-size: var(--text-lg);
  color: var(--color-slate);
  line-height: 1.8;
}

small, .text-sm {
  font-size: var(--text-sm);
}

.text-muted {
  color: var(--color-drift);
}

/* ---------- Links ---------- */
a {
  color: var(--color-sunset);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

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

/* ---------- Layout Components ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--content-width);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--color-fog);
}

.section--ridge {
  background-color: var(--color-ridge);
  color: var(--color-white);
}

.section--ridge h2,
.section--ridge h3 {
  color: var(--color-white);
}

.section--ridge .card {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.section--ridge .card__title a {
  color: var(--color-white);
}

.section--ridge .card__description {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-cream);
  border-bottom: var(--border-subtle);
  padding: var(--space-md) 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo__img {
  width: 44px;
  height: 32px;
  position: relative;
  top: 1px;
}

.site-logo__text {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--color-sunset);
  letter-spacing: 0.01em;
  font-weight: 400;
  transform: translateY(5px);
}

.site-logo__text span {
  color: var(--color-ridge-dark);
  font-weight: 400;
}

.site-logo:hover .site-logo__img {
  opacity: 0.8;
}

.site-logo:hover .site-logo__text {
  color: var(--color-sunset-light);
}

.site-logo:hover .site-logo__text span {
  color: var(--color-ridge);
}

/* ---------- Navigation ---------- */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.site-nav__link {
  font-size: var(--text-sm);
  color: var(--color-slate);
  text-decoration: none;
  padding: var(--space-sm) 0;
  position: relative;
}

.site-nav__link:hover {
  color: var(--color-sunset);
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-sunset);
  transition: width var(--transition-base);
}

.site-nav__link:hover::after,
.site-nav__link--active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  margin-right: calc(-1 * var(--space-sm));
}

.menu-toggle__bar {
  width: 22px;
  height: 2px;
  background-color: var(--color-stone);
  transition: var(--transition-fast);
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-cream);
  z-index: 99;
  padding: var(--space-5xl) var(--space-lg) var(--space-xl);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--color-stone);
  text-decoration: none;
  display: block;
  padding: var(--space-sm) 0;
}

.mobile-nav__link:hover {
  color: var(--color-sunset);
}

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: linear-gradient(180deg, var(--color-ridge-faint) 0%, var(--color-cream) 100%);
  border-bottom: var(--border-subtle);
  position: relative;
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sunset);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-xl);
  max-width: none;
}

.hero__title {
  max-width: 14ch;
  margin: 0 auto var(--space-md);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  color: var(--color-sunset);
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 2.5rem;
  background-color: var(--color-ridge);
  opacity: 0.25;
}

.divider__icon {
  font-size: var(--text-xs);
  opacity: 0.8;
}

/* ---------- Cards & Lists ---------- */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: var(--color-white);
  border: var(--border-light);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--color-sunset);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card:hover::before {
  opacity: 1;
}

.card__title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  margin-top: 0;
}

.card__title a {
  color: inherit;
  text-decoration: none;
}

.card__title a:hover {
  color: var(--color-sunset);
}

.card__description {
  font-size: var(--text-sm);
  color: var(--color-drift);
  margin-bottom: 0;
  max-width: none;
  line-height: 1.6;
}

/* Info list - for attraction lists */
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.info-list__item {
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  position: relative;
  border-bottom: var(--border-subtle);
}

.info-list__item:last-child {
  border-bottom: none;
}

.info-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-sunset);
  border-radius: 50%;
  opacity: 0.8;
}

.info-list__title {
  font-weight: 500;
  color: var(--color-stone);
}

.info-list__description {
  font-size: var(--text-sm);
  color: var(--color-drift);
  margin-top: 2px;
  margin-bottom: 0;
}

/* ---------- Page Headers ---------- */
.page-header {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--color-ridge-faint) 0%, var(--color-cream) 100%);
  border-bottom: var(--border-subtle);
  margin-bottom: var(--space-2xl);
}

.page-header__title {
  margin-bottom: var(--space-sm);
}

.page-header__description {
  font-size: var(--text-base);
  color: var(--color-slate);
  margin-bottom: 0;
  max-width: 55ch;
}

/* ---------- Content Sections ---------- */
.content-section {
  margin-bottom: var(--space-2xl);
}

.content-section__header {
  margin-bottom: var(--space-lg);
}

.content-section__title {
  margin-top: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--color-ridge);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-3xl);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.site-footer__brand {
  max-width: 24rem;
}

.site-footer__logo {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.site-footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.footer-nav__group h4 {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

.footer-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav__link:hover {
  color: var(--color-white);
}

.site-footer__social {
  margin-top: var(--space-md);
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer__social-link:hover {
  color: var(--color-white);
}

.site-footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ---------- Utility Classes ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* ---------- Weather Widget ---------- */
.weather-widget {
  background-color: var(--color-white);
  border: var(--border-light);
  border-left: 3px solid var(--color-ridge);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
}

.weather-widget__loading,
.weather-widget__error {
  font-size: var(--text-sm);
  color: var(--color-drift);
}

.weather-widget__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.weather-widget__link:hover {
  text-decoration: none;
}

.weather-widget__content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.weather-widget__data {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.weather-widget__current {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.weather-widget__icon {
  display: flex;
  align-items: center;
}

.weather-widget__icon svg {
  width: 24px;
  height: 24px;
}

.weather-widget__temp {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--color-stone);
  line-height: 1;
}

.weather-widget__conditions {
  font-size: var(--text-sm);
  color: var(--color-slate);
}

.weather-widget__wind {
  font-size: var(--text-sm);
  color: var(--color-drift);
}

.weather-widget__separator {
  opacity: 0.5;
  color: var(--color-drift);
}

.weather-widget__location {
  font-size: var(--text-sm);
  color: var(--color-drift);
  text-align: right;
  line-height: 1.3;
  font-style: italic;
  flex-shrink: 0;
}

.weather-widget__mountain {
  font-size: 1.7em;
  font-style: normal;
}

/* Forecast row */
.weather-widget__forecast {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.weather-widget__forecast-day {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--color-drift);
}

.weather-widget__forecast-name {
  font-weight: 500;
  color: var(--color-slate);
  min-width: 2rem;
}

.weather-widget__forecast-icon {
  display: flex;
  align-items: center;
}

.weather-widget__forecast-icon svg {
  width: 16px;
  height: 16px;
}

.weather-widget__forecast-temps {
  color: var(--color-drift);
}

.weather-widget__precip {
  color: var(--color-ridge);
  font-size: var(--text-xs);
}

/* Weather widget in footer */
.site-footer .weather-widget {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid var(--color-sunset-warm);
  margin: 0 0 var(--space-lg) 0;
}

.site-footer .weather-widget__icon,
.site-footer .weather-widget__forecast-icon {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer .weather-widget__temp {
  color: var(--color-white);
}

.site-footer .weather-widget__conditions {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .weather-widget__wind,
.site-footer .weather-widget__separator,
.site-footer .weather-widget__loading,
.site-footer .weather-widget__error {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .weather-widget__location {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .weather-widget__forecast {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.site-footer .weather-widget__forecast-name {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .weather-widget__forecast-temps {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .weather-widget__precip {
  color: var(--color-sunset-warm);
}

/* ---------- Weather Page ---------- */
.weather-page__loading,
.weather-page__error {
  text-align: center;
  padding: var(--space-xl);
  color: var(--color-drift);
}

.weather-page__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: var(--border-light);
}

.weather-page__station {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.weather-page__station-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-stone);
}

.weather-page__station-location {
  font-size: var(--text-sm);
  color: var(--color-drift);
}

.weather-page__updated {
  font-size: var(--text-sm);
  color: var(--color-drift);
}

/* Current Conditions */
.weather-current {
  background: linear-gradient(135deg, var(--color-ridge) 0%, var(--color-ridge-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.weather-current__main {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.weather-current__icon {
  color: rgba(255, 255, 255, 0.9);
}

.weather-current__icon .weather-icon {
  display: block;
}

.weather-current__icon svg {
  width: 64px;
  height: 64px;
}

.weather-current__temp {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.weather-current__details {
  flex: 1;
}

.weather-current__conditions {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.weather-current__feels {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.weather-current__today {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: var(--space-lg);
  font-size: var(--text-sm);
}

.weather-current__precip {
  opacity: 0.9;
}

/* Detail Cards */
.weather-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

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

.weather-detail-card {
  background: var(--color-fog);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.weather-detail-card__label {
  font-size: var(--text-xs);
  color: var(--color-drift);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.weather-detail-card__value {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--color-stone);
  margin-bottom: var(--space-xs);
}

.weather-detail-card__detail {
  font-size: var(--text-sm);
  color: var(--color-drift);
}

/* Weather Sections */
.weather-section {
  margin-bottom: var(--space-xl);
}

.weather-section__title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-stone);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-light);
}

/* Hourly Forecast */
.weather-hourly {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
}

.weather-hourly__item {
  flex: 0 0 auto;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-fog);
  border-radius: var(--radius-md);
  min-width: 60px;
}

.weather-hourly__time {
  font-size: var(--text-xs);
  color: var(--color-drift);
  margin-bottom: var(--space-xs);
}

.weather-hourly__icon {
  margin-bottom: var(--space-xs);
  color: var(--color-ridge);
}

.weather-hourly__icon .weather-icon {
  display: inline-flex;
}

.weather-hourly__temp {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--color-stone);
}

.weather-hourly__precip {
  font-size: var(--text-xs);
  color: var(--color-ridge);
  margin-top: var(--space-xs);
}

/* Daily Forecast */
.weather-daily {
  display: flex;
  flex-direction: column;
}

.weather-daily__item {
  display: grid;
  grid-template-columns: 80px 32px 1fr 50px 80px;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: var(--border-light);
}

.weather-daily__item:last-child {
  border-bottom: none;
}

.weather-daily__day {
  font-weight: 500;
  color: var(--color-stone);
}

.weather-daily__icon {
  color: var(--color-ridge);
}

.weather-daily__icon .weather-icon {
  display: inline-flex;
}

.weather-daily__conditions {
  font-size: var(--text-sm);
  color: var(--color-drift);
}

.weather-daily__precip {
  font-size: var(--text-sm);
  color: var(--color-ridge);
  text-align: center;
}

.weather-daily__temps {
  text-align: right;
}

.weather-daily__high {
  font-family: var(--font-serif);
  color: var(--color-stone);
  margin-right: var(--space-sm);
}

.weather-daily__low {
  font-family: var(--font-serif);
  color: var(--color-drift);
}

@media (max-width: 600px) {
  .weather-daily__item {
    grid-template-columns: 60px 28px 1fr 60px;
  }

  .weather-daily__conditions {
    display: none;
  }
}

/* History Charts */
.weather-history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .weather-history-grid {
    grid-template-columns: 1fr;
  }
}

.weather-history {
  background: var(--color-fog);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.weather-history__header {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--color-stone);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.weather-history__chart-wrapper {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.weather-history__chart {
  flex: 1;
  height: 80px;
}

.weather-history__svg {
  width: 100%;
  height: 100%;
  color: var(--color-ridge);
}

.weather-history__svg--wind {
  color: var(--color-sunset);
}

.weather-history__scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-drift);
  min-width: 40px;
  text-align: right;
}

.weather-history__times {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-drift);
  margin-bottom: var(--space-md);
}

.weather-history__stats {
  display: flex;
  justify-content: space-around;
  gap: var(--space-md);
}

.weather-history__stat {
  text-align: center;
}

.weather-history__stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-drift);
  margin-bottom: var(--space-xs);
}

.weather-history__stat-value {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--color-stone);
}

/* Stats Cards */
.weather-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .weather-stats-grid {
    grid-template-columns: 1fr;
  }
}

.weather-stats-card {
  background: var(--color-fog);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.weather-stats-card__header {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-stone);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-light);
}

.weather-stats-card__rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.weather-stats-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-stats-card__label {
  font-size: var(--text-sm);
  color: var(--color-drift);
}

.weather-stats-card__value {
  font-family: var(--font-serif);
  color: var(--color-stone);
}

/* Weather Icon utility */
.weather-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.weather-icon svg {
  width: 100%;
  height: 100%;
}

/* ---------- Print Styles ---------- */
@media print {
  .site-header,
  .site-footer,
  .menu-toggle {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
}
