/* ==========================================================================
   Cooperativa Sociale Radici — stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-forest: #1e4633;
  --color-forest-dark: #14301f;
  --color-forest-light: #2f6247;
  --color-terracotta: #c1662f;
  --color-terracotta-dark: #a34f21;
  --color-rust: #9b3a1f;
  --color-sage: #6e8b61;
  --color-gold: #d89a4a;
  --color-teal: #1f3a2e;
  --color-sand: #f7f3ec;
  --color-sand-alt: #efe8da;
  --color-ink: #22261f;
  --color-ink-soft: #4b5147;
  --color-border: #e1d9c8;
  --color-white: #ffffff;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --radius: 10px;
  --shadow-soft: 0 4px 24px rgba(30, 70, 51, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-forest-dark);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-terracotta);
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-terracotta-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost {
  background: var(--color-white);
  border-color: var(--color-border);
  color: var(--color-forest-dark);
}
.btn-ghost:hover { border-color: var(--color-forest); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-forest-dark);
  letter-spacing: 0.01em;
}
.brand-text span { color: var(--color-terracotta); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-forest-dark);
  border-color: var(--color-terracotta);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn-primary { padding: 10px 22px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 42px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-forest-dark);
  position: relative;
}
.menu-toggle { flex-direction: column; gap: 4px; }

@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-sand);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--color-border);
    display: none;
    white-space: normal;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; width: 100%; }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--color-forest-dark) 0%, var(--color-forest) 62%, var(--color-forest-light) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  padding: 90px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-roots {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}
.hero h1 { color: var(--color-white); }
.hero .eyebrow { color: #f0c8a8; }
.hero .eyebrow::before { background: #f0c8a8; }
.hero-lead { color: rgba(255,255,255,0.86); font-size: 1.08rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-art { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-art svg { width: 100%; max-width: 360px; color: rgba(255,255,255,0.9); overflow: visible; }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 50px; padding-bottom: 60px; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---------- hero motion ---------- */
.hero-roots { animation: hero-drift 9s ease-in-out infinite; }
.hero-roots circle { animation: hero-twinkle 4s ease-in-out infinite; }
.hero-roots circle:nth-of-type(2) { animation-delay: 1.2s; }
.hero-roots circle:nth-of-type(3) { animation-delay: 2.4s; }

.hero-art .ring-outer, .hero-art .ring-inner {
  transform-box: fill-box;
  transform-origin: center;
  animation: hero-breathe 5s ease-in-out infinite;
}
.hero-art .ring-inner { animation-delay: 0.35s; }

.hero-art .roots {
  transform-box: fill-box;
  transform-origin: 50% 46%;
  animation: hero-sway 7s ease-in-out infinite;
}

.hero-art .dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: hero-float 3.2s ease-in-out infinite;
}
.hero-art .dot-2 { animation-delay: 0.4s; }
.hero-art .dot-3 { animation-delay: 0.8s; }
.hero-art .dot-4 { animation-delay: 1.2s; }
.hero-art .dot-5 { animation-delay: 1.6s; }
.hero-art .dot-6 { animation-delay: 2s; }

.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,154,74,0.4) 0%, rgba(216,154,74,0.12) 55%, rgba(216,154,74,0) 75%);
  filter: blur(6px);
  animation: hero-glow-pulse 4.6s ease-in-out infinite;
}
.hero-logo {
  position: relative;
  width: 72%;
  max-width: 300px;
  filter: drop-shadow(0 20px 18px rgba(9, 22, 15, 0.35));
  animation: hero-logo-float 4.6s ease-in-out infinite;
}
.hero-logo-shadow {
  position: absolute;
  bottom: 4%;
  width: 36%;
  height: 16px;
  border-radius: 50%;
  background: rgba(5, 15, 10, 0.4);
  filter: blur(7px);
  animation: hero-shadow-pulse 4.6s ease-in-out infinite;
}

.hero-wordmark {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f0c8a8;
  text-align: center;
}

@media (max-width: 880px) {
  .hero-wordmark { margin-top: 4px; }
}

@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes hero-shadow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(0.68); opacity: 0.2; }
}
@keyframes hero-glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.1); opacity: 1; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  animation: hero-bounce 2.2s ease-in-out infinite;
  transition: border-color .2s ease, color .2s ease;
}
.scroll-cue:hover { border-color: #f0c8a8; color: #f0c8a8; }
.scroll-cue svg { width: 16px; height: 16px; }
@media (max-width: 880px) { .scroll-cue { display: none; } }

@keyframes hero-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes hero-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(1deg); }
}
@keyframes hero-twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes hero-drift {
  0%, 100% { opacity: 0.16; }
  50% { opacity: 0.24; }
}
@keyframes hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-roots, .hero-roots circle, .hero-art .ring-outer, .hero-art .ring-inner,
  .hero-art .roots, .hero-art .dot, .scroll-cue,
  .hero-logo, .hero-logo-glow, .hero-logo-shadow {
    animation: none;
  }
}

/* ---------- stats bar ---------- */
.stats {
  background: var(--color-forest-dark);
  color: var(--color-white);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #f0c8a8;
}
.stat-label { font-size: 0.86rem; color: rgba(255,255,255,0.75); }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--color-sand-alt); }
.section-forest {
  background: var(--color-forest-dark);
  color: var(--color-white);
}
.section-forest h2, .section-forest h3 { color: var(--color-white); }
.section-forest p { color: rgba(255,255,255,0.78); }
.section-forest .value-list li { color: rgba(255,255,255,0.9); }
.section-forest .eyebrow { color: #f0c8a8; }
.section-forest .eyebrow::before { background: #f0c8a8; }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--color-sand-alt);
  color: var(--color-forest);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }
.card-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-terracotta-dark);
  background: #fbe6d6;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- two-column with figure ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-figure {
  background: var(--color-sand-alt);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-figure svg { width: 100%; max-width: 320px; color: var(--color-forest); }

.value-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.value-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--color-ink);
}
.value-list li svg {
  width: 18px; height: 18px;
  color: var(--color-terracotta);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- timeline / experience table ---------- */
.area-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  margin-bottom: 22px;
  overflow: hidden;
}
.area-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: var(--color-sand-alt);
  border-bottom: 1px solid var(--color-border);
}
.area-head .card-icon { margin-bottom: 0; background: var(--color-white); }
.area-head h3 { margin: 0; }
.area-head .count {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-forest);
  background: #e4efe8;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.area-head { cursor: pointer; user-select: none; }
.area-head:hover { background: #e9e1d0; }
.area-head:focus-visible { outline: 2px solid var(--color-terracotta); outline-offset: -2px; }
.area-chevron { flex-shrink: 0; width: 18px; height: 18px; color: var(--color-forest); transition: transform 0.3s ease; }
.area-block.collapsed .area-chevron { transform: rotate(-90deg); }

.area-body-wrap {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s ease;
}
.area-body-wrap > .area-body { overflow: hidden; min-height: 0; }
.area-block.collapsed .area-body-wrap { grid-template-rows: 0fr; }

.area-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px 26px 4px;
}
.area-visual {
  background: var(--color-sand-alt);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-visual svg { width: 100%; max-width: 170px; }
.area-content p { margin-bottom: 0; }

@media (max-width: 700px) {
  .area-content { grid-template-columns: 1fr; }
  .area-visual { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .area-head { flex-wrap: wrap; row-gap: 10px; }
  .area-head h3 { flex-basis: 100%; order: 3; }
  .area-head .count { margin-left: 0; order: 1; }
  .area-head .area-chevron { order: 2; }
}

.record-table { width: 100%; border-collapse: collapse; }
.record-table th, .record-table td {
  text-align: left;
  padding: 14px 26px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.record-table th {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
  background: var(--color-white);
}
.record-table tr:last-child td { border-bottom: none; }
.record-table td:first-child { font-weight: 600; color: var(--color-forest-dark); width: 26%; }
.record-table .status {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  background: #fbe6d6;
  color: var(--color-terracotta-dark);
  white-space: nowrap;
}
.record-table .status.ongoing { background: #e4efe8; color: var(--color-forest); }

@media (max-width: 720px) {
  .record-table thead { display: none; }
  .record-table, .record-table tbody, .record-table tr, .record-table td { display: block; width: 100%; }
  .record-table tr { padding: 16px 26px; border-bottom: 1px solid var(--color-border); }
  .record-table td { padding: 4px 0; border-bottom: none; }
  .record-table td:first-child { width: auto; }
  .record-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--color-ink-soft);
    margin-bottom: 2px;
  }
}

/* ---------- partner chips ---------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--color-ink);
}

/* ---------- transparency table ---------- */
.info-table { width: 100%; border-collapse: collapse; background: var(--color-white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); }
.info-table tr:not(:last-child) td, .info-table tr:not(:last-child) th { border-bottom: 1px solid var(--color-border); }
.info-table th, .info-table td { text-align: left; padding: 15px 22px; font-size: 0.94rem; }
.info-table th { width: 38%; font-weight: 600; color: var(--color-ink-soft); background: var(--color-sand-alt); }
.info-table td { color: var(--color-ink); }

@media (max-width: 560px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: auto; }
  .info-table tr:not(:last-child) { border-bottom: 1px solid var(--color-border); }
  .info-table th { padding-bottom: 4px; }
  .info-table td { padding-top: 4px; }
}

.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.doc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.94rem;
}
.doc-list svg { width: 20px; height: 20px; color: var(--color-forest); flex-shrink: 0; }
.doc-note { font-size: 0.82rem; color: var(--color-ink-soft); margin-left: auto; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-radius: 18px;
  padding: 50px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 0; }
.cta-banner .btn-ghost { background: var(--color-white); color: var(--color-terracotta-dark); }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card h3 { margin-bottom: 6px; font-size: 1.05rem; color: var(--color-forest-dark); }
.contact-card p { font-size: 0.94rem; margin-bottom: 4px; color: var(--color-ink-soft); }
.contact-card a.link { color: var(--color-terracotta-dark); font-weight: 600; text-decoration: none; }
.contact-card a.link:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--color-forest-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 3px; }
.footer-brand .brand-text { color: var(--color-white); }
.footer-brand .brand-text span { color: #f0c8a8; }
.site-footer h4 { color: var(--color-white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.93rem; }
.footer-links a:hover { color: #f0c8a8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--color-forest-dark) 0%, var(--color-forest) 100%);
  color: var(--color-white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 60ch; margin-bottom: 0; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }

.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .two-col-text { grid-template-columns: 1fr; } }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
