/* Stravente — static rebuild styles */
@font-face {
  font-family: "Zalando Sans SemiExpanded";
  src: url("assets/fonts/ZalandoSansSemiExpanded.ttf") format("truetype-variations"),
       url("assets/fonts/ZalandoSansSemiExpanded.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #0a0a0a;
  --ink-2: #1f2227;
  --paper: #ffffff;
  --mist: #f4f6f5;
  --line: #e4e8e6;
  --text: #2b2f33;
  --muted: #6b7178;
  --green: #2c9a14;        /* readable green on light bg: links, eyebrow, status */
  --green-bright: #66ff33; /* brand lime: hero accents, ticks, primary button */
  --green-dark: #1f7a0e;   /* darker green for hover/status text */
  --maxw: 1080px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(20, 28, 22, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Zalando Sans SemiExpanded", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { color: var(--ink); line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; display: block; }
.brand:hover { text-decoration: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #cdd2d6; padding: 8px 14px; border-radius: 7px; font-size: 0.95rem; font-weight: 500;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.nav a.active { color: #fff; background: rgba(255,255,255,0.12); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: 0.2s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; font-size: 0.98rem; transition: 0.15s;
}
.btn-primary { background: var(--green-bright); color: var(--ink); }
.btn-primary:hover { background: #57e028; text-decoration: none; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: #fff; color: var(--ink); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; text-align: center;
  background: linear-gradient(rgba(12,18,28,0.55), rgba(12,18,28,0.7)), url("assets/hero.jpg") center 30% / cover no-repeat;
}
.hero .wrap { padding-top: 96px; padding-bottom: 96px; }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 18px; max-width: 14ch; margin-inline: auto; }
.hero h1 .accent { color: var(--green-bright); }
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 56ch; margin: 0 auto 28px; color: #eef1f3; }
.hero--sm .wrap { padding-top: 64px; padding-bottom: 64px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section--mist { background: var(--mist); }
.section-head { text-align: center; max-width: 64ch; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 0 0 14px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.eyebrow { color: var(--green); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 10px; }

/* ---------- Service grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: 0.18s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.card .tick { width: 34px; height: 5px; border-radius: 3px; background: var(--green-bright); margin-bottom: 18px; }
.card h3 { font-size: 1.15rem; margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* ---------- Stacked services (services page) ---------- */
.service-row { max-width: 800px; margin: 0 auto; }
.service-row .item { padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-row .item:last-child { border-bottom: 0; }
.service-row h3 { font-size: 1.4rem; margin: 0 0 12px; }
.service-row p { color: var(--muted); margin: 0; }

/* ---------- Prose (about) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose .block { padding: 28px 0; }
.prose h3 { font-size: 1.5rem; margin: 0 0 12px; }
.prose p { color: #44494e; }
/* Approach pillars */
.approach-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.approach-point { border-top: 3px solid var(--green-bright); padding-top: 14px; }
.approach-point h4 { margin: 0 0 6px; font-size: 1.05rem; color: var(--ink); }
.approach-point p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Values list */
.values-list { list-style: none; padding: 0; margin: 18px 0 0; }
.values-list li { position: relative; padding: 13px 0 13px 30px; color: #44494e; border-bottom: 1px solid var(--line); }
.values-list li:last-child { border-bottom: 0; }
.values-list li::before {
  content: ""; position: absolute; left: 2px; top: 17px; width: 13px; height: 7px;
  border-left: 3px solid var(--green-bright); border-bottom: 3px solid var(--green-bright); transform: rotate(-45deg);
}
.values-list strong { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta { background: var(--mist); text-align: center; }
.cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 12px; }
.cta p { color: var(--muted); max-width: 56ch; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9c0c6; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer a { color: #b9c0c6; display: block; padding: 4px 0; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { color: #9aa1a8; max-width: 34ch; font-size: 0.95rem; }
.social { display: flex; gap: 10px; }
.social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); padding: 0; }
.social a:hover { background: var(--green); }
.social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; padding-top: 20px; font-size: 0.85rem; color: #828a91; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { position: fixed; inset: 64px 0 auto 0; background: var(--ink); flex-direction: column; align-items: stretch; padding: 8px 16px 16px; gap: 2px; display: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 8px; }
  .nav-toggle { display: block; }
  .cards { grid-template-columns: 1fr; }
  .approach-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
