/* ===== Montreal Culture — Gazette Culturelle Editorial Design ===== */

/* --- Fonts: Cormorant Garamond (display) + Karla (body) --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --ink: #1a1a1a;
  --ink-soft: #2e2e2e;
  --cream: #f5f0e6;
  --cream-dark: #ece5d8;
  --terra: #c4503a;
  --terra-dark: #a33f2d;
  --gold: #b89650;
  --gold-light: #d4b872;
  --sage: #6b7c5e;
  --stone: #8c8577;
  --stone-light: #b0a99e;
  --white: #fdfcfa;
  --border: rgba(26,26,26,0.1);
  --border-strong: rgba(26,26,26,0.2);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Karla', 'Helvetica Neue', sans-serif;

  --max-width: 1200px;
  --max-narrow: 820px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

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

a {
  color: var(--terra);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
a:hover { color: var(--ink); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.6em; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 0.4em; font-weight: 500; }

p { margin-bottom: 1.1em; }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terra);
}

/* .fr class removed — English-only site */

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 2rem; }

/* Editorial divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}
.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--terra);
  transform: rotate(45deg);
  flex-shrink: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), backdrop-filter 0.4s;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.4s;
}
.site-logo span {
  font-weight: 400;
  font-style: italic;
  opacity: 0.7;
}
.site-header.scrolled .site-logo { color: var(--ink); }
.site-header.scrolled .site-logo span { opacity: 0.5; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}
.main-nav a {
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav a:hover { color: var(--white); opacity: 1; }
.main-nav a.active { color: var(--white); opacity: 1; }

.site-header.scrolled .main-nav a { color: var(--stone); }
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.4s;
}
.site-header.scrolled .nav-toggle { color: var(--ink); }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Cinematic gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26,26,26,0.15) 0%,
      rgba(26,26,26,0.05) 30%,
      rgba(26,26,26,0.3) 60%,
      rgba(26,26,26,0.85) 100%
    );
  z-index: 1;
}

/* Subtle grain on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem 6rem;
}

.hero .label {
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: block;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 0.4em;
  font-weight: 600;
  letter-spacing: -0.03em;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.4s both;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.88;
  max-width: 560px;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.6s both;
}

.hero .subtitle-fr {
  font-family: var(--font-display);
  font-style: italic;
  opacity: 0.55;
  font-size: 1.1rem;
  margin-top: -0.3em;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.8s both;
}

/* Sub-page hero — shorter, with header clearance */
.hero-sub {
  min-height: 70vh;
  align-items: flex-end;
  background-attachment: scroll;
}
.hero-sub .hero-content {
  padding-top: 80px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--terra-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 80, 58, 0.3);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--ink-soft);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  color: var(--terra);
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.btn-text::after {
  content: ' →';
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}
.btn-text:hover { color: var(--ink); }
.btn-text:hover::after { transform: translateX(4px); }

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 6rem 0;
  position: relative;
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-ink {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
}
.section-ink h2, .section-ink h3 { color: var(--cream); }
.section-ink .label { color: var(--gold-light); }
.section-ink .fr { color: var(--stone-light); }

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.center { text-align: center; }
.section-header .label { margin-bottom: 0.8rem; display: block; }
.section-header p {
  color: var(--stone);
  max-width: 580px;
  font-size: 1.05rem;
}
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ========================================
   EDITORIAL CARD GRID
   ======================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,26,26,0.1);
}

.card-img-wrap {
  overflow: hidden;
  position: relative;
  height: 260px;
}
.card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(26,26,26,0.04));
  pointer-events: none;
}

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

.card-body {
  padding: 1.8rem;
}
.card-body .label { margin-bottom: 0.6rem; display: block; font-size: 0.68rem; }
.card-body h3 { font-weight: 600; margin-bottom: 0.6em; }
.card-body h3 a { color: var(--ink); transition: color 0.3s; }
.card-body h3 a:hover { color: var(--terra); }
.card-body p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }
.card-body .fr { font-size: 0.88rem; }

/* Featured card — large, asymmetric */
.card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.card-featured .card-img-wrap { height: 100%; }
.card-featured .card-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }

/* ========================================
   CONTENT BLOCKS — Editorial Layout
   ======================================== */

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-block .img-editorial {
  position: relative;
}

.content-block .img-editorial img {
  box-shadow: 0 12px 40px rgba(26,26,26,0.12);
}

/* Decorative offset border */
.content-block .img-editorial::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 1.5px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}
.content-block.reverse .img-editorial::before {
  top: -12px;
  left: -12px;
  bottom: 12px;
  right: 12px;
}

.content-text .label { margin-bottom: 0.8rem; display: block; }
.content-text h2 { margin-bottom: 0.5em; }

/* ========================================
   HIGHLIGHT LIST — Editorial Cards
   ======================================== */

.highlight-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.highlight-list li {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.highlight-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26,26,26,0.08);
}

.highlight-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--terra), var(--gold));
}

.highlight-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5em;
}

/* ========================================
   FAQ — Accordion
   ======================================== */

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

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--terra); }

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--terra);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0 1.4rem;
  color: var(--stone);
  line-height: 1.75;
}

/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumbs {
  padding: 1.2rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
}
.breadcrumbs a { color: var(--stone); }
.breadcrumbs a:hover { color: var(--terra); }
.breadcrumbs span { margin: 0 0.5em; opacity: 0.5; }

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

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1.2em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6em; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

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

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.stat {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3em;
}
.stat-number span { color: var(--terra); }

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone);
}

/* ========================================
   MARQUEE
   ======================================== */

.marquee-strip {
  overflow: hidden;
  background: var(--ink);
  padding: 1rem 0;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 40s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  padding: 0 2rem;
}

.marquee-inner span::after {
  content: '◆';
  margin-left: 2rem;
  font-size: 0.5rem;
  vertical-align: middle;
  color: var(--terra);
  opacity: 0.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > * {
  opacity: 0;
  transform: translateY(20px);
}
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   PULL QUOTE
   ======================================== */

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  padding: 2rem 0;
  position: relative;
  max-width: 700px;
}
.pull-quote::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--terra), transparent);
}

/* ========================================
   IMAGE GRID (editorial photo layout)
   ======================================== */

.img-grid-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 0.5rem;
}
.img-grid-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s;
}
.img-grid-editorial img:hover { filter: brightness(1.05) contrast(1.02); }
.img-grid-editorial .span-2 { grid-column: span 2; }
.img-grid-editorial .span-row { grid-row: span 2; }

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

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .container-narrow { padding: 0 1.25rem; }

  .hero { min-height: 85vh; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-content { padding: 0 1.25rem 4rem; }

  .hero-sub { min-height: 55vh; }

  .section { padding: 4rem 0; }

  .content-block { grid-template-columns: 1fr; gap: 2rem; }
  .content-block.reverse { direction: ltr; }
  .content-block .img-editorial::before { display: none; }

  .card-grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .card-featured .card-img-wrap { height: 250px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 1.5rem 0.5rem; }
  .stat-number { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }

  .img-grid-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  .highlight-list { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 230, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open ul { display: flex; }
  .main-nav a {
    color: var(--ink);
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  .main-nav a:hover, .main-nav a.active { color: var(--terra); }
}

@media (max-width: 480px) {
  .hero { min-height: 75vh; }
  .hero-actions { flex-direction: column; }
  .section { padding: 3rem 0; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
