
:root{
  --bg:#f3f5f0;
  --surface:#ffffff;
  --text:#13291f;
  --muted:#4e5f56;
  --ruuris_orange:#f26a21;
  --eco_green:#3a6f3d;
  --eco_green2:#225a2f;
  --border: rgba(20, 35, 28, 0.10);
  --shadow: 0 14px 40px rgba(0,0,0,0.10);
  --radius: 14px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 540px at 20% 10%, rgba(58,111,61,0.09), transparent 60%),
    radial-gradient(900px 540px at 85% 15%, rgba(34,90,47,0.08), transparent 55%),
    var(--bg);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 40px));margin:0 auto}
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:14px;top:14px;width:auto;height:auto;padding:10px 12px;background:var(--surface);border:1px solid var(--border);border-radius:10px;box-shadow:var(--shadow);z-index:9999}

.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0; gap: 14px;
}
.brand{display:flex;align-items:center;gap:12px}
.ruuris-logo{width:190px;height:auto;display:block}
.nav{
  display:flex; align-items:center; gap: 10px; flex-wrap:wrap;
}
.nav a{
  padding: 10px 10px; border-radius: 10px;
  font-weight: 900; font-size: 12.5px;
  color: #183126; letter-spacing: 0.2px;
}
.nav a:hover{background: rgba(58,111,61,0.08)}
.header-right{display:flex;align-items:center;gap:10px}
.social{display:flex;align-items:center;gap:8px}
.social a{
  width:34px;height:34px; display:grid; place-items:center;
  border-radius:10px; border:1px solid var(--border);
  background: rgba(255,255,255,0.96);
}
.social svg{width:17px;height:17px;fill:#2c3a34}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 16px; border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.96);
  font-weight: 900; font-size: 13px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.07);
  white-space: nowrap;
}
.btn.primary{
  background: linear-gradient(90deg, var(--eco_green2), var(--eco_green));
  color:#fff; border-color: rgba(0,0,0,0.06);
}
.btn:hover{transform: translateY(-1px)}
.menu-btn{display:none}

.hero{padding:26px 0 6px}
.hero-shell{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.93) 58%, rgba(255,255,255,0.0) 82%),
    url("assets/ruuris_about.jpg") right center / cover no-repeat;
  min-height:360px;
}
.hero-inner{position:relative;z-index:1;padding:30px 26px 26px;width:min(760px,92%)}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:1000;text-transform:uppercase;letter-spacing:0.8px;
  color:#223a30;font-size:12px;
}
.kicker .tick{
  width:18px;height:18px;border-radius:5px;
  background: rgba(58,111,61,0.14);
  display:grid;place-items:center;
  border: 1px solid rgba(58,111,61,0.24);
}
.hero h1{margin:12px 0 10px;font-size:clamp(28px,3.2vw,44px);line-height:1.12;letter-spacing:-0.6px}
.hero p{margin:0 0 14px;color:var(--muted);font-size:15px;max-width:600px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}

.section{padding:18px 0 40px}
.section-title{text-align:center;margin:18px 0 16px}
.section-title h2{margin:0;font-size:26px;letter-spacing:-0.3px}
.section-title p{margin:6px auto 0;color:var(--muted);max-width:760px}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:980px){.grid-3{grid-template-columns:1fr}}

.card{
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.tile{padding:18px}
.tile-head{display:flex;align-items:center;gap:10px}
.tile h3{margin:10px 0 6px;font-size:18px}
.tile p{margin:0;color:var(--muted);font-size:14px}
.tile .cta{display:inline-flex;align-items:center;gap:8px;margin-top:12px;font-weight:1000;color:var(--eco_green2)}
.tile .cta svg{width:16px;height:16px;fill:currentColor}

.i{width:28px;height:28px;flex:0 0 auto}
.i.leaf{fill: var(--eco_green2)}
.i.people{fill:#3d5b52}
.i.gear{fill: var(--eco_green)}
.i.bubbles{fill:#3f86c6}
.i.clipboard{fill:#6c8a1a}

.image-panel{
  margin: 14px 0 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.image-panel img{width:100%;height:auto;display:block}

.what{
  margin-top:18px;padding:18px;text-align:center;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  border:1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.what h3{margin:0;font-size:24px}
.what p{margin:10px 0 0;color:var(--muted);font-weight:800}

.site-footer{margin-top:24px;border-top:1px solid var(--border);background: rgba(255,255,255,0.86)}
.footer-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:16px 0;flex-wrap:wrap;
}
.ruuris-logo-footer{width:210px;height:auto;display:block}
.footer-mid{color:var(--muted);font-weight:900;font-size:12.5px}
.footer-right{display:flex;align-items:center;gap:10px}

@media (max-width:980px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .nav.mobile-open{
    display:flex;flex-direction:column;
    width: calc(100% - 40px);
    margin: 0 auto 14px;
    padding: 12px;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .hero-inner{padding:24px 18px}
  .hero-shell{
    background:
      linear-gradient(180deg, rgba(255,255,255,0.93) 0%, rgba(255,255,255,0.88) 60%, rgba(255,255,255,0.0) 100%),
      url("assets/ruuris_about.jpg") center / cover no-repeat;
  }
}


/* Leadership image cards */
.card.person { overflow: hidden; }
.card.person img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}
.card.person .pad{ padding:14px; }
