@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Mono:wght@300;400;500&family=Syne:wght@400;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   AQUAFONTE — GLOBAL STYLESHEET
   ═══════════════════════════════════════════ */

:root {
  --deep:    #0b1a14;
  --moss:    #1c3a2a;
  --fern:    #2d5a3d;
  --sage:    #5c8e6e;
  --mist:    #a8c5b0;
  --foam:    #e2ede6;
  --ivory:   #f5f0e8;
  --gold:    #c9a84c;
  --goldlt:  #e8d08a;
  --white:   #fdfcf9;
  --red:     #c94c4c;
  --radius:  2px;
  --nav-h:   72px;
  --shadow:  0 4px 24px rgba(11,26,20,0.10);
  --shadow-lg: 0 16px 48px rgba(11,26,20,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ivory);
  color: var(--deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--deep); }

/* ── LINKS ── */
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(92,142,110,0.14);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(11,26,20,0.10); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.5px;
  color: var(--deep);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--sage); }
.nav-logo-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 2px;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--moss);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--deep); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-lang { display: flex; gap: 4px; }
.nav-lang a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-lang a:hover, .nav-lang a.active {
  border-color: rgba(92,142,110,0.4);
  color: var(--deep);
}

.nav-submit {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--deep);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-submit:hover { background: var(--moss); }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--deep); border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--deep);
}
.btn-primary:hover {
  background: var(--goldlt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.btn-dark {
  background: var(--deep);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--moss);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--mist);
  border: 1px solid rgba(168,197,176,0.35);
}
.btn-ghost:hover {
  border-color: var(--mist);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1px solid rgba(92,142,110,0.35);
}
.btn-outline:hover {
  border-color: var(--sage);
  color: var(--deep);
  background: var(--foam);
}
.btn-sm { padding: 10px 20px; font-size: 10px; }
.btn-lg { padding: 18px 40px; font-size: 13px; }

/* ═══════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════ */
.container {
  max-width: 1304px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-wide {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.eyebrow-dark { color: var(--sage); }
.eyebrow-dark::before { background: var(--sage); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--deep);
}
.section-title em { font-style: italic; color: var(--sage); }
.section-title-light { color: var(--white); }
.section-title-light em { color: var(--mist); }

.section-lead {
  font-size: 19px;
  font-weight: 300;
  color: var(--moss);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 16px;
}

.divider {
  width: 60px; height: 1px;
  background: rgba(92,142,110,0.25);
  margin: 32px 0;
}
.divider-gold { background: var(--gold); opacity: 0.5; }

/* ═══════════════════════════════════════════
   TAGS & CHIPS
   ═══════════════════════════════════════════ */
.chip {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.chip-sage { background: var(--foam); color: var(--moss); border: 1px solid rgba(92,142,110,0.2); }
.chip-gold { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid rgba(201,168,76,0.25); }
.chip-dark { background: rgba(11,26,20,0.08); color: var(--moss); border: 1px solid rgba(11,26,20,0.1); }
.chip-green { background: var(--sage); color: var(--white); }
.chip-red { background: rgba(201,76,76,0.1); color: var(--red); border: 1px solid rgba(201,76,76,0.2); }
.chip-unesco { background: #1a3a6a; color: #a8c5e8; border: 1px solid rgba(100,150,220,0.3); }

/* ═══════════════════════════════════════════
   SPRING CARDS (shared)
   ═══════════════════════════════════════════ */
.spring-card {
  background: var(--white);
  border: 1px solid rgba(92,142,110,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.spring-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(92,142,110,0.3);
}

.card-img-wrap {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--moss);
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.spring-card:hover .card-img { transform: scale(1.06); }
.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(11,26,20,0.65));
}
.card-flag-country {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,26,20,0.72);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mist);
  border-radius: 100px;
}
.card-badges {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; gap: 6px;
}
.card-temp-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(201,168,76,0.85);
  color: var(--deep);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

.card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex; flex-direction: column;
}
.card-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 3px;
}
.card-region {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--sage);
  margin-bottom: 12px;
}
.card-desc {
  font-size: 14.5px;
  color: var(--moss);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
  flex: 1;
}
.card-minerals {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 16px;
}
.card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(92,142,110,0.1);
}
.card-meta-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--sage);
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 5px;
}
.card-link-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s, gap 0.2s;
}
.spring-card:hover .card-link-arrow { color: var(--deep); gap: 9px; }

/* ═══════════════════════════════════════════
   SEARCH & FILTER BAR
   ═══════════════════════════════════════════ */
.search-bar-wrap {
  background: var(--deep);
  padding: 40px 48px;
  border-bottom: 1px solid rgba(92,142,110,0.15);
}
.search-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr auto;
  gap: 2px;
  max-width: 1200px;
}
.search-input, .search-select {
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 16px 22px;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  outline: none;
  width: 100%;
  transition: background 0.2s;
  appearance: none;
}
.search-input:focus, .search-select:focus { background: rgba(255,255,255,0.10); }
.search-input::placeholder { color: rgba(168,197,176,0.5); font-style: italic; }
.search-select { cursor: pointer; color: rgba(168,197,176,0.8); }
.search-select option { background: #1c3a2a; color: var(--white); }
.search-btn-wrap .btn { height: 100%; border-radius: 0; white-space: nowrap; }

.filter-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.filter-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(92,142,110,0.7);
  padding: 5px 13px;
  border: 1px solid rgba(92,142,110,0.25);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tag:hover, .filter-tag.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

/* ═══════════════════════════════════════════
   SIDEBAR FILTERS
   ═══════════════════════════════════════════ */
.sidebar-filters {
  width: 260px;
  flex-shrink: 0;
}
.filter-panel {
  background: var(--white);
  border: 1px solid rgba(92,142,110,0.12);
  border-radius: var(--radius);
  padding: 28px;
}
.filter-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(92,142,110,0.1);
}
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.filter-select-field {
  width: 100%;
  background: var(--foam);
  border: 1px solid rgba(92,142,110,0.2);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235c8e6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  transition: border-color 0.2s;
}
.filter-select-field:focus { border-color: var(--sage); }

.filter-checkbox-list {
  display: flex; flex-direction: column; gap: 9px;
}
.filter-checkbox-item {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--moss);
  transition: color 0.15s;
  user-select: none;
}
.filter-checkbox-item:hover { color: var(--deep); }
.filter-checkbox-item input[type="checkbox"] {
  accent-color: var(--sage);
  width: 13px; height: 13px;
  flex-shrink: 0;
  cursor: pointer;
}
.filter-checkbox-item span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
}
.filter-count-badge {
  margin-left: auto;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--sage);
  background: var(--foam);
  padding: 1px 7px;
  border-radius: 100px;
}

.filter-reset {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin-top: 20px;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.filter-reset:hover { color: var(--red); }

/* ═══════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════ */
.pagination {
  display: flex; align-items: center; gap: 6px;
  margin-top: 60px;
  justify-content: center;
}
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  border: 1px solid rgba(92,142,110,0.2);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--moss);
  background: var(--white);
  transition: all 0.2s;
  user-select: none;
}
.page-btn:hover { background: var(--foam); color: var(--deep); }
.page-btn.active { background: var(--deep); color: var(--white); border-color: var(--deep); }
.page-btn.dots { border: none; background: none; cursor: default; }

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11,26,20,0.88);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--ivory);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius);
  transform: translateY(24px);
  transition: transform 0.35s ease;
  position: relative;
}
.modal-overlay.open .modal-box { transform: none; }

.modal-close-btn {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  background: rgba(11,26,20,0.55);
  border: none; border-radius: 50%;
  color: var(--white);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.modal-close-btn:hover { background: var(--moss); }

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(92,142,110,0.2);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--deep);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(92,142,110,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-hint {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(92,142,110,0.6);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.form-error {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  margin-top: 6px;
  letter-spacing: 0.5px;
  display: none;
}
.form-error.visible { display: block; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  color: var(--mist);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(92,142,110,0.14);
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--sage); }
.footer-tagline {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(168,197,176,0.6);
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(92,142,110,0.55);
  line-height: 1.9;
  letter-spacing: 0.3px;
}
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
}
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(92,142,110,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mist); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(92,142,110,0.4);
  letter-spacing: 1px;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(92,142,110,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(92,142,110,0.5);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: rgba(92,142,110,0.08);
}

/* ═══════════════════════════════════════════
   TOAST / NOTIFICATIONS
   ═══════════════════════════════════════════ */
.toast-container {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 2000;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--deep);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px;
  transform: translateX(120%);
  transition: transform 0.35s ease;
  pointer-events: all;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}
.toast.show { transform: none; }
.toast.success { border-left-color: var(--sage); }
.toast.error { border-left-color: var(--red); }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up.in-view {
  opacity: 1; transform: none;
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* Loading spinner */
.spinner {
  width: 36px; height: 36px;
  border: 2px solid rgba(92,142,110,0.2);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .container, .container-wide { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  body { font-size: 17px; }
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .nav { padding: 0 20px; }
  .nav-right { gap: 10px; }
  .nav-lang { display: none; }
  .nav-submit { display: none; }
  .nav-burger { display: flex; }
  .search-grid { grid-template-columns: 1fr; }
  .sidebar-filters { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .search-bar-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .btn { padding: 13px 24px; font-size: 11px; }
  .btn-lg { padding: 15px 28px; }
}
