/* ============================================================
   Brocéliande Tourisme — Feuille de style principale
   Mobile-first · Palette forêt · Typographie Playfair + Source Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --green-dark:   #1e3d1a;
  --green-mid:    #2d5a27;
  --green-accent: #4a7c3f;
  --green-light:  #7ab648;
  --green-pale:   #c8e6c0;
  --beige:        #f5f0e8;
  --beige-warm:   #ede0c8;
  --gold:         #c9a227;
  --gold-dark:    #9a7a1a;
  --text-dark:    #1e1a14;
  --text-body:    #3d3328;
  --text-muted:   #7a6a58;
  --white:        #ffffff;
  --border:       #d5c8b0;

  --shadow-sm: 0 2px 8px rgba(30,61,26,.08);
  --shadow-md: 0 4px 20px rgba(30,61,26,.15);
  --shadow-lg: 0 8px 40px rgba(30,61,26,.22);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --transition: .3s ease;
  --max-width:  1200px;
  --section-v:  80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--beige);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.22;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-dark); font-weight: 700; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(20,45,17,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo { text-decoration: none; }
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.1;
}
.nav-logo-sub {
  display: block;
  font-size: .68rem;
  color: var(--green-pale);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-menu a {
  display: block;
  padding: 7px 11px;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,.13);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — page d'accueil
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,28,8,.25) 0%,
    rgba(10,28,8,.55) 45%,
    rgba(10,28,8,.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 820px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero-content .hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  line-height: 1.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  text-decoration: none;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,.95); }
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: currentColor;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: .35; transform: scaleY(.5); }
}

/* ============================================================
   PAGE HERO — sous-pages
   ============================================================ */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 52px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,22,6,.15) 0%, rgba(8,22,6,.78) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.page-hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); opacity: .7; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,90,39,.4);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-v) 24px;
}
.section-beige  { background: var(--beige); }
.section-white  { background: var(--white); }
.section-forest {
  background: var(--green-dark);
  color: var(--white);
}
.section-forest h2 { color: var(--white); }
.section-forest h3 { color: var(--green-pale); }
.section-forest p  { color: rgba(255,255,255,.8); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--text-muted); font-size: 1.02rem; }

/* Stats bar */
.stats-bar {
  background: var(--green-mid);
  padding: 40px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: .8rem;
  color: var(--green-pale);
  margin-top: 7px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform .6s ease;
}
.card:hover .card-img { transform: scale(1.04); }
.card-img-wrap { overflow: hidden; }
.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card-body p  { color: var(--text-muted); font-size: .93rem; margin-bottom: 16px; flex: 1; }
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-mid);
  font-weight: 700;
  font-size: .88rem;
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.card:hover .card-arrow { gap: 12px; color: var(--gold-dark); }

/* ============================================================
   FEATURE BLOCK
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-v) 24px;
}
.feature.reverse .feature-visual { order: 2; }
.feature.reverse .feature-text   { order: 1; }
.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}
.feature-visual:hover img { transform: scale(1.04); }
.feature-text .eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.feature-text h2 { margin-bottom: 18px; }
.feature-text p  { color: var(--text-muted); margin-bottom: 16px; }
.feature-text .btn { margin-top: 8px; }

/* ============================================================
   PLACE CARDS
   ============================================================ */
.place-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  transition: box-shadow var(--transition);
}
.place-card:hover { box-shadow: var(--shadow-md); }
.place-card-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.place-card-body { padding: 28px 32px; }
.place-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-green  { background: var(--green-pale); color: var(--green-dark); }
.badge-gold   { background: #fdf0c0; color: var(--gold-dark); }
.badge-beige  { background: var(--beige-warm); color: var(--text-body); }

/* ============================================================
   ACTIVITY CARDS
   ============================================================ */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.activity-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
}
.activity-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.activity-card p  { color: var(--text-muted); font-size: .9rem; }

/* ============================================================
   CIRCUIT CARD
   ============================================================ */
.circuit-list { display: flex; flex-direction: column; gap: 20px; }
.circuit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: box-shadow var(--transition);
}
.circuit-card:hover { box-shadow: var(--shadow-md); }
.circuit-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.circuit-card p  { color: var(--text-muted); font-size: .93rem; }
.circuit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.circuit-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 90px;
}
.circuit-stat {
  text-align: center;
  padding: 8px 12px;
  background: var(--beige);
  border-radius: var(--radius);
}
.circuit-stat-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1;
}
.circuit-stat-lbl {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-mid);
}
.info-box-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.info-box h3 { color: var(--green-dark); font-size: 1.2rem; margin-bottom: 14px; }
.info-box p, .info-box li { color: var(--text-muted); font-size: .93rem; }
.info-box ul { list-style: none; }
.info-box ul li { padding: 5px 0; border-bottom: 1px solid var(--border); }
.info-box ul li:last-child { border-bottom: none; }
.info-box ul li::before { content: '→ '; color: var(--green-accent); font-weight: 700; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--beige-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.65;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================================
   LEGEND SECTION
   ============================================================ */
.legend-list { display: flex; flex-direction: column; gap: 0; }
.legend-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.legend-item:nth-child(even) .legend-img-wrap { order: 2; }
.legend-item:nth-child(even) .legend-text     { order: 1; }
.legend-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}
.legend-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .7s ease;
}
.legend-item:hover .legend-img-wrap img { transform: scale(1.05); }
.legend-text { padding: 36px 36px 36px; }
.legend-text .eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.legend-text h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--green-dark); }
.legend-text p  { color: var(--text-muted); font-size: .95rem; }

/* ============================================================
   EVENT LIST
   ============================================================ */
.event-season { margin-bottom: 48px; }
.event-season-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-pale);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.event-items { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  align-items: start;
  transition: box-shadow var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); }
.event-date-box {
  text-align: center;
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 10px 6px;
}
.event-month {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-accent);
  font-weight: 700;
}
.event-day {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  line-height: 1;
}
.event-info h4 { margin-bottom: 5px; color: var(--text-dark); }
.event-info p  { color: var(--text-muted); font-size: .9rem; margin: 0; }
.event-type {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}

/* ============================================================
   FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-body);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,90,39,.12);
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-accent) 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2  { color: var(--white); margin-bottom: 16px; }
.cta-section p   { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ============================================================
   CONTENT BODY (pages longues)
   ============================================================ */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--section-v) 24px;
}
.content-body h2 { color: var(--green-dark); margin: 44px 0 16px; }
.content-body h3 { color: var(--green-mid);  margin: 30px 0 12px; }
.content-body p  { margin-bottom: 18px; }
.content-body ul,
.content-body ol { margin: 16px 0 20px 24px; }
.content-body li { margin-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.72);
  padding: 64px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer-brand-tagline { font-size: .78rem; color: var(--green-pale); letter-spacing: .1em; text-transform: uppercase; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 24px auto 0;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: var(--section-v) 24px;
  }
  .feature.reverse .feature-visual { order: 0; }
  .feature.reverse .feature-text   { order: 0; }
  .feature-visual img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  .place-card { grid-template-columns: 1fr; }
  .place-card-img { height: 220px; }
  .legend-item { grid-template-columns: 1fr; }
  .legend-item:nth-child(even) .legend-img-wrap { order: 0; }
  .legend-item:nth-child(even) .legend-text     { order: 0; }
  .legend-img-wrap img { min-height: 200px; }
  .circuit-card { grid-template-columns: 1fr; }
  .circuit-stats { flex-direction: row; align-items: flex-start; }
}
@media (max-width: 768px) {
  :root { --section-v: 56px; }
  .nav-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(15,35,12,.98);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-menu.open { max-height: 560px; }
  .nav-menu a { padding: 12px 16px; font-size: .9rem; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .event-card { grid-template-columns: 72px 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .cards-grid  { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: repeat(2,1fr); }
}
