/* ======================================
   BARCELONA COMPASS — EDITORIAL THEME
   Warm ivory + gold + deep terracotta
   ====================================== */

:root {
  --color-primary: #1a0800;
  --color-primary-dark: #0d0400;
  --color-accent: #c8963e;
  --color-accent-light: #e8b85a;
  --color-red: #8b3a2a;
  --color-bg: #faf7f1;
  --color-bg-alt: #f0ebe0;
  --color-text: #1a0f05;
  --color-text-light: #6b4f30;
  --color-border: #ddd3be;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', monospace;
  --shadow-sm: 0 1px 4px rgba(26,8,0,0.08);
  --shadow-md: 0 4px 16px rgba(26,8,0,0.10);
  --shadow-lg: 0 8px 32px rgba(26,8,0,0.14);
  --radius: 4px;
  --max-width: 1100px;
  --gap: 2rem;
}

*, *::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(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ======================================
   NAVIGATION
   ====================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,8,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,150,62,0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-accent-light); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(200,150,62,0.4);
  border-radius: 2rem;
  color: var(--color-accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.lang-toggle:hover { background: rgba(200,150,62,0.12); border-color: var(--color-accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--color-primary-dark);
  border-top: 1px solid rgba(200,150,62,0.15);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ======================================
   HERO
   ====================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.55);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,4,0,0.75) 0%,
    rgba(26,8,0,0.45) 50%,
    rgba(13,4,0,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(200,150,62,0.15);
  border: 1px solid rgba(200,150,62,0.3);
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--color-accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-heading .accent { color: var(--color-accent-light); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-meta-sep { color: rgba(255,255,255,0.25); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.25s;
}
.hero-cta:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ======================================
   STATS BAR
   ====================================== */

.stats-bar {
  background: var(--color-primary);
  padding: 3rem 1.5rem;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ======================================
   INTRODUCTION
   ====================================== */

.intro {
  padding: 6rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content .section-label {
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-text {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.intro-cta:hover { background: var(--color-red); }

.intro-image { position: relative; }
.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s;
}
.intro-image:hover img { transform: scale(1.02); }

/* ======================================
   ARTICLES SECTION
   ====================================== */

.articles-section {
  padding: 5rem 1.5rem;
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-label {
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.article-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s;
}
.article-card:hover { box-shadow: var(--shadow-md); }
.article-card:nth-child(even) { flex-direction: row-reverse; }

.article-inner {
  display: flex;
  flex-direction: row;
}

.article-image {
  flex: 0 0 380px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.article-card:hover .article-image img { transform: scale(1.05); }

.article-content {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.article-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.article-excerpt {
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.article-full {
  display: none;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article-full.open { display: block; }

.article-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
  align-self: flex-start;
}
.article-toggle:hover { border-color: var(--color-accent); color: var(--color-accent); }
.article-toggle svg { width: 14px; height: 14px; transition: transform 0.3s; }
.article-toggle.open svg { transform: rotate(180deg); }

/* ======================================
   TIPS SECTION
   ====================================== */

.tips-section {
  padding: 5rem 1.5rem;
  background: var(--color-bg);
}

.tips-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tip-card {
  padding: 2rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.tip-card:hover { border-color: var(--color-accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tip-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.tip-icon svg { width: 22px; height: 22px; stroke: var(--color-primary-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.tip-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.tip-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ======================================
   SEASONAL GUIDE
   ====================================== */

.seasonal-section {
  padding: 5rem 1.5rem;
  background: var(--color-bg-alt);
}

.season-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.season-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.season-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.season-header.spring { background: linear-gradient(135deg, #4a9e6a, #7ec89b); }
.season-header.summer { background: linear-gradient(135deg, #c8763e, #e8a85a); }
.season-header.autumn { background: linear-gradient(135deg, #8b5a2b, #c8963e); }
.season-header.winter { background: linear-gradient(135deg, #3a6b8b, #6a9fc4); }

.season-header svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.season-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.season-period {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
}

.season-body {
  padding: 1.25rem 1.5rem;
  background: #fff;
}
.season-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.season-bullet {
  font-size: 0.85rem;
  color: var(--color-text-light);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.season-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ======================================
   NEWSLETTER
   ====================================== */

.newsletter-section {
  padding: 5rem 1.5rem;
  background: var(--color-primary);
}

.newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.newsletter-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.newsletter-perks {
  margin-bottom: 1.5rem;
}
.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.newsletter-perks li::before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background: var(--color-accent);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-sizing: content-box;
}

.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.form-field input {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus { outline: none; border-color: var(--color-accent); }
.form-consent { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--color-accent); }
.form-consent label { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; cursor: pointer; }
.form-submit {
  padding: 0.85rem 1.75rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.form-submit:hover { background: var(--color-accent-light); transform: translateY(-1px); }
.newsletter-success {
  display: none;
  padding: 2rem;
  text-align: center;
  color: var(--color-accent-light);
  font-size: 1.1rem;
  font-weight: 600;
}
.newsletter-success.show { display: block; }

/* ======================================
   FAQ SECTION
   ====================================== */

.faq-section {
  padding: 5rem 1.5rem;
  background: var(--color-bg);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ======================================
   FOOTER
   ====================================== */

.footer {
  background: var(--color-primary-dark);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(200,150,62,0.12);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand-tagline { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.6; }

.footer-col-heading {
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-accent-light); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 700px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-copy span { color: rgba(255,255,255,0.6); }

.footer-contact-line {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}
.footer-contact-line a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--color-accent-light); }

/* ======================================
   ANIMATIONS (progressive enhancement)
   ====================================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .scroll-indicator { animation: none; }
}

/* ======================================
   LEGAL PAGES
   ====================================== */

.legal-page {
  padding: 8rem 1.5rem 4rem;
  max-width: 720px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-primary);
}
.legal-page p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--color-primary);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--color-primary); }

/* ======================================
   RESPONSIVE
   ====================================== */

@media (max-width: 1024px) {
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image img { height: 300px; }
  .article-inner { flex-direction: column; }
  .article-image { flex: none; height: 240px; }
  .article-content { padding: 1.5rem; }
  .tips-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2rem; }
  .stat-number { font-size: 2rem; }
}