/* Kiwired — kiwired.org */

:root {
  --red: #c44841;
  --red-dark: #a83a34;
  --ink: #1b1d2a;
  --ink-soft: #2a2d3e;
  --paper: #ffffff;
  --paper-alt: #f6f5f3;
  --text: #33364a;
  --text-soft: #6a6e85;
  --line: #e6e4e0;
  --radius: 14px;
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 840px; }
.center { text-align: center; }

/* ---------- Header / hero ---------- */
.site-header {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 70%, #343750 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(196, 72, 65, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(196, 72, 65, 0.12), transparent 60%);
  pointer-events: none;
}
.site-header > * { position: relative; z-index: 1; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.brand span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red);
  padding: 9px 18px;
  border-radius: 999px;
  color: #fff !important;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero { padding: 90px 24px 110px; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  max-width: 560px;
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.18s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1.1rem; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--paper-alt); }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.lead {
  font-size: 1.13rem;
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 36px;
}
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(27, 29, 42, 0.09);
  transform: translateY(-3px);
}
.card-icon { font-size: 1.9rem; margin-bottom: 14px; }
.card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.card p { font-size: 0.95rem; color: var(--text-soft); }

/* ---------- Approach ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px 44px;
  margin-top: 10px;
}
.approach-item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}
.approach-item p { font-size: 0.97rem; color: var(--text-soft); }

/* ---------- Experience ---------- */
.experience-list {
  list-style: none;
  margin-top: 8px;
}
.experience-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 5px;
}
.experience-list li:last-child { border-bottom: none; }
.experience-list strong {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
}
.experience-list span { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- Contact ---------- */
.section-contact {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff;
}
.section-contact h2 { color: #fff; }
.section-contact .lead { color: rgba(255, 255, 255, 0.75); }
.contact-meta {
  margin-top: 26px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 20px 24px 26px;
    gap: 18px;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.open { display: flex; }
  .hero { padding: 60px 24px 80px; }
  .section { padding: 64px 0; }
}
