/* ===========================
   COLDCATION – Main Stylesheet
   =========================== */

:root {
  --ice: #e8f4f8;
  --frost: #c8e3ef;
  --arctic: #1a3a4a;
  --deep: #0d1f28;
  --pine: #2d5016;
  --snow: #f7fbfd;
  --gold: #d4a853;
  --aurora: #4ecdc4;
  --warm-accent: #e07b39;
  --text: #1a2830;
  --muted: #5a7280;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--snow);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 20px 48px;
  background: rgba(13, 31, 40, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 31, 40, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
}

.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img { opacity: 0.82; }

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--aurora); }

.nav-cta {
  background: var(--aurora);
  color: var(--deep) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: white;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1531366936337-7c912a4589a7?w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,40,0.85) 0%, rgba(13,31,40,0.5) 50%, rgba(13,31,40,0.3) 100%);
}

.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--snow), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin-left: 8vw;
  padding-top: 100px;
  animation: heroIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,205,196,0.15);
  border: 1px solid rgba(78,205,196,0.4);
  color: var(--aurora);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: white;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-title em {
  color: var(--aurora);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}

.btn-primary {
  background: var(--aurora);
  color: var(--deep);
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.btn-ghost {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.btn-ghost:hover { color: white; }

.btn-outline {
  border: 1.5px solid var(--arctic);
  color: var(--arctic);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--arctic);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
  z-index: 2;
}

/* ===== HERO REASONS ===== */
.hero-reasons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  backdrop-filter: blur(6px);
  transition: background 0.25s;
}

.hero-reason:hover {
  background: rgba(78,205,196,0.1);
  border-color: rgba(78,205,196,0.25);
}

.hero-reason-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-reason div {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.hero-reason strong {
  display: block;
  color: white;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.hero-reason em {
  color: var(--aurora);
  font-style: normal;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--arctic);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.light .eyebrow { color: var(--aurora); border-color: rgba(78,205,196,0.3); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aurora);
  border: 1px solid rgba(78,205,196,0.4);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ===== WHY SWEDEN ===== */
.why {
  padding: 120px 0;
  background: white;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.reason-card {
  background: var(--snow);
  border: 1px solid var(--frost);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78,205,196,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26,58,74,0.12);
  border-color: var(--aurora);
}

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

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

.reason-card h3 {
  font-size: 1.3rem;
  color: var(--arctic);
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== SEASONS ===== */
.seasons {
  padding: 120px 0;
  background: var(--arctic);
  position: relative;
  overflow: hidden;
}

.seasons::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(78,205,196,0.08), transparent 70%);
  border-radius: 50%;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.season-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: all var(--transition);
}

.season-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.winter { background: linear-gradient(135deg, #1a3f5f 0%, #0d1f28 50%, #2a5298 100%); }
.spring { background: linear-gradient(135deg, #2d5a27 0%, #1a3a1a 50%, #4a7c59 100%); }
.summer { background: linear-gradient(135deg, #1a4a6b 0%, #0d2d45 50%, #1e6b8a 100%); }
.autumn { background: linear-gradient(135deg, #5c3317 0%, #2d1a0a 50%, #8b4513 100%); }

.season-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

/* Season pattern overlays */
.winter::after { content: '❄'; font-size: 120px; position: absolute; top: 20px; right: -10px; opacity: 0.1; z-index: 0; line-height: 1; }
.spring::after { content: '🌸'; font-size: 120px; position: absolute; top: 20px; right: -10px; opacity: 0.12; z-index: 0; line-height: 1; }
.summer::after { content: '☀'; font-size: 120px; position: absolute; top: 20px; right: -10px; opacity: 0.12; z-index: 0; line-height: 1; }
.autumn::after { content: '🍂'; font-size: 120px; position: absolute; top: 20px; right: -10px; opacity: 0.12; z-index: 0; line-height: 1; }

.season-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}

.season-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.season-content h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.season-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 16px;
}

.season-link {
  font-size: 0.85rem;
  color: var(--aurora);
  font-weight: 500;
  transition: letter-spacing 0.2s;
  display: inline-block;
}

.season-card:hover .season-link {
  letter-spacing: 0.04em;
}

/* ===== TEMPERATURE BAR ===== */
.temp-bar {
  margin-top: 48px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(78,205,196,0.35);
  border-radius: 16px;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.temp-bar-label {
  font-size: 0.78rem;
  color: var(--aurora);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-weight: 500;
}

.temp-cities {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.temp-city {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
}

.temp-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.temp-deg {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.temp-loading {
  opacity: 0.4;
  animation: tempPulse 1.2s ease infinite;
}

@keyframes tempPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.temp-divider {
  width: 1px;
  height: 24px;
  background: rgba(78,205,196,0.3);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .temp-bar { border-radius: 12px; padding: 16px 20px; gap: 16px; }
  .temp-city { padding: 4px 14px; }
  .temp-bar-label { width: 100%; text-align: center; }
}

/* ===== FEATURED BLOG ===== */
/* ===== CLIMATE STRIP ===== */
.climate-strip {
  background: white;
  padding: 80px 0;
  border-bottom: 1px solid var(--frost);
}
.climate-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.climate-strip-text h2 {
  font-size: 2rem;
  color: var(--arctic);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.climate-strip-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}
.climate-strip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-stat {
  background: var(--snow);
  border: 1px solid var(--frost);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.cs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--aurora);
  margin-bottom: 6px;
}
.cs-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .climate-strip-inner { grid-template-columns: 1fr; gap: 36px; }
}

.featured-posts {
  padding: 120px 0;
  background: var(--snow);
}

.posts-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--frost);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26,58,74,0.12);
  border-color: transparent;
}

.post-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.post-card.featured .post-img { height: 320px; }

.post-img-1 { background: linear-gradient(135deg, #f4a460 0%, #daa520 40%, #ff8c00 80%, #ff6347 100%); }
.post-img-2 { background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 50%, #01579b 100%); }
.post-img-3 { background: linear-gradient(135deg, #26c6da 0%, #00838f 50%, #006064 100%); }

/* Decorative landscape elements in post images */
.post-img-1::after {
  content: '🌅';
  font-size: 80px;
  position: absolute;
  bottom: 10px;
  right: 20px;
  opacity: 0.4;
}

.post-img-2::after {
  content: '🏔️';
  font-size: 80px;
  position: absolute;
  bottom: 10px;
  right: 20px;
  opacity: 0.4;
}

.post-img-3::after {
  content: '🛶';
  font-size: 70px;
  position: absolute;
  bottom: 10px;
  right: 20px;
  opacity: 0.4;
}

.post-season-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.summer-tag { background: rgba(255,165,0,0.2); color: #ff8c00; border: 1px solid rgba(255,140,0,0.4); }
.winter-tag { background: rgba(78,205,196,0.2); color: var(--aurora); border: 1px solid rgba(78,205,196,0.4); }
.autumn-tag { background: rgba(139,69,19,0.2); color: #8b4513; border: 1px solid rgba(139,69,19,0.4); }

.post-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-date {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  display: block;
}

.post-body h3 {
  font-size: 1.2rem;
  color: var(--arctic);
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-card.featured .post-body h3 { font-size: 1.5rem; }

.post-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.read-more {
  font-size: 0.85rem;
  color: var(--aurora);
  font-weight: 500;
  margin-top: auto;
}

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

/* ===== HEAT BANNER ===== */
.heat-banner {
  background: var(--deep);
  padding: 80px 24px;
  overflow: hidden;
}

.heat-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.heat-temp {
  text-align: center;
  font-family: var(--font-display);
}

.heat-temp.hot {
  font-size: 4.5rem;
  font-weight: 900;
  color: #ff6347;
  text-shadow: 0 0 40px rgba(255,99,71,0.4);
}

.heat-temp.cool {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--aurora);
  text-shadow: 0 0 40px rgba(78,205,196,0.4);
}

.heat-temp span {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.6;
  margin-top: 6px;
}

.heat-vs {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

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

.heat-cta h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}

.heat-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 24px;
}

/* ===== DESTINATIONS PREVIEW ===== */
.destinations-preview {
  padding: 120px 0;
  background: white;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: all var(--transition);
}

.dest-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 48px rgba(26,58,74,0.2);
}

.dest-visual {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-visual { transform: scale(1.05); }

.lapland-bg { background: linear-gradient(135deg, #0d1f40 0%, #1a3a6b 50%, #2a5298 80%, #0d1f28 100%); }
.stockholm-bg { background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6b 50%, #4a7c8a 100%); }
.gothenburg-bg { background: linear-gradient(135deg, #2d5016 0%, #4a7c30 50%, #1a3a10 100%); }
.dalarna-bg { background: linear-gradient(135deg, #5c3317 0%, #8b5a2b 50%, #4a2a12 100%); }
.hogakusten-bg { background: linear-gradient(135deg, #1a4a6b 0%, #2d6b8a 50%, #0d2d45 100%); }
.are-bg { background: linear-gradient(135deg, #2d3a4a 0%, #4a5a6b 50%, #1a2a3a 100%); }
.osterlen-bg { background: linear-gradient(135deg, #1a4a1a 0%, #3a6a20 40%, #c8a030 80%, #a06020 100%); }
.gotland-bg { background: linear-gradient(135deg, #1a3a5a 0%, #2a5a8a 50%, #4a8ab0 100%); }
.oland-bg { background: linear-gradient(135deg, #3a5a10 0%, #6a8a2a 50%, #8aaa3a 100%); }

/* Decorative icons on destination cards */
.lapland-bg::after { content: '🌌'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.stockholm-bg::after { content: '⚓'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.gothenburg-bg::after { content: '🌊'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.dalarna-bg::after { content: '🎪'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.hogakusten-bg::after { content: '🏔'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.are-bg::after { content: '⛷'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.osterlen-bg::after { content: '🌾'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.gotland-bg::after { content: '🏰'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }
.oland-bg::after { content: '🌻'; font-size: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.3; }

.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  z-index: 1;
}

.dest-info {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.dest-info h4 {
  font-size: 1.3rem;
  color: white;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.dest-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--arctic) 0%, var(--deep) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(78,205,196,0.1), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(78,205,196,0.05), transparent 60%);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-snowflake {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.5;
  animation: spin 20s linear infinite;
  display: block;
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.newsletter h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 12px;
}

.newsletter > .newsletter-inner > p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 16px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 14px 22px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--aurora); }

.newsletter-form button {
  background: var(--aurora);
  color: var(--deep);
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: white;
  transform: translateY(-1px);
}

.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.6;
}

.footer-tagline {
  color: var(--aurora) !important;
  opacity: 1 !important;
  font-size: 0.82rem !important;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--aurora); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--aurora); }

.footer-affiliate-note {
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid .post-card.featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-content { margin-left: 24px; margin-right: 24px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }

  .reasons-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr 1fr; }
  .season-card { height: 380px; }

  .posts-grid { grid-template-columns: 1fr; }
  .posts-grid .post-card.featured { grid-column: span 1; }

  .dest-grid { grid-template-columns: repeat(2, 1fr); }

  .heat-banner-inner { flex-direction: column; gap: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer { padding: 60px 0 0; }
}

@media (max-width: 480px) {
  .seasons-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .heat-temp.hot, .heat-temp.cool { font-size: 3rem; }
}

/* ===== MOBILE NAV OPEN ===== */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(13,31,40,0.97);
  padding: 24px;
  gap: 16px;
}

.nav.open .nav-cta {
  display: block;
  margin: 0 24px 16px;
  text-align: center;
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--arctic) 0%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(78,205,196,0.12), transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

/* ===== FILTER TAGS ===== */
.filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px 0;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--frost);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.filter-tag:hover, .filter-tag.active {
  background: var(--arctic);
  border-color: var(--arctic);
  color: white;
}

/* ===== AFFILIATE CTA ===== */
.affiliate-box {
  background: linear-gradient(135deg, rgba(78,205,196,0.08), rgba(26,58,74,0.05));
  border: 1px solid rgba(78,205,196,0.25);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.affiliate-box p {
  font-size: 0.95rem;
  color: var(--arctic);
}

.affiliate-box p span {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* ===== SUCCESS MESSAGE ===== */
.success-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--aurora);
  color: var(--deep);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.success-toast.show {
  transform: translateX(-50%) translateY(0);
}
