:root {
  --forest-950: #052718;
  --forest-900: #073a25;
  --forest-850: #0a422b;
  --forest-800: #0f5134;
  --forest-700: #19623f;
  --lime-500: #9bd844;
  --lime-600: #7fb31a;
  --lime-100: #eff8dd;
  --ink-950: #0d2d35;
  --ink-900: #123943;
  --ink-700: #425b62;
  --ink-600: #5d7075;
  --ink-500: #5d7075;
  --page: #f7f9f5;
  --surface: #fff;
  --mint: #eef6e8;
  --cream: #f5ecd9;
  --cream-soft: #fbf6eb;
  --line: #dce7da;
  --line-strong: #c9d8c6;
  --cream-line: #dfd0a6;
  --danger: #a33a3a;
  --page-max: 1296px;
  --gutter: clamp(16px, 2.2vw, 32px);
  --radius-xs: 8px;
  --radius-sm: 11px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(15, 49, 38, 0.06);
  --shadow-md: 0 18px 48px rgba(15, 49, 38, 0.11);
  --shadow-lg: 0 30px 78px rgba(4, 38, 23, 0.16);
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--ink-900);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
svg {
  display: block;
}
[hidden] {
  display: none !important;
}
.site-width {
  width: min(calc(100% - (2 * var(--gutter))), var(--page-max));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: #fff;
  color: var(--forest-900);
  border-radius: 8px;
  transform: translateY(-160%);
  box-shadow: var(--shadow-md);
}
.skip-link:focus {
  transform: none;
}

.status-bar {
  height: 30px;
  background: var(--forest-950);
  color: #dcead6;
  font-size: 11px;
}
.status-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.status-bar strong {
  color: #fff;
}
.status-bar a {
  color: #e9f7dd;
  font-weight: 700;
}

.site-header {
  position: absolute;
  z-index: 80;
  left: 0;
  right: 0;
  top: 30px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.site-header.is-stuck {
  position: fixed;
  top: 0;
  background: rgba(5, 39, 24, 0.96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}
.brand {
  min-width: 174px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}
.brand__word {
  display: flex;
  align-items: baseline;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  white-space: nowrap;
}
.brand__word b {
  font-style: normal;
  color: #fff;
}
.brand__word em {
  font-style: normal;
  color: var(--lime-500);
}
.brand__tagline {
  margin-top: 7px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.01em;
}
.cluster-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 45px;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.cluster-badge img {
  max-width: 100%;
  max-height: 31px;
  object-fit: contain;
}
.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.91);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--lime-500);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.primary-nav a:hover,
.primary-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}
.icon-button,
.menu-button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.search-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}
.search-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.search-button svg {
  width: 19px;
  height: 19px;
}
.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  background: var(--lime-500);
  color: var(--forest-950);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(155, 216, 68, 0.18);
}
.header-cta:hover {
  background: #abe858;
  transform: translateY(-1px);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 3px;
}

.mobile-menu {
  position: fixed;
  z-index: 140;
  inset: 0 0 0 auto;
  width: min(380px, 100%);
  padding: 22px;
  background: var(--forest-950);
  color: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-menu__head strong {
  font-size: 26px;
  letter-spacing: -0.05em;
}
.mobile-menu__head strong span {
  color: var(--lime-500);
}
.mobile-menu__head button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}
.mobile-menu nav {
  display: grid;
  padding: 18px 0;
}
.mobile-menu nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-weight: 800;
}
.mobile-menu .button {
  margin-top: 20px;
}
.search-panel {
  position: fixed;
  z-index: 130;
  left: 0;
  right: 0;
  top: 0;
  padding: 28px 0;
  background: rgba(5, 39, 24, 0.98);
  color: #fff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}
.search-panel__inner {
  max-width: 920px;
}
.search-panel label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cfe7bf;
}
.search-panel__inner > div {
  display: grid;
  grid-template-columns: 1fr 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  overflow: hidden;
}
.search-panel input {
  width: 100%;
  height: 56px;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: #fff;
  color: var(--ink-900);
  font-size: 17px;
}
.search-panel button {
  border: 0;
  background: var(--lime-500);
  font-size: 28px;
  cursor: pointer;
}
.search-panel p {
  margin: 10px 0 0;
  color: #bdd2b7;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--forest-900);
  color: #fff;
}
.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__image {
  object-fit: cover;
  object-position: center 54%;
}
.hero__shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 29, 17, 0.88) 0%,
      rgba(4, 33, 20, 0.68) 44%,
      rgba(3, 31, 18, 0.28) 73%,
      rgba(3, 31, 18, 0.46) 100%
    ),
    linear-gradient(180deg, rgba(1, 23, 13, 0.24), rgba(1, 24, 14, 0.44));
}
.hero__inner {
  position: relative;
  min-height: 680px;
  padding-top: 155px;
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  grid-template-rows: 1fr auto;
  gap: 32px 60px;
  align-items: start;
}
.hero__copy {
  max-width: 680px;
  align-self: center;
  padding-bottom: 84px;
}
.hero__copy > .eyebrow {
  display: none;
}
.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.eyebrow--light {
  color: #d8f0c7;
}
.hero__copy h1 {
  margin: 0 0 22px;
  font-size: clamp(54px, 5.5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.067em;
  line-height: 0.9;
  text-wrap: balance;
}
.hero__copy h1 span {
  color: var(--lime-500);
}
.hero__copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 18px;
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 850;
  font-size: 13px;
  cursor: pointer;
  transition:
    transform 0.18s,
    background 0.18s,
    border-color 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button--lime {
  background: var(--lime-500);
  color: var(--forest-950);
  box-shadow: 0 12px 25px rgba(155, 216, 68, 0.15);
}
.button--lime:hover {
  background: #aae751;
}
.button--glass {
  background: rgba(7, 52, 32, 0.34);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(8px);
}
.button--forest {
  background: var(--forest-900);
  color: #fff;
}
.button--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
}
.countdown {
  align-self: center;
  margin-top: 36px;
  padding: 26px 24px 23px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(4, 54, 32, 0.81);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.countdown > span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  color: #e8f4e1;
}
.countdown > span svg {
  width: 17px;
  height: 17px;
  color: var(--lime-500);
}
.countdown > span b {
  color: var(--lime-500);
}
.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 19px 0 16px;
}
.countdown__grid div {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.countdown__grid div:last-child {
  border: 0;
}
.countdown__grid strong {
  display: block;
  color: var(--lime-500);
  font-size: 28px;
  line-height: 1;
}
.countdown__grid small {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.countdown p {
  margin: 0;
  color: #d6e5d2;
  font-size: 12px;
  line-height: 1.55;
  text-align: left;
}
.hero-goals {
  position: relative;
  grid-column: 1/-1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(5, 46, 29, 0.83);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
}
.hero-goals__label {
  position: absolute;
  left: 18px;
  top: -12px;
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lime-500);
  color: var(--forest-950);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.hero-goals > div {
  display: grid;
  grid-template-columns: 36px auto;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 12px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-goals > div:last-child {
  border: 0;
}
.hero-goals svg {
  grid-row: 1/3;
  align-self: center;
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0.88;
}
.hero-goals strong {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
.hero-goals span {
  font-size: 9px;
  line-height: 1.25;
  color: #d2e3ce;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 288px;
  align-items: start;
  gap: clamp(28px, 2.6vw, 34px);
  padding-block: 28px 38px;
}
.editorial-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.editorial-rail {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
}
.section-block {
  min-width: 0;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.section-heading > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-heading p {
  margin: 4px 0 0;
  color: var(--ink-600);
  font-size: 12px;
}
.section-heading > a {
  font-size: 11px;
  font-weight: 850;
  color: var(--forest-700);
  white-space: nowrap;
}
.section-heading--compact {
  margin-bottom: 12px;
}
.section-heading--compact h2 {
  font-size: 22px;
}
.section-marker {
  width: 4px;
  height: 23px;
  border-radius: 5px;
  background: var(--lime-500);
  flex: 0 0 auto;
}
.card-cover-link {
  position: absolute;
  z-index: 4;
  inset: 0;
}
.content-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  background: var(--lime-500);
  color: var(--forest-950);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.content-tag--dark {
  background: var(--forest-900);
  color: #fff;
}
.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 25, 15, 0.02) 20%,
    rgba(2, 29, 17, 0.87) 100%
  );
}

.news-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.9fr);
  gap: 14px;
}
.lead-story,
.small-story {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-900);
  color: #fff;
}
.lead-story {
  min-height: 410px;
  box-shadow: var(--shadow-md);
}
.lead-story > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lead-story__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
}
.lead-story h3 {
  max-width: 550px;
  margin: 11px 0 10px;
  font-size: clamp(23px, 2.5vw, 37px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.lead-story p {
  max-width: 520px;
  margin: 0;
  color: #e4eee0;
  font-size: 12px;
  line-height: 1.52;
}
.story-meta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  font-size: 10px;
  color: #d2e4cd;
}
.story-meta span {
  font-weight: 800;
  color: var(--lime-500);
}
.supporting-stories {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
.small-story {
  min-height: 126px;
}
.small-story > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}
.small-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 42, 25, 0.95),
    rgba(4, 42, 25, 0.56)
  );
}
.small-story > div {
  position: relative;
  z-index: 2;
  padding: 14px;
}
.small-story h3 {
  margin: 8px 0 6px;
  font-size: 14px;
  line-height: 1.22;
  letter-spacing: -0.025em;
}
.small-story time {
  font-size: 9px;
  color: #dbead5;
}
.small-story > div > small {
  color: #dce9d8;
  font-size: 12px;
  line-height: 1.25;
}
.small-story p {
  margin: 5px 0 0;
  font-size: 10px;
  color: #dce8d8;
}
.small-story--text {
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
}
.small-story--text::after {
  display: none;
}

.pathways {
  padding-top: 17px;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 198px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.pathway-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #bfd4b7;
}
.pathway-card > img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}
.pathway-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: -18px 0 8px 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--forest-950);
  position: relative;
  z-index: 2;
}
.pathway-icon svg {
  width: 18px;
  height: 18px;
}
.pathway-card strong,
.pathway-card p {
  margin-inline: 14px;
}
.pathway-card strong {
  font-size: 12px;
}
.pathway-card p {
  margin-top: 5px;
  margin-bottom: 13px;
  color: var(--ink-600);
  font-size: 9px;
  line-height: 1.35;
}
.pathway-card > b {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-size: 18px;
  color: var(--forest-700);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.focus-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-900);
  color: #fff;
}
.focus-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.focus-card > div:last-child {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
}
.focus-card h3 {
  margin: 8px 0 6px;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.focus-card p {
  margin: 0;
  color: #d9e6d5;
  font-size: 9px;
  line-height: 1.4;
}
.disclosure {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-600);
  font-size: 9px;
}
.disclosure svg {
  width: 17px;
  height: 17px;
  color: var(--lime-600);
}
.disclosure a {
  font-weight: 800;
  color: var(--forest-700);
  white-space: nowrap;
}

.atlas-section {
  position: relative;
  min-height: 235px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: 24px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #174e36;
  border-radius: var(--radius-lg);
  background: var(--forest-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.atlas-section__image,
.atlas-section__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.atlas-section__image {
  object-fit: cover;
  opacity: 0.3;
}
.atlas-section__shade {
  background: linear-gradient(
    90deg,
    rgba(4, 42, 25, 0.98) 0%,
    rgba(5, 53, 31, 0.88) 42%,
    rgba(6, 59, 34, 0.58) 100%
  );
}
.atlas-section__copy,
.croatia-map {
  position: relative;
  z-index: 2;
}
.atlas-section h2 {
  margin: 5px 0 10px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.atlas-section p {
  margin: 0 0 18px;
  color: #d9e9d4;
  font-size: 12px;
}
.croatia-map > img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
}
.atlas-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: -5px;
}
.atlas-stats span {
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(3, 38, 22, 0.42);
  text-align: center;
  color: #d9e8d4;
  font-size: 8px;
}
.atlas-stats strong {
  display: block;
  color: var(--lime-500);
  font-size: 17px;
}

.home-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2fr);
  gap: 22px;
  padding: 26px;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(229, 193, 117, 0.22),
      transparent 30%
    ),
    linear-gradient(180deg, #fffdf8, var(--cream-soft));
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.home-intro {
  padding: 7px 10px 8px 2px;
}
.home-intro h2 {
  margin: 7px 0 14px;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.35vw, 36px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.home-intro p {
  margin: 0 0 21px;
  color: #665d4d;
  font-size: 13px;
  line-height: 1.55;
}
.home-intro .button {
  min-height: 43px;
  padding-inline: 16px;
  background: var(--lime-500);
  color: var(--forest-950);
  font-size: 12px;
}
.home-feature {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.35fr);
  min-height: 265px;
  border: 1px solid #e0d3b9;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.home-feature > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}
.home-feature h3 {
  margin: 12px 0 12px;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.home-feature p {
  margin: 0 0 17px;
  color: #6b655a;
  font-size: 13px;
  line-height: 1.5;
}
.home-feature a {
  font-size: 13px;
  font-weight: 850;
  color: var(--forest-700);
}
.home-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-categories {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-category {
  position: relative;
  display: flex;
  min-height: 225px;
  flex-direction: column;
  border: 1px solid #e0d3b9;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.home-category:hover {
  transform: translateY(-3px);
  border-color: #cbbb9a;
  box-shadow: 0 12px 24px rgba(68, 54, 29, 0.08);
}
.home-category img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
}
.home-category span {
  display: block;
  padding: 14px 34px 16px 16px;
}
.home-category strong {
  display: block;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.home-category small {
  display: block;
  margin-top: 7px;
  color: #726a5c;
  font-size: 12px;
  line-height: 1.35;
}
.home-category > b {
  position: absolute;
  right: 15px;
  bottom: 17px;
  color: var(--forest-700);
  font-size: 23px;
  font-weight: 500;
}
.home-safety-note {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(146, 126, 74, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  color: #675f50;
  font-size: 12px;
  line-height: 1.45;
}
.home-safety-note svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex: 0 0 auto;
  color: var(--lime-600);
}

.resources-section {
  padding-top: 17px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.resource-card {
  position: relative;
  min-height: 128px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdf9);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.resource-card img {
  width: 46px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 8px;
}
.resource-card strong {
  display: block;
  font-size: 9px;
  line-height: 1.2;
}
.resource-card span {
  display: block;
  margin-top: 5px;
  color: var(--ink-600);
  font-size: 7.5px;
  line-height: 1.3;
}
.resource-card b {
  position: absolute;
  right: 8px;
  bottom: 6px;
  color: var(--forest-700);
}
.resources-source-note {
  margin: 11px 0 0;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.45;
}
.learning-callout {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #cddfbe;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 92% 12%, rgba(155, 216, 68, 0.2), transparent 34%),
    linear-gradient(135deg, #f5faef, #eaf4df);
}
.learning-callout > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.learning-callout h3 {
  margin: 7px 0 8px;
  color: var(--forest-900);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.learning-callout p {
  max-width: 50ch;
  margin: 0 0 15px;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.5;
}
.learning-callout .button {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 12px;
}
.learning-callout small {
  display: block;
  margin-top: 10px;
  color: var(--ink-600);
  font-size: 12px;
}
.learning-callout > img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: contain;
  padding: 8px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.5);
}

.method-section {
  padding-top: 12px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.method-grid article {
  min-width: 0;
  min-height: 166px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(180deg, #fff, #f9fcf7);
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.method-grid article:hover {
  transform: translateY(-2px);
  border-color: #bfd4b7;
  box-shadow: var(--shadow-sm);
}
.method-grid b {
  display: block;
  color: var(--lime-600);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.method-grid h3 {
  margin: 16px 0 7px;
  color: var(--forest-900);
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.method-grid p {
  margin: 0;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.45;
}

.community-bottom {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 0.9fr;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7faf5, #edf5e9);
  box-shadow: var(--shadow-sm);
}
.conversation-panel,
.partners-panel,
.join-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.conversation-panel h2,
.partners-panel h2,
.join-card h2 {
  margin: 3px 0 8px;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.conversation-panel p {
  margin: 0;
  color: var(--ink-600);
  font-size: 9px;
}
.conversation-avatars {
  display: flex;
  margin: 15px 0 12px;
}
.conversation-avatars span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-right: -7px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-100), #d8e8cf);
  color: var(--forest-800);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}
.conversation-avatars span:last-child {
  background: var(--forest-900);
  color: #fff;
}
.text-link {
  font-size: 9px;
  font-weight: 850;
  color: var(--forest-700);
}
.partner-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.partner-tabs button {
  border: 0;
  border-radius: var(--radius-pill);
  padding: 5px 8px;
  background: #edf3e9;
  color: var(--forest-800);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.partner-tabs button.active {
  background: var(--forest-900);
  color: #fff;
}
.partner-stage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.partner-stage[data-partner-panel="community"] {
  grid-template-columns: repeat(4, 1fr);
}
.partner-stage--all {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partner-stage a {
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.partner-stage a:hover {
  transform: translateY(-2px);
  border-color: #b9d2b0;
  box-shadow: 0 7px 18px rgba(15, 49, 38, 0.08);
}
.partner-stage img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
}
.partner-note {
  margin: 9px 0 0;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.4;
}
.join-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(145deg, var(--forest-900), var(--forest-950));
  color: #fff;
  border-color: var(--forest-800);
}
.join-card p {
  margin: 0 0 15px;
  color: #d3e4cf;
  font-size: 9px;
}
.join-card .button {
  margin-top: auto;
  min-height: 38px;
  font-size: 10px;
}

.rail-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.rail-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
}
.rail-heading .section-marker {
  height: 18px;
  width: 3px;
}
.rail-heading h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.rail-heading small {
  margin-left: auto;
  color: var(--ink-500);
  font-size: 9px;
}
.rail-brief article,
.rail-brief-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.rail-brief-item {
  border-radius: 8px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.rail-brief-item:hover {
  background: #f5f9f2;
  transform: translateX(2px);
}
.rail-brief article img,
.rail-brief-item img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}
.rail-brief-item small {
  display: block;
  margin-top: 1px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}
.rail-brief h3 {
  margin: 3px 0 5px;
  font-size: 11px;
  line-height: 1.25;
}
.rail-brief time {
  font-size: 8px;
  color: var(--ink-500);
}
.rail-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--forest-700);
  font-size: 9px;
  font-weight: 900;
}
.rail-map-image {
  width: 100%;
  height: 165px;
  object-fit: contain;
  padding: 4px 14px 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5f9f1, #edf4e8);
}
.rail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 4px;
}
.rail-stats span {
  text-align: center;
  color: var(--ink-600);
  font-size: 7px;
}
.rail-stats strong {
  display: block;
  color: var(--forest-800);
  font-size: 16px;
}
.opportunities > a:not(.rail-link) {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.date-badge {
  width: 45px;
  min-height: 43px;
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 8px;
  background: var(--forest-900);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}
.opportunities strong {
  display: block;
  font-size: 10px;
  line-height: 1.25;
}
.opportunities small {
  display: block;
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 8px;
}
.event-card {
  position: relative;
}
.event-card > img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 11px;
}
.event-date {
  position: absolute;
  left: 26px;
  top: 157px;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 3px solid #fff;
  border-radius: 9px;
  background: var(--lime-500);
  color: var(--forest-950);
  font-size: 8px;
  text-transform: uppercase;
  font-weight: 900;
}
.event-date strong {
  display: block;
  font-size: 19px;
  line-height: 0.8;
}
.event-card h3 {
  margin: 22px 0 6px;
  font-size: 14px;
  line-height: 1.15;
}
.event-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 9px;
}
.focus-partner > img {
  max-width: 96px;
  max-height: 64px;
  object-fit: contain;
  margin: 6px 0 10px;
}
.focus-partner p {
  margin: 0;
  color: var(--ink-600);
  font-size: 10px;
}
.recommended ol {
  counter-reset: item;
  list-style: none;
  margin: 0;
  padding: 0;
}
.recommended li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 6px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.recommended li::before {
  content: counter(item, decimal-leading-zero);
  color: var(--forest-700);
  font-size: 9px;
  font-weight: 900;
}
.recommended a {
  font-size: 10px;
  line-height: 1.3;
  font-weight: 650;
}
.rail-join {
  background: linear-gradient(150deg, var(--forest-800), var(--forest-950));
  color: #fff;
  border-color: var(--forest-700);
}
.rail-join h2 {
  margin: 5px 0 8px;
  font-size: 23px;
  letter-spacing: -0.04em;
}
.rail-join p {
  margin: 0 0 15px;
  color: #d7e7d2;
  font-size: 11px;
}
.rail-join .button {
  width: 100%;
  margin-top: 7px;
  min-height: 40px;
}

.site-footer {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(155, 216, 68, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, var(--forest-900), var(--forest-950));
  color: #d8e9d3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.85fr;
  gap: 38px;
  padding: 34px 0 28px;
}
.brand__word--footer {
  font-size: 34px;
  color: #fff;
}
.footer-brand p,
.footer-contact p,
.footer-impressum p {
  margin: 12px 0 0;
  color: #bdd0b8;
  font-size: 11px;
  line-height: 1.55;
}
.footer-grid h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid strong {
  color: #fff;
}
.footer-grid a {
  color: #dff4d5;
  font-weight: 650;
}
.socials {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}
.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 10px;
}
.footer-impressum {
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}
.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 10px;
  color: #aac1a5;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom nav a {
  color: #d3e5cf;
}

.join-drawer-backdrop {
  position: fixed;
  z-index: 180;
  inset: 0;
  background: rgba(3, 24, 14, 0.62);
  backdrop-filter: blur(4px);
}
.join-drawer {
  position: fixed;
  z-index: 190;
  inset: 0 0 0 auto;
  width: min(510px, 100%);
  overflow: auto;
  padding: 38px;
  background: #fff;
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.24);
}
.drawer-close {
  position: absolute;
  right: 17px;
  top: 14px;
  border: 0;
  background: transparent;
  color: var(--ink-900);
  font-size: 33px;
  cursor: pointer;
}
.join-drawer h2 {
  margin: 3px 0 9px;
  font-size: 32px;
  letter-spacing: -0.05em;
}
.join-drawer > p {
  margin: 0 0 20px;
  color: var(--ink-600);
}
.intent-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.intent-picker button {
  min-height: 54px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8faf6;
  text-align: left;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}
.intent-picker button.active {
  border-color: var(--lime-600);
  background: var(--lime-100);
  color: var(--forest-900);
  box-shadow: 0 0 0 2px rgba(127, 179, 26, 0.12);
}
.join-form {
  display: grid;
  gap: 13px;
}
.join-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-900);
  font-size: 11px;
  font-weight: 800;
}
.join-form label > span {
  color: var(--ink-500);
  font-weight: 500;
}
.join-form input,
.join-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink-900);
  outline: 0;
}
.join-form input:focus,
.join-form textarea:focus {
  border-color: var(--lime-600);
  box-shadow: 0 0 0 3px rgba(127, 179, 26, 0.12);
}
.join-form textarea {
  resize: vertical;
}
.consent {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
}
.consent input {
  width: 16px;
  height: 16px;
  padding: 0;
}
.consent span {
  font-size: 10px;
  line-height: 1.4;
}
.honeypot {
  position: absolute !important;
  left: -9999px;
}
.form-status {
  margin: 0;
  font-size: 11px;
}
.form-status.success {
  color: var(--forest-700);
}
.form-status.error {
  color: var(--danger);
}

.cms-floating-toggle {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 37px;
  padding: 0 13px;
  border: 1px solid rgba(155, 216, 68, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(5, 39, 24, 0.9);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.cms-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8da19a;
}
.cms-authed .cms-dot {
  background: var(--lime-500);
}
.cms-on .cms-floating-toggle {
  background: var(--lime-500);
  color: var(--forest-950);
}
.cms-login-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 25, 15, 0.72);
  backdrop-filter: blur(7px);
}
.cms-login-card {
  position: relative;
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.cms-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.cms-kicker {
  color: var(--forest-700);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cms-login-card h2 {
  margin: 5px 0 8px;
}
.cms-login-card p {
  color: var(--ink-600);
  font-size: 12px;
}
.cms-login-card label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
}
.cms-login-card input {
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  padding: 0 11px;
}
.cms-login-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.cms-login-actions button,
.cms-actions button {
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--forest-900);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.cms-login-actions span {
  color: var(--danger);
  font-size: 10px;
}
.cms-drawer {
  position: fixed;
  z-index: 280;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(440px, 100%);
  overflow: auto;
  padding: 18px;
  background: #f7faf5;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
}
.cms-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
}
.cms-drawer-head span {
  display: block;
  color: var(--forest-700);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.cms-drawer-head strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  word-break: break-all;
}
.cms-drawer-head button {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.cms-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}
.cms-tabs button {
  border: 0;
  border-radius: 7px;
  padding: 7px 11px;
  background: #e8efe5;
  font-size: 10px;
  cursor: pointer;
}
.cms-tabs button.active {
  background: var(--forest-900);
  color: #fff;
}
.cms-tab-panel {
  display: none;
}
.cms-tab-panel.active {
  display: block;
}
.cms-tab-panel label {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 800;
}
.cms-tab-panel input,
.cms-tab-panel textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 9px;
  background: #fff;
  font:
    11px/1.45 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.cms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cms-media-preview {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px dashed var(--line-strong);
  border-radius: 11px;
  background: #eaf0e7 center/cover no-repeat;
  overflow: hidden;
}
.cms-media-preview video {
  width: 100%;
  max-height: 260px;
}
.cms-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.cms-upload-zone {
  display: grid;
  place-items: center;
  min-height: 88px;
  margin: 8px 0;
  border: 1px dashed var(--lime-600);
  border-radius: 10px;
  background: var(--lime-100);
  font-size: 10px;
  cursor: pointer;
}
.cms-upload-zone span {
  font-size: 9px;
  color: var(--ink-600);
}
.cms-upload-zone.drag {
  background: #e1f4c5;
}
.cms-tab-panel pre {
  overflow: auto;
  max-height: 70vh;
  padding: 12px;
  border-radius: 8px;
  background: #0d2d35;
  color: #dff1d8;
  font-size: 9px;
}
.cms-status {
  position: sticky;
  bottom: 0;
  margin-top: 14px;
  padding: 9px;
  border-radius: 8px;
  background: #e8efe5;
  font-size: 10px;
}
.cms-status[data-kind="error"] {
  background: #feeaea;
  color: var(--danger);
}
.cms-pencil {
  position: absolute;
  z-index: 240;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--forest-950);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.cms-target-active {
  outline: 3px solid var(--lime-500) !important;
  outline-offset: 2px;
}

.search-hidden {
  display: none !important;
}

@media (max-width: 1260px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto auto;
  }
  .primary-nav a {
    padding-inline: 7px;
    font-size: 11px;
  }
  .hero__inner {
    gap: 30px;
  }
  .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pathway-card {
    min-height: 188px;
  }
  .pathway-card > img {
    height: 95px;
  }
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .resource-card {
    min-height: 112px;
  }
  .community-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .join-card {
    grid-column: 1/-1;
    min-height: 160px;
  }
  .join-card .button {
    margin-top: 8px;
  }
}

@media (max-width: 1080px) {
  .primary-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .header-inner {
    grid-template-columns: auto auto 1fr auto auto;
  }
  .cluster-badge {
    width: 118px;
  }
  .hero {
    min-height: 720px;
  }
  .hero__inner {
    min-height: 720px;
    grid-template-columns: 1fr 330px;
  }
  .hero__copy h1 {
    font-size: 70px;
  }
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .editorial-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rail-join {
    grid-column: 1/-1;
  }
  .news-mosaic {
    grid-template-columns: 1fr;
  }
  .supporting-stories {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .small-story {
    min-height: 150px;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .focus-card {
    min-height: 210px;
  }
  .atlas-section {
    grid-template-columns: 1fr;
  }
  .croatia-map {
    max-width: 600px;
    margin-inline: auto;
  }
  .home-section {
    grid-template-columns: minmax(190px, 0.7fr) minmax(0, 2fr);
  }
  .home-feature {
    grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1.15fr);
  }
  .home-feature img {
    height: 100%;
  }
  .home-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }
  .status-bar {
    height: auto;
    min-height: 30px;
  }
  .status-bar__inner {
    padding-block: 6px;
  }
  .status-bar a {
    display: none;
  }
  .site-header {
    top: 30px;
  }
  .brand__word {
    font-size: 27px;
  }
  .brand__tagline {
    display: none;
  }
  .cluster-badge {
    width: 105px;
    height: 39px;
  }
  .hero {
    min-height: auto;
  }
  .hero__inner {
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 28px;
    grid-template-columns: 1fr;
  }
  .hero__copy {
    padding-bottom: 0;
  }
  .countdown {
    margin: 0;
    max-width: 500px;
  }
  .hero-goals {
    grid-template-columns: 1fr 1fr;
  }
  .hero-goals > div:nth-child(2) {
    border-right: 0;
  }
  .hero-goals > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .editorial-layout {
    grid-template-columns: 1fr;
  }
  .editorial-rail {
    grid-template-columns: 1fr 1fr;
  }
  .rail-join {
    grid-column: 1/-1;
  }
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-impressum {
    padding-left: 0;
    border-left: 0;
  }
  .footer-contact {
    padding-left: 10px;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 16px;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .cluster-badge {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .brand__word {
    font-size: 29px;
  }
  .site-header {
    top: 31px;
  }
  .hero__inner {
    padding-top: 132px;
  }
  .hero__copy h1 {
    font-size: clamp(48px, 15vw, 64px);
  }
  .hero__copy > p {
    font-size: 16px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .button {
    width: 100%;
  }
  .countdown {
    padding: 20px 14px;
  }
  .countdown__grid strong {
    font-size: 24px;
  }
  .hero-goals > div {
    padding: 14px;
  }
  .hero-goals strong {
    font-size: 17px;
  }
  .section-block {
    padding: 0;
    border-radius: 0;
  }
  .atlas-section,
  .home-section,
  .community-bottom {
    padding: 15px;
    border-radius: 17px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .section-heading > a {
    display: none;
  }
  .news-mosaic {
    display: block;
  }
  .lead-story {
    min-height: 430px;
  }
  .supporting-stories {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  .small-story {
    min-height: 145px;
  }
  .pathway-grid {
    grid-template-columns: 1fr 1fr;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .focus-card {
    min-height: 230px;
  }
  .disclosure {
    grid-template-columns: auto 1fr;
  }
  .disclosure a {
    grid-column: 2;
  }
  .atlas-section {
    min-height: 470px;
    display: block;
    padding-top: 22px;
  }
  .croatia-map {
    margin-top: 22px;
  }
  .atlas-stats {
    margin-top: 5px;
  }
  .home-section {
    display: block;
  }
  .home-intro {
    margin-bottom: 15px;
  }
  .home-feature {
    display: flex;
    flex-direction: column;
  }
  .home-feature img {
    order: -1;
    height: 240px;
  }
  .home-categories {
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
  }
  .home-safety-note {
    grid-column: auto;
    margin-top: 10px;
  }
  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }
  .resource-card {
    min-height: 125px;
  }
  .learning-callout {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 17px;
  }
  .learning-callout > img {
    min-height: 170px;
    max-height: 240px;
  }
  .community-bottom {
    grid-template-columns: 1fr;
  }
  .join-card {
    grid-column: auto;
  }
  .editorial-rail {
    grid-template-columns: 1fr;
  }
  .rail-join {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-impressum {
    padding: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
    border-right: 0;
  }
  .footer-contact {
    padding-left: 0;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }
  .footer-bottom nav {
    gap: 12px;
  }
  .join-drawer {
    padding: 30px 20px;
  }
  .intent-picker {
    grid-template-columns: 1fr;
  }
  .cms-floating-toggle {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 430px) {
  .status-bar {
    font-size: 9px;
  }
  .status-bar__inner {
    justify-content: center;
  }
  .menu-button {
    width: 38px;
    height: 38px;
  }
  .hero__inner {
    padding-top: 124px;
  }
  .hero__copy h1 {
    font-size: 46px;
  }
  .hero-goals span {
    font-size: 8px;
  }
  .hero-goals > div {
    grid-template-columns: 27px auto;
    column-gap: 8px;
  }
  .hero-goals svg {
    width: 22px;
    height: 22px;
  }
  .pathway-grid {
    grid-template-columns: 1fr;
  }
  .pathway-card {
    min-height: 188px;
  }
  .pathway-card > img {
    height: 95px;
  }
  .home-categories {
    grid-template-columns: 1fr;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .resource-card {
    min-height: 100px;
  }
  .conversation-panel,
  .partners-panel,
  .join-card {
    padding: 12px;
  }
  .partner-stage[data-partner-panel="community"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-stage--all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Production legibility pass: compact editorial density without micro-text. */
:root {
  --ink-500: #53666b;
  --ink-600: #50656b;
}
.status-bar,
.primary-nav a,
.header-cta {
  font-size: 13px;
}
.brand__tagline,
.countdown__grid small,
.hero-goals__label,
.content-tag,
.atlas-stats span {
  font-size: 10px;
}
.eyebrow,
.countdown > span,
.countdown p,
.hero-goals span,
.story-meta,
.small-story p,
.small-story time,
.pathway-card p,
.focus-card p,
.disclosure,
.home-intro .button,
.home-feature a,
.resource-card strong,
.conversation-panel p,
.text-link,
.partner-tabs button,
.join-card p,
.join-card .button,
.rail-heading small,
.rail-brief time,
.rail-link,
.rail-stats span,
.opportunities strong,
.opportunities small,
.event-card p,
.focus-partner p,
.recommended a,
.recommended li::before,
.footer-bottom,
.intent-picker button,
.join-form label,
.consent span,
.form-status {
  font-size: 12px;
}
.section-heading p,
.lead-story p,
.pathway-card strong,
.home-intro p,
.home-feature p,
.rail-brief h3,
.rail-join p,
.footer-brand p,
.footer-contact p,
.footer-impressum p {
  font-size: 13px;
}
.section-heading > a,
.footer-grid h2 {
  font-size: 14px;
}
.resource-card span {
  font-size: 11px;
}
.home-category strong {
  font-size: 12px;
}
.home-category small {
  font-size: 11px;
}
.resource-card {
  min-height: 118px;
}
.date-badge,
.event-date {
  font-size: 11px;
}
.event-date--pending {
  padding: 4px;
  width: 58px;
  font-size: 10px;
  line-height: 1.05;
  text-align: center;
}
.cms-floating-toggle,
.cms-kicker,
.cms-login-actions button,
.cms-actions button,
.cms-login-actions span,
.cms-tabs button,
.cms-upload-zone,
.cms-status {
  font-size: 12px;
}
.cms-login-card p,
.cms-login-card label,
.cms-drawer-head strong,
.cms-tab-panel input,
.cms-tab-panel textarea {
  font-size: 13px;
}
.cms-drawer-head span,
.cms-tab-panel label,
.cms-upload-zone span,
.cms-tab-panel pre {
  font-size: 11px;
}
:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--lime-600);
  outline-offset: 3px;
}

@media (max-width: 430px) {
  .status-bar {
    font-size: 11px;
  }
  .hero-goals span {
    font-size: 11px;
  }
}
