:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --border: #e6e6e6;
  --card: #fafafa;
  --accent: #0b5fff; /* change to your preferred brand color */
  --accent2: #0a8a2a;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

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

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 12px; background:#fff; border:1px solid var(--border); z-index:9999}

header{
  border-bottom:1px solid var(--border);
  background:#fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand img{width:44px; height:44px}
.brand .title{
  display:flex; flex-direction:column;
}
.brand .title strong{font-size:15px}
.brand .title span{font-size:12px; color:var(--muted)}

nav ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:18px; align-items:center;
  flex-wrap:wrap;
}
nav a{color:var(--text); font-weight:600; font-size:14px}
nav a.active{color:var(--accent)}

.nav-actions{display:flex; gap:10px; align-items:center}
.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:700;
  font-size:14px;
}
.button.primary{
  background: var(--accent);
  border-color: var(--accent);
  color:#fff;
}
.button:focus{outline:3px solid rgba(11,95,255,.25); outline-offset:2px}

.mobile-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:10px;
  padding:10px 12px;
  font-weight:800;
}

@media (max-width: 860px){
  .mobile-toggle{display:inline-flex}
  nav{display:none; width:100%}
  nav.open{display:block}
  nav ul{flex-direction:column; align-items:flex-start; padding:12px 0}
  .navbar{flex-wrap:wrap}
  .brand{min-width:unset}
}

.hero{
  padding: 54px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}

.kicker{color:var(--accent2); font-weight:800; letter-spacing:.4px; text-transform:uppercase; font-size:12px}
h1{margin:10px 0 10px; font-size:40px; line-height:1.15}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}
.hero-card{
  border:1px solid var(--border);
  border-radius:16px;
  background: var(--card);
  padding:18px;
}
.hero-card h3{margin:6px 0 10px}
.hero-card .meta{color:var(--muted); font-size:14px}
.hero-card .meta strong{color:var(--text)}
.pills{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.pill{
  border:1px solid var(--border);
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.section{padding: 28px 0}
.section h2{font-size:26px; margin:0 0 12px}
.grid-3{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){ .grid-3{grid-template-columns:1fr} }

.card{
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  padding:16px;
}
.card h3{margin:8px 0 6px}
.card p{margin:0; color:var(--muted)}

.callout{
  border:1px solid rgba(11,95,255,.25);
  background: rgba(11,95,255,.06);
  border-radius:16px;
  padding:16px;
}
.callout strong{display:block; margin-bottom:6px}

footer{
  border-top:1px solid var(--border);
  margin-top:28px;
  padding:22px 0;
  color:var(--muted);
  font-size:14px;
}
.footer-grid{
  display:grid; grid-template-columns: 1.3fr .7fr;
  gap:16px;
}
@media (max-width: 900px){ .footer-grid{grid-template-columns:1fr} }
.footer-links{display:flex; flex-wrap:wrap; gap:12px}
small{color:var(--muted)}

.hero{
  background: linear-gradient(180deg, rgba(11,95,255,.06), rgba(255,255,255,0));
}
.hero-photo{
  width:100%;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  padding:12px;
}
.hero-photo .ph{
  width:100%;
  aspect-ratio: 16/10;
  border-radius:14px;
  border:1px dashed var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-weight:700;
}
.quote{
  border-left:4px solid var(--accent2);
  padding:10px 14px;
  background: #f7fff9;
  border-radius:12px;
  color: #143a20;
}
.list-clean{margin:0; padding-left:18px}


/* === Kirubel-inspired earthy theme (dark header + warm accents) === */
:root{
  --bg-dark: #0f2b23;
  --bg-dark-2:#12362c;
  --paper: #fbf7ee;
  --paper-2:#f2e7d5;
  --accent: #e28b3b;
  --accent-2:#c96b2b;
  --olive:#8aa06a;
  --ink:#0b1a14;
}

body{
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(226,139,59,.18), rgba(255,255,255,0)),
    radial-gradient(1100px 600px at 90% 0%, rgba(138,160,106,.18), rgba(255,255,255,0)),
    var(--paper);
  color: var(--ink);
}

/* Dark “kirubel-like” top bar */
header{
  background: linear-gradient(180deg, rgba(15,43,35,.92), rgba(15,43,35,.84));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar{
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand .title strong, .brand .title span{
  color: rgba(255,255,255,.92) !important;
}
nav a{
  color: rgba(255,255,255,.82);
  text-decoration-color: rgba(255,255,255,.0);
}
nav a:hover{
  color:#fff;
  text-decoration-color: rgba(226,139,59,.75);
}
nav a.active{
  color:#fff;
  text-decoration-color: rgba(226,139,59,.85);
}

/* Buttons */
.button{
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
.button.primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #1b120a;
  font-weight: 700;
}
.button.primary:hover{
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15,43,35,.24);
}
.button:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15,43,35,.18);
}

/* Cards + hover */
.card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  background: linear-gradient(180deg, #ffffff, rgba(255,255,255,.96));
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(15,43,35,.16);
  border-color: rgba(15,43,35,.20);
}

/* Hero section + “hills” */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(15,43,35,.02));
}
.hero::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom:-90px;
  height:240px;
  background:
    radial-gradient(440px 220px at 18% 35%, rgba(226,139,59,.55) 0 60%, rgba(0,0,0,0) 61%),
    radial-gradient(540px 260px at 50% 40%, rgba(201,107,43,.52) 0 62%, rgba(0,0,0,0) 63%),
    radial-gradient(580px 280px at 82% 35%, rgba(138,160,106,.55) 0 60%, rgba(0,0,0,0) 61%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(15,43,35,.04));
  opacity:.95;
  pointer-events:none;
}

/* Text accents */
.kicker{
  color: var(--olive);
  letter-spacing: .12em;
}
.quote{
  border-left-color: var(--accent);
  background: linear-gradient(180deg, rgba(226,139,59,.10), rgba(255,255,255,0));
}
.callout{
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  color: rgba(255,255,255,.90);
}

/* Form focus */
input, textarea{
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus{
  outline: none;
  border-color: rgba(226,139,59,.70);
  box-shadow: 0 0 0 4px rgba(226,139,59,.18);
}

/* Footer dark */
footer{
  background: linear-gradient(180deg, rgba(15,43,35,.92), rgba(15,43,35,.86));
  border-top: 1px solid rgba(255,255,255,.08);
}
footer strong, footer small, footer a{
  color: rgba(255,255,255,.86) !important;
}
footer a:hover{
  color: #fff !important;
}


/* === Menu layout fix (keep items on one line / better responsive) === */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}

#site-nav{
  margin-left:auto;
}

#site-nav ul{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:nowrap;
  white-space:nowrap;
}

#site-nav a{
  padding: 10px 0;
  font-size: 0.95rem;
}

/* Keep CTA buttons aligned and not forcing the menu to wrap */
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
  white-space:nowrap;
}

/* At medium widths, switch to hamburger instead of wrapping */
@media (max-width: 980px){
  #site-nav{
    display:none;
  }
  .mobile-toggle{
    display:inline-flex;
  }
}

/* On large screens, show full menu and hide hamburger */
@media (min-width: 981px){
  #site-nav{
    display:block;
  }
  .mobile-toggle{
    display:none;
  }
}
