/* ============================================
   Boussole Gauloise — editorial theme
   French travel guide for Parc Astérix
   ============================================ */

:root {
  --bg: #fdf8f1;
  --bg-2: #f5ebd9;
  --bg-3: #e8d9b8;
  --card: #ffffff;
  --card-2: #fbf4e6;
  --line: #d8c8a4;
  --line-2: #c1a878;
  --primary: #7a1e1e;
  --primary-2: #a82d2d;
  --primary-3: #5c0f0f;
  --gold: #c9952a;
  --gold-2: #a87a1e;
  --gold-light: #f1d68a;
  --text: #2a1a0a;
  --text-2: #4a3422;
  --muted: #6e5b3e;
  --accent: #2e6b3f;
  --accent-2: #1e4d2c;
  --shadow: 0 6px 18px rgba(74, 39, 12, 0.10);
  --shadow-lg: 0 14px 40px rgba(74, 39, 12, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --content-max: 1180px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-3); text-decoration: underline; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 241, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.nav-brand-mark svg { width: 22px; height: 22px; fill: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(122, 30, 30, 0.06);
  text-decoration: none;
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-cta:hover { background: var(--primary-3); transform: translateY(-1px); text-decoration: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

.mobile-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  padding: 24px;
  z-index: 99;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 17px; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { color: var(--primary); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-bg, none) center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 90px 24px 70px;
  color: #fff;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 149, 42, 0.95);
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-heading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 900px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary-3);
}

.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,149,42,0.35); text-decoration: none; }

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover { background: rgba(255,255,255,0.2); text-decoration: none; }

.btn svg { width: 18px; height: 18px; }

/* ============================================
   SECTIONS — generic
   ============================================ */
section {
  padding: 80px 24px;
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(122, 30, 30, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.intro-image img { width: 100%; height: 100%; object-fit: cover; }

.intro-text p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 18px;
  line-height: 1.7;
}

.intro-stats {
  display: flex;
  gap: 30px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.intro-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.intro-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============================================
   ARTICLES GRID
   ============================================ */
.articles-section {
  background: var(--bg);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 6px;
}

.article-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
}

.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.article-card:hover .article-card-img img { transform: scale(1.05); }

.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(46, 107, 63, 0.12);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}

.article-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.article-card-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.article-card-list {
  list-style: none;
  margin-bottom: 18px;
}

.article-card-list li {
  font-size: 13.5px;
  color: var(--text-2);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}

.article-card-list li::before {
  content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9952a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
}

.article-toggle {
  background: none;
  border: 1.5px solid var(--line-2);
  color: var(--primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-toggle:hover { background: var(--primary); color: var(--gold-light); border-color: var(--primary); }

.article-toggle svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.article-toggle.open svg { transform: rotate(180deg); }

.article-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.article-expand.open { max-height: 1500px; }

.article-expand-inner {
  padding: 20px 24px 28px;
  border-top: 1px dashed var(--line);
  margin-top: 0;
}

.article-expand-inner p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ============================================
   VISITOR TIPS
   ============================================ */
.tips-section {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-2) 100%);
}

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

.tip-card {
  background: var(--card);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}

.tip-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tip-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 2; }

.tip-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.tip-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   SEASONAL GUIDE — CSS gradients + inline SVG
   ============================================ */
.seasonal-section {
  background: var(--bg);
}

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

.season-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  background: var(--card);
}

.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.season-header {
  padding: 32px 22px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.season-header svg.icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: rgba(255,255,255,0.95);
  stroke-width: 1.6;
  margin-bottom: 12px;
}

.season-spring .season-header { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.season-summer .season-header { background: linear-gradient(135deg, #b85e0d, #e07b39); }
.season-autumn .season-header { background: linear-gradient(135deg, #7f4f24, #b5752a); }
.season-winter .season-header { background: linear-gradient(135deg, #1b4965, #3a8fb7); }

.season-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.season-period {
  font-size: 13px;
  opacity: 0.92;
}

.season-body {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.season-tips {
  list-style: none;
}

.season-tips li {
  font-size: 13.5px;
  color: var(--text-2);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.55;
}

.season-tips li::before {
  content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9952a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 9px;
  width: 13px;
  height: 13px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 50px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--card); border-top: 1px solid var(--line); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-2);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================
   LEAD FORM
   ============================================ */
.leadform-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}

.leadform-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.leadform-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.2;
}

.leadform-info p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.leadform-bullets {
  list-style: none;
}

.leadform-bullets li {
  font-size: 14px;
  color: var(--text-2);
  padding: 9px 0 9px 24px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}

.leadform-bullets li:last-child { border-bottom: none; }

.leadform-bullets li::before {
  content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9952a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
}

.leadform-card {
  background: var(--card);
  padding: 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 30, 30, 0.10);
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 22px;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-consent label {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover { background: var(--primary-3); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(122, 30, 30, 0.3); }

.form-submit svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 3; }

.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.form-success p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1f1208;
  color: #e8d9b8;
  padding: 60px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #4a3422;
}

.footer-brand-col .footer-brand-name {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: #c5b18a;
  margin-bottom: 16px;
}

.footer-contact-link {
  color: var(--gold-light);
  font-size: 14px;
  text-decoration: underline;
  display: inline-block;
  margin-top: 4px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.footer-col ul { list-style: none; }

.footer-col li { padding: 4px 0; }

.footer-col a {
  color: #c5b18a;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--gold-light); text-decoration: none; }

.footer-bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: #8a7548;
  line-height: 1.7;
}

.disclaimer-note {
  margin-top: 12px;
  font-style: italic;
  color: #8a7548;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(122, 30, 30, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.18;
}

.legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.legal-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
}

.legal-page h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-2);
  margin: 22px 0 8px;
}

.legal-page p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 14px;
}

.legal-page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-page li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14.5px;
}

.legal-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================
   REVEAL ANIMATION (with safety net)
   ============================================ */
.js-reveal .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid, .season-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .leadform-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 56px 20px; }
  .hero-content { padding: 60px 20px 50px; }
  .article-grid, .tips-grid, .season-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .leadform-card { padding: 26px 22px; }
  .header-inner { padding: 12px 18px; }
  .nav-brand { font-size: 18px; }
}
