:root {
  /* CHANGE THIS ONE LINE TO UPDATE THE THEME COLOR SITE-WIDE */
  --theme-color: #459C07;

  --theme-color-dark: color-mix(in srgb, var(--theme-color) 82%, black);
  --theme-color-soft: color-mix(in srgb, var(--theme-color) 14%, white);
  --badge-off: #b8b1a6;
  --verified-blue: #1d9bf0;
  --verified-orange: #FFA500;
  --verified-red: #FF0000;
  --badge-ring: rgba(73, 52, 18, 0.10);
  --bg: #FCFCFC;
  --bg-alt:#FCFCFC;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: #fffdf9;
  --border: rgba(73, 52, 18, 0.12);
  --text: #20170c;
  --muted: #6c5a42;
  --heading: #181108;
  --shadow: 0 18px 45px rgba(49, 31, 6, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "JetBrains Mono", monospace ; /*--,Georgia, "Times New Roman", serif;*/
  color: var(--text);
  background:#ffffff
    /*radial-gradient(circle at top left, color-mix(in srgb, var(--theme-color) 10%, transparent), transparent 30%),
    linear-gradient(180deg, #fcfaf6 0%, var(--bg) 45%, var(--bg-alt) 100%);*/
    /*bg: #ffffff;
    bg-soft: #f8f8f8;*/
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max-width)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(252, 250, 246, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner, .footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.header-inner { padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .88rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  color: white; font-family: Inter, Arial, sans-serif; font-weight: 700;
  background: linear-gradient(135deg, var(--theme-color), var(--theme-color-dark));
  box-shadow: var(--shadow);
}
.nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.nav a { color: var(--muted); font-family: Inter, Arial, sans-serif; font-size: .95rem; }
.nav a:hover, .nav a.active { color: var(--theme-color-dark); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; padding: .45rem .85rem;
  border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.6);
  color: var(--muted); font-family: Inter, Arial, sans-serif; font-size: .84rem; text-transform: uppercase; letter-spacing: .08em;
}
h1, h2, h3 { color: var(--heading); font-weight: 600; }
h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -.04em; margin: .9rem 0 1rem; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); letter-spacing: -.03em; }
h3 { font-size: 1.2rem; }
p, li { color: var(--muted); line-height: 1.8; font-size: 1rem; }
.hero { padding: 5.4rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: 1.4rem; align-items: center; }
.lead { max-width: 64ch; font-size: 1.07rem; }
.button-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.7rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .9rem 1.2rem;
  border-radius: 999px; font-family: Inter, Arial, sans-serif; font-weight: 600; transition: .2s ease;
}
.button-primary {
  color: white; background: linear-gradient(135deg, var(--theme-color), var(--theme-color-dark)); box-shadow: var(--shadow);
}
.button-secondary {
  border: 1px solid var(--border); background: rgba(255,255,255,.7); color: var(--heading);
}
.button:hover { transform: translateY(-1px); }
.card, .panel, .post-card, .service-card, .contact-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section { padding: 1rem 0 4.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1.35fr .85fr; gap: 1rem; }
.link-card, .service-card { padding: 1.4rem; }
.link-card:hover, .service-card:hover, .post-card:hover { transform: translateY(-2px); }
.link-card, .service-card, .post-card { transition: .2s ease; }
.icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 1rem;
  background: var(--theme-color-soft); color: var(--theme-color-dark); font-family: Inter, Arial, sans-serif; font-weight: 700;
}
.link-meta, .read-more { color: var(--theme-color-dark); font-family: Inter, Arial, sans-serif; font-weight: 600; }
.link-card { position: relative; }
.badge-mark {
  position: absolute; top: 1rem; right: 1rem;
  width: 28px; height: 28px; border-radius: 999px;
  display: grid; place-items: center;
  font-family: Inter, Arial, sans-serif; font-size: .82rem; font-weight: 700;
  background: color-mix(in srgb, var(--badge-off) 14%, white);
  color: var(--badge-off); border: 1px solid var(--badge-ring);
  box-shadow: 0 8px 20px rgba(49, 31, 6, 0.06);
}

.link-card.is-verifiedo .badge-mark {
  width: 30px; height: 30px;
  border: none;
  border-radius: 0;
  background: var(--verified-orange);
  color: white;
  clip-path: polygon(
    50% 0%,
    61% 7%,
    74% 4%,
    82% 15%,
    95% 18%,
    96% 31%,
    100% 50%,
    96% 69%,
    95% 82%,
    82% 85%,
    74% 96%,
    61% 93%,
    50% 100%,
    39% 93%,
    26% 96%,
    18% 85%,
    5% 82%,
    4% 69%,
    0% 50%,
    4% 31%,
    5% 18%,
    18% 15%,
    26% 4%,
    39% 7%
  );
  box-shadow: 0 8px 18px rgba(255, 155, 0, 0.22);
}

.link-card.is-verifiedr .badge-mark {
  width: 30px; height: 30px;
  border: none;
  border-radius: 0;
  background: var(--verified-red);
  color: white;
  clip-path: polygon(
    50% 0%,
    61% 7%,
    74% 4%,
    82% 15%,
    95% 18%,
    96% 31%,
    100% 50%,
    96% 69%,
    95% 82%,
    82% 85%,
    74% 96%,
    61% 93%,
    50% 100%,
    39% 93%,
    26% 96%,
    18% 85%,
    5% 82%,
    4% 69%,
    0% 50%,
    4% 31%,
    5% 18%,
    18% 15%,
    26% 4%,
    39% 7%
  );
  box-shadow: 0 8px 18px rgba(255, 155, 0, 0.22);
}

.link-card.is-verified .badge-mark {
  width: 30px; height: 30px;
  border: none;
  border-radius: 0;
  background: var(--verified-blue);
  color: white;
  clip-path: polygon(
    50% 0%,
    61% 7%,
    74% 4%,
    82% 15%,
    95% 18%,
    96% 31%,
    100% 50%,
    96% 69%,
    95% 82%,
    82% 85%,
    74% 96%,
    61% 93%,
    50% 100%,
    39% 93%,
    26% 96%,
    18% 85%,
    5% 82%,
    4% 69%,
    0% 50%,
    4% 31%,
    5% 18%,
    18% 15%,
    26% 4%,
    39% 7%
  );
  box-shadow: 0 8px 18px rgba(29, 155, 240, 0.22);
}
.feature-box { padding: 1.4rem; }
.feature-list { display: grid; gap: .8rem; }
.feature-link {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1rem 1.05rem;
  border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255,255,255,.65);
}
.feature-link:hover { border-color: color-mix(in srgb, var(--theme-color) 30%, var(--border)); }
.content-wrap { padding: 1.8rem 0 4rem; }
.content-grid { display: grid; grid-template-columns: 1.4fr .85fr; gap: 1rem; }
.panel { padding: 1.6rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.post-list { display: grid; gap: 1.2rem; }
.post-card { display: grid; grid-template-columns: 320px 1fr; overflow: hidden; }
.post-card img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.post-body { padding: 1.4rem 1.5rem 1.4rem 0; }
.meta { font-family: Inter, Arial, sans-serif; color: var(--muted); font-size: .9rem; letter-spacing: .03em; }
.article-shell { max-width: 920px; }
.featured-image { overflow: hidden; border-radius: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); margin: 1.5rem 0 2rem; }
.article-body { padding: 2rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.contact-card { padding: 1.4rem; }
.site-footer { border-top: 1px solid var(--border); padding: 1.6rem 0 2.6rem; margin-top: 1rem; }
.site-footer p, .site-footer a { font-family: Inter, Arial, sans-serif; font-size: .94rem; }
.small-note { font-family: Inter, Arial, sans-serif; font-size: .92rem; color: var(--muted); }
@media (max-width: 960px) {
  .hero-grid, .grid-2, .content-grid, .services-grid, .contact-grid, .grid-3, .post-card { grid-template-columns: 1fr; }
  .post-body { padding: 0 1.2rem 1.2rem; }
}
