/* ============================================================================
   OurCoop — unified stylesheet for the go-live pages
   index · about · ourcoop-difference · business/food · business/funeral · legal/*
   Per-page variations are keyed off body classes:
     home            (index)               — larger --max, hero header, home nav
     doc  / about    (about)               — doc typography, centred, heavier h1
     doc  / legal    (legal/*)             — doc typography, narrow --max
     food / funeral  (business/*)          — business --accent colour
   ============================================================================ */

/* ---- Design tokens ---- */
:root {
  --brand-green: #005645;
  --coop-green-900: #00382b;
  --ink: #15211d;
  --muted: #5a6661;
  --paper: #ffffff;
  --wash: #f4f6f4;
  --line: #e4e9e6;
  --food: #6ba539; --travel: #007e7e; --energy: #da1984; --broadband: #483698;
  --mobile: #1961ae; --funeral: #87b189; --pioneers: #f9a01b;
  --max: 1080px; --radius: 16px;
}
/* Per-page token overrides */
body.home    { --max: 1180px; }
body.legal   { --max: 820px; }
body.about,
body.legal   { line-height: 1.65; }
body.food    { --accent: var(--food); }
body.funeral { --accent: var(--funeral); }

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
main { flex: 1 0 auto; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--brand-green); padding: 12px 18px; z-index: 100; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

/* ---- Rounded headings (Nunito, Google Fonts) ---- */
h1, h2, h3, h4 { font-family: "Nunito", "Arial Rounded MT Bold", Arial, sans-serif; }

/* ---- Top business nav (shared) ---- */
.topnav { background: var(--coop-green-900); position: relative; }
.topnav .gn-inner { width: 100%; padding: 0 40px; height: 44px; display: flex; align-items: center; }
.gn-menu { flex:1; display:flex; align-items:center; justify-content:space-between; }
.gn-left, .gn-right { display:flex; align-items:center; gap:22px; }
.gn-menu a { color:#fff; text-decoration:none; font-size:.94rem; font-weight:500; opacity:.9; white-space:nowrap; }
.gn-menu a:hover { opacity:1; text-decoration:underline; }
.gn-toggle { display:none; }
.gn-label { display: none; }
@media (max-width:980px) {
  /* content pages collapse the strip; the hamburger lives in header.site */
  .topnav { background:transparent; }
  .topnav .gn-inner { height:0; min-height:0; padding:0; }
  .gn-toggle { display:flex; flex-direction:column; justify-content:center; gap:5px; width:44px; height:44px; margin-left:auto; background:none; border:none; cursor:pointer; padding:0; }
  .gn-toggle span { width:24px; height:2px; background:#fff; border-radius:2px; display:block; }
  .gn-menu { position:absolute; left:0; right:0; top: 72px; flex-direction:column-reverse; align-items:stretch; justify-content:flex-start; background:var(--coop-green-900); padding:6px 0 12px; display:none; box-shadow:0 14px 30px rgba(0,0,0,.22); z-index:60; }
  .gn-menu.is-open { display:flex; }
  .gn-left, .gn-right { flex-direction:column; align-items:stretch; gap:0; }
  .gn-menu a { padding:13px 24px; opacity:1; border-top:1px solid rgba(255,255,255,.12); }
  .gn-label { display:block; padding:13px 24px 6px; font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.5); border-top:1px solid rgba(255,255,255,.12); }
  /* home keeps the dark strip with the hamburger in it; dropdown from the strip */
  body.home .topnav { background: var(--coop-green-900); }
  body.home .topnav .gn-inner { height:44px; min-height:0; padding:0 16px; }
  body.home .gn-menu { top:44px; }
}

/* ---- Site header (green bar) — content pages (about, difference, business, legal) ---- */
header.site { background: var(--brand-green); padding: 16px 0; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1080px; }
header.site img { height: 40px; width: auto; display: block; }
header.site a.back { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.92rem; opacity: 0.9; display: inline-flex; align-items: center; gap: 6px; }
header.site a.back:hover { opacity: 1; text-decoration: underline; }
.site-actions { display:flex; align-items:center; gap:14px; }

/* ---- Footer (shared) ---- */
footer.site { background: var(--brand-green); color: rgba(255,255,255,0.85); padding: 56px 0 40px; }
footer.site img { height: 42px; width: auto; margin-bottom: 22px; }
footer.site p { margin: 0 0 6px; font-size: 0.92rem; }
footer.site .small { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 18px; }
footer.site .legal { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: flex-start; margin: 0 0 14px; padding-right: 120px; }
footer.site .legal a { color: #fff; opacity: .9; text-decoration: none; font-size: .85rem; }
footer.site .legal a:hover { opacity: 1; text-decoration: underline; }
footer.site .wrap { position: relative; }
footer.site .award { position: absolute; top: 50%; right: 24px; transform: translateY(-50%); margin: 0; }
footer.site .award img { height: 72px; width: auto; display: inline-block; }
@media (max-width: 700px) { footer.site .award { position: static; transform: none; margin-top: 24px; } footer.site .legal { padding-right: 0; } }

/* ============================================================================
   HOME (index.html) — scoped under body.home
   ============================================================================ */
body.home .hero-logo { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 100%; max-width: var(--max); padding: 0 24px; z-index: 5; }
body.home .hero-logo img { height: 77px; width: auto; display: block; }

body.home .hero { position: relative; overflow: hidden; color: #fff; height: clamp(511px, 34vw, 620px); background: var(--brand-green); }
body.home .hero-media { position: absolute; inset: 0 44% 0 0; z-index: 0; }
body.home .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0; transition: opacity 1.4s ease; }
body.home .hero-slide.is-active { opacity: 1; }
body.home .hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 18%, rgba(0,0,0,0) 48%); }
body.home .hero-panel { --r: 360px; position: absolute; top: calc(50% - var(--r)); right: 0; width: 55%; height: calc(2 * var(--r)); background: var(--brand-green); border-radius: var(--r) 0 0 var(--r); z-index: 1; }
body.home .hero-content { position: absolute; top: 0; bottom: 0; right: 0; width: 48%; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 0 7% 0 4%; text-align: left; }
body.home .hero .eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.82); margin: 0 0 16px; }
body.home .hero h1 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1.08; margin: 0 0 18px; max-width: 15ch; font-weight: 800; letter-spacing: -0.01em; }
body.home .hero p.lead { font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(255,255,255,0.92); max-width: 40ch; margin: 0; }
body.home .hero .lead a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 620px) {
  body.home .hero { height: auto; }
  body.home .hero-media { position: relative; inset: auto; width: 100%; height: 240px; }
  body.home .hero-panel { display: none; }
  body.home .hero-content { position: relative; inset: auto; width: 100%; height: auto; margin-top: -36px; background: var(--brand-green); border-radius: 50% 50% 0 0 / 48px 48px 0 0; padding: 56px 8% 44px; justify-content: flex-start; text-align: center; align-items: stretch; }
  body.home .hero h1 { font-size: clamp(1.45rem, 6vw, 1.9rem); line-height: 1.14; max-width: 100%; margin-bottom: 14px; }
  body.home .hero p.lead { font-size: 0.98rem; max-width: 100%; }
}

body.home section.block { padding: 76px 0; }
body.home .welcome { padding: 72px 0; text-align: center; }
body.home .welcome p { font-size: clamp(1.12rem, 1.8vw, 1.35rem); line-height: 1.55; max-width: 62ch; margin: 0 auto; color: var(--ink); font-weight: 500; }
body.home .welcome p + p { margin-top: 18px; }
body.home .welcome a { color: var(--brand-green); text-underline-offset: 2px; }
body.home .section-head { max-width: 60ch; margin: 0 0 40px; }
body.home .section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 0 0 12px; color: var(--brand-green); letter-spacing: -0.01em; }
body.home .section-head p { font-size: 1.1rem; color: var(--muted); margin: 0; }

body.home .businesses { background: var(--wash); }
body.home .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
body.home .card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
body.home .card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,40,30,0.12); border-color: transparent; }
body.home .card .bar { height: 6px; width: 100%; background: var(--accent, var(--brand-green)); }
body.home .card .body { padding: 30px 26px 26px; display: flex; flex-direction: column; flex: 1; }
body.home .logo-frame { height: 56px; display: flex; align-items: center; margin-bottom: 18px; }
body.home .logo-frame img { max-height: 52px; max-width: 200px; width: auto; height: auto; display: block; }
body.home .logo-frame img.tall { max-height: 64px; }
body.home .card h3 { font-size: 1.15rem; margin: 0 0 6px; color: var(--ink); }
body.home .card p { margin: 0 0 22px; color: var(--muted); font-size: 0.98rem; }
body.home .card .go { margin-top: auto; font-weight: 600; font-size: 0.95rem; color: var(--accent, var(--brand-green)); display: inline-flex; align-items: center; gap: 6px; }
body.home .card .go::after { content: "\2192"; transition: transform 0.18s ease; }
body.home .card:hover .go::after { transform: translateX(4px); }

body.home .values .grid-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
body.home .value h3 { color: var(--brand-green); font-size: 1.2rem; margin: 0 0 10px; }
body.home .value p { margin: 0; color: var(--muted); }
body.home .values .lead-line { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 700; color: var(--brand-green); margin: 0 0 12px; letter-spacing: -0.01em; }
body.home .values .lead-line span { color: var(--brand-green); }
body.home .values .m-intro { font-size: 1.1rem; color: var(--muted); max-width: 60ch; margin: 0 0 24px; }
body.home .values .m-cta { margin: 0 0 56px; font-weight: 600; font-size: 1.15rem; color: var(--brand-green); }
@media (max-width: 880px) { body.home .values .grid-values { grid-template-columns: 1fr; gap: 28px; } body.home .grid { grid-template-columns: repeat(2, 1fr); } }

body.home .join { background: var(--wash); }
body.home .join-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
body.home .join-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; display: flex; flex-direction: column; }
body.home .join-card h3 { font-size: 1.4rem; margin: 0 0 10px; color: var(--brand-green); }
body.home .join-card p { margin: 0 0 26px; color: var(--muted); }
body.home .btn { align-self: flex-start; margin-top: auto; background: var(--brand-green); color: #fff; text-decoration: none; font-weight: 600; padding: 12px 24px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px; }
body.home .btn::after { content: "\2192"; transition: transform 0.18s ease; }
body.home .btn:hover { filter: brightness(1.08); }
body.home .btn:hover::after { transform: translateX(4px); }
@media (max-width: 700px) { body.home .join-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { body.home .grid { grid-template-columns: 1fr; } body.home section.block { padding: 56px 0; } }

/* ============================================================================
   DOC pages (about.html + legal/*.html)
   ============================================================================ */
.doc { padding:56px 0 72px; }
.doc h1 { font-size:clamp(1.8rem,4vw,2.4rem); color:var(--brand-green); margin:0 0 8px; letter-spacing:-0.01em; }
.doc .updated { color:var(--muted); font-size:.9rem; margin:0 0 32px; }
.doc .lead { font-size:1.1rem; }
.doc h2 { font-size:clamp(1.2rem,2.4vw,1.55rem); color:var(--brand-green); margin:36px 0 12px; letter-spacing:-0.01em; }
.doc h3 { font-size:1.08rem; color:var(--ink); margin:24px 0 8px; }
.doc p { margin:0 0 16px; }
.doc ul { margin:0 0 16px; padding-left:1.3em; }
.doc li { margin:0 0 8px; }
.doc a { color:var(--brand-green); text-underline-offset:2px; }
.doc address { font-style:normal; margin:0 0 16px; }
.doc table { width:100%; border-collapse:collapse; margin:0 0 24px; font-size:.9rem; }
.doc th, .doc td { border:1px solid var(--line); padding:10px 12px; text-align:left; vertical-align:top; }
.doc th { background:var(--wash); font-weight:700; }

/* about-only: centred intro + values card grid, heavier title */
body.about .doc h1 { font-size:clamp(2rem,4.2vw,2.9rem); margin:0 0 14px; font-weight:800; }
body.about .doc .lead { font-size:1.3rem; font-weight:700; color:var(--brand-green); }
.about-intro { max-width:760px; margin:0 auto; text-align:center; }
.about-intro .lead { margin-bottom:18px; }
.about-intro p:not(.lead) { text-align:center; }
.values-head { text-align:center; margin-top:48px; }
.doc .values-sub { text-align:center; max-width:760px; margin:0 auto 8px; color:var(--ink); }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:72px; }
.value-card { background:var(--wash); border:1px solid var(--line); border-radius:16px; padding:24px 26px; }
.value-card h3 { margin:0 0 8px; color:var(--brand-green); font-size:1.1rem; }
.value-card p { margin:0; color:var(--muted); }
@media (max-width:820px) { .values-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px) { .values-grid { grid-template-columns:1fr; } }

/* ============================================================================
   BUSINESS pages (business/food.html + business/funeral.html)
   ============================================================================ */
.biz-hero { border-top: 6px solid var(--accent); background: var(--wash); display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
.biz-hero .copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 64px 48px 64px max(24px, calc((100vw - var(--max)) / 2 + 24px)); }
.biz-hero .media { position: relative; min-height: 340px; }
.biz-hero .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.biz-hero .logo { height: 56px; width: auto; max-width: 240px; margin-bottom: 22px; }
.biz-hero .logo.tall { height: 68px; }
.biz-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 12px; letter-spacing: -0.01em; color: var(--ink); }
.biz-hero p { font-size: 1.15rem; color: var(--muted); margin: 0 0 28px; max-width: 44ch; }
.cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; text-decoration: none; font-weight: 600; padding: 12px 22px; border-radius: 50px; }
.cta::after { content: "\2192"; }
.cta:hover { filter: brightness(0.94); }
@media (max-width: 760px) {
  .biz-hero { grid-template-columns: 1fr; }
  .biz-hero .copy { padding: 48px 24px 40px; }
  .biz-hero .media { min-height: 220px; }
}
.services { padding: 64px 0 76px; }
.services h2 { font-size: 1.4rem; margin: 0 0 24px; color: var(--brand-green); }
.services h2.more { margin-top: 48px; }
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sgrid.two { grid-template-columns: repeat(2, 1fr); }
.scard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.scard:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,40,30,0.10); }
.scard .logo { height: 30px; width: auto; max-width: 100%; margin: 0 0 16px; display: block; align-self: flex-start; }
.scard .badge { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; display: block; margin-bottom: 16px; }
.scard h3 { margin: 0 0 6px; font-size: 1.08rem; }
.scard p { margin: 0 0 16px; color: var(--muted); font-size: 0.95rem; }
.scard .go { margin-top: auto; font-weight: 600; font-size: 0.92rem; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; }
.scard .go::after { content: "\2192"; transition: transform 0.18s ease; }
.scard:hover .go::after { transform: translateX(3px); }
.scard .store-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.scard .store-links a { color: var(--accent); font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.scard .store-links a svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.scard .store-links a:hover { text-decoration: underline; }
@media (max-width: 760px) { .sgrid { grid-template-columns: 1fr; } }

/* Food offers content (ported from food-offers.html) */
.section { padding:56px 0; }
.section.alt { background:var(--wash); }
.sec-head { text-align:center; max-width:62ch; margin:0 auto 34px; }
.sec-head h2 { font-size:clamp(1.5rem,3vw,2.1rem); color:var(--brand-green); margin:0 0 10px; letter-spacing:-0.01em; }
.sec-head p { color:var(--muted); font-size:1.08rem; margin:0; }
.center { text-align:center; }
.btn { display:inline-flex; align-items:center; gap:8px; background:var(--brand-green); color:#fff; text-decoration:none; font-weight:600; padding:12px 26px; border-radius:50px; }
.btn::after { content:"\2192"; transition:transform .18s ease; }
.btn:hover { filter:brightness(1.08); }
.btn:hover::after { transform:translateX(4px); }
.mcar { position:relative; margin:0 auto; }
.car-stage { position:relative; height:392px; border-radius:var(--radius); overflow:hidden; background:#fff; border:1px solid var(--line); box-shadow:0 12px 34px rgba(0,40,30,.10); }
.car-slide { position:absolute; inset:0; opacity:0; pointer-events:none; transition:opacity .7s ease; display:grid; grid-template-columns:0.92fr 1.08fr; }
.car-slide.is-active { opacity:1; pointer-events:auto; }
.cs-text { display:flex; flex-direction:column; justify-content:center; gap:16px; padding:36px 40px; }
.cs-text h3 { font-size:clamp(1.5rem,2.7vw,2.1rem); color:var(--brand-green); margin:0; letter-spacing:-0.01em; line-height:1.12; }
.cs-text p { margin:0; color:var(--muted); font-size:1.02rem; }
.cs-text .btn { align-self:flex-start; }
.cs-media { display:block; overflow:hidden; }
.cs-media img { width:100%; height:100%; object-fit:cover; display:block; }
.car-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:3; width:46px; height:46px; border-radius:50%; border:none; background:rgba(255,255,255,.96); color:var(--brand-green); cursor:pointer; box-shadow:0 4px 14px rgba(0,0,0,.18); display:flex; align-items:center; justify-content:center; padding:0; }
.car-arrow svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; display:block; }
.car-arrow:hover { background:#fff; }
.car-arrow.prev { left:-10px; } .car-arrow.next { right:-10px; }
@media (min-width:761px) {
  .car-arrow { opacity:0; pointer-events:none; transition:opacity .2s ease, background .18s ease; }
  .mcar:hover .car-arrow, .car-arrow:focus-visible { opacity:1; pointer-events:auto; }
}
.car-dots { display:flex; gap:9px; justify-content:center; margin-top:18px; }
.car-dot { width:10px; height:10px; border-radius:50%; border:none; background:var(--line); cursor:pointer; padding:0; transition:background .18s ease; }
.car-dot.is-active { background:var(--brand-green); }
@media (max-width:760px) {
  .car-arrow { display:none; }
  .car-stage { height:auto; min-height:520px; }
  .car-slide { grid-template-columns:1fr; grid-template-rows:210px auto; }
  .cs-media { order:-1; }
  .cs-text { padding:24px 26px 28px; }
}
@media (prefers-reduced-motion: reduce) { .car-slide { transition:none; } }
.deals { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.deal { display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; text-decoration:none; color:inherit; transition:transform .18s ease, box-shadow .18s ease; }
.deal:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,40,30,.12); }
.deal img { width:100%; aspect-ratio:816/525; object-fit:cover; display:block; }
.deal .body { padding:18px 20px 20px; display:flex; flex-direction:column; gap:12px; flex:1; }
.deal h3 { margin:0; font-size:1.12rem; color:var(--ink); }
.deal .price { align-self:flex-start; background:var(--food); color:#fff; font-weight:700; font-size:.9rem; padding:5px 13px; border-radius:50px; }
.deal .go { margin-top:auto; font-weight:600; font-size:.95rem; color:var(--food); display:inline-flex; align-items:center; gap:6px; }
.deal .go::after { content:"\2192"; transition:transform .18s ease; }
.deal:hover .go::after { transform:translateX(4px); }
@media (max-width:820px) { .deals { grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.social-icons { display:flex; gap:14px; justify-content:center; margin-top:22px; }
.social-icons a { width:50px; height:50px; border-radius:50%; background:var(--brand-green); display:flex; align-items:center; justify-content:center; transition:filter .18s ease, transform .18s ease; }
.social-icons a:hover { filter:brightness(1.12); transform:translateY(-2px); }
.social-icons svg { width:23px; height:23px; fill:#fff; }
.agegate { border-top:1px solid var(--line); padding:30px 0; }
.agegate .wrap { display:flex; align-items:center; justify-content:center; gap:18px; }
.da-badge { flex:none; width:48px; height:48px; border-radius:50%; background:var(--brand-green); color:#fff; font-weight:800; font-size:.98rem; display:flex; align-items:center; justify-content:center; }
.agegate p { margin:0; color:var(--muted); font-size:.92rem; text-align:left; text-wrap:pretty; }
.agegate a { color:var(--brand-green); font-weight:600; text-underline-offset:2px; }
@media (max-width:560px) { .agegate .wrap { flex-direction:column; text-align:center; } .agegate p { text-align:center; } }

/* ============================================================================
   OURCOOP DIFFERENCE (ourcoop-difference.html)
   ============================================================================ */
.intro { padding: 64px 0 44px; text-align: center; }
.intro .eyebrow { text-align: center; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; color: var(--brand-green); margin: 0 0 14px; }
.intro h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); color: var(--brand-green); margin: 0 0 14px; letter-spacing: -0.01em; font-weight: 800; }
.intro p:not(.eyebrow) { max-width: 64ch; margin: 0 auto 18px; color: var(--muted); font-size: 1.12rem; }
.intro p:not(.eyebrow):last-child { margin-bottom: 0; }
.stats { background: var(--brand-green); color: #fff; }
.stats .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 0 0 64px; }
.stat-tile { text-align: center; }
.stat-tile .n { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.stat-tile .l { font-size: 0.92rem; opacity: 0.85; margin-top: 6px; }
.stats-line { text-align: center; margin: 0 auto; max-width: 30ch; padding: 64px 0 30px; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
.diff { padding: 56px 0 28px; }
.dgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dcard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dcard .bar { height: 6px; width: 100%; background: var(--accent, var(--brand-green)); }
.dcard .body { padding: 28px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.dcard .logo-frame { height: 46px; display: flex; align-items: center; margin-bottom: 20px; }
.dcard .logo-frame img { max-height: 44px; max-width: 190px; width: auto; height: auto; display: block; }
.dcard .logo-frame img.tall { max-height: 54px; }
.dcard .num { font-size: 1.85rem; font-weight: 800; color: var(--accent, var(--brand-green)); line-height: 1.1; letter-spacing: -0.01em; }
.dcard .num-lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 2px 0 16px; }
.dcard .participation { font-size: 1.02rem; color: var(--ink); margin: 0 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.dcard .participation .pct { color: var(--accent, var(--brand-green)); font-weight: 800; }
.dcard .stat { margin: 0 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.dcard .stat-num { font-size: 2.4rem; font-weight: 800; color: var(--accent, var(--brand-green)); line-height: 1.05; letter-spacing: -0.01em; }
.dcard .stat-lbl { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
.dcard h2 { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 12px; font-weight: 700; }
.dcard ul { margin: 0; padding-left: 1.15em; }
.dcard ul li { margin: 0 0 9px; font-size: 0.95rem; color: var(--ink); }
.dcard ul li::marker { color: var(--accent, var(--brand-green)); }
.dcard a { color: var(--brand-green); text-underline-offset: 2px; }
.benefit { margin-top: 20px; background: var(--wash); border-radius: 12px; padding: 16px 18px; }
.benefit .pill { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; background: var(--accent, var(--brand-green)); border-radius: 50px; padding: 3px 11px; margin-bottom: 9px; }
.benefit p { margin: 0; font-size: 0.92rem; color: var(--ink); }
.benefit ul { margin: 0; padding-left: 1.15em; }
.benefit li { font-size: 0.92rem; margin: 0 0 6px; color: var(--ink); }
.benefit li:last-child { margin-bottom: 0; }
.foot-note { color: var(--muted); font-size: 0.85rem; max-width: 72ch; margin: 28px auto 64px; text-align: center; padding: 0 24px; }
@media (max-width: 980px) { .dgrid { grid-template-columns: repeat(2, 1fr); } .stats .row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .dgrid { grid-template-columns: 1fr; } .stats .row { grid-template-columns: repeat(2, 1fr); } }
