@charset "UTF-8";
/* =========================================================
   Tokens / Variablen
========================================================= */
:root {
  --color-text: #111111;
  --color-muted: #666666;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f5f5;
  --color-border: #e5e5e5;
  --color-accent: #ffcc00;
  --color-accent-soft: #ffe27a;
  --color-accent-strong: #e6b800;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --container: 1100px;
  --radius: 14px;
}

/* =========================================================
   Base
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body.site {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.page-content > section {
  padding-block: var(--space-2xl);
}

/* =========================================================
   Layout
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 20;
}
.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 72px;
}
.site-header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border: 2px solid var(--color-text);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.site-nav-toggle__icon {
  display: grid;
  gap: 5px;
  width: 24px;
}
.site-nav-toggle__icon span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-nav-toggle[aria-expanded=true] .site-nav-toggle__icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-nav-toggle[aria-expanded=true] .site-nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}
.site-nav-toggle[aria-expanded=true] .site-nav-toggle__icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav ul, .site-nav__list,
.footer-nav ul,
.footer-nav__list {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}
.site-nav li,
.footer-nav li {
  margin: 0;
  padding: 0;
}
.site-nav__link,
.footer-nav__link {
  position: relative;
  display: inline-flex;
  color: var(--color-text);
  font-weight: 600;
}
.site-nav__link:hover,
.footer-nav__link:hover {
  color: var(--color-accent);
}

.site-nav a {
  position: relative;
  display: inline-flex;
}
.site-nav .active > a,
.site-nav .current > a,
.site-nav .is-active > a,
.site-nav .active a,
.site-nav .current a,
.site-nav .is-active a,
.site-nav a.active,
.site-nav a.current,
.site-nav a.is-active,
.site-nav a[aria-current=page] {
  color: var(--color-text);
  font-weight: 800;
}
.site-nav .active > a::after,
.site-nav .current > a::after,
.site-nav .is-active > a::after,
.site-nav .active a::after,
.site-nav .current a::after,
.site-nav .is-active a::after,
.site-nav a.active::after,
.site-nav a.current::after,
.site-nav a.is-active::after,
.site-nav a[aria-current=page]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
}

.site-footer {
  padding-block: var(--space-xl);
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}
.site-footer__claim {
  margin-top: 0;
  color: var(--color-muted);
}
.site-footer__meta {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* =========================================================
   Buttons
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 700;
  border: 1px solid var(--color-accent);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.button:hover {
  background: var(--color-accent-strong);
  border-color: var(--color-accent-strong);
}
.button--small {
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}
.button--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.button--secondary:hover {
  background: var(--color-text);
  color: #ffffff;
  border-color: var(--color-text);
}

/* =========================================================
   Generic Section Helpers
========================================================= */
.section__header {
  max-width: 760px;
  margin-bottom: var(--space-xl);
}
.section__eyebrow {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.section__headline {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.15;
}
.section__intro {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin: 0;
}

.section--light {
  background: var(--color-bg-soft);
}

.brick-help {
  position: relative;
  z-index: 5;
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid #b8d7ff;
  border-radius: 6px;
  background: #eef6ff;
  color: #17324d;
  box-shadow: 0 4px 16px rgba(23, 50, 77, 0.08);
}

.brick-help .brick-help {
  margin-top: var(--space-sm);
  margin-bottom: 0;
  background: #fff8dc;
  border-color: #ead27a;
  color: #3d3412;
}

/* =========================================================
   Theme System
========================================================= */
.theme-default,
.theme-light,
.theme-muted,
.theme-accent,
.theme-accent-soft,
.cta--theme-muted {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.theme-default,
.hero--theme-default,
.rich-text--theme-default,
.image-text--theme-default,
.icon-list--theme-default,
.card-grid--theme-default,
.cta--theme-default {
  background: transparent;
  color: var(--color-text);
}

.theme-light,
.hero--theme-light,
.rich-text--theme-light,
.image-text--theme-light,
.icon-list--theme-light,
.card-grid--theme-light,
.cta--theme-light {
  background: #fafafa;
  color: var(--color-text);
}

.theme-muted,
.hero--theme-muted,
.rich-text--theme-muted,
.image-text--theme-muted,
.icon-list--theme-muted,
.card-grid--theme-muted,
.cta--theme-muted {
  background: var(--color-bg-soft);
  color: var(--color-text);
}

.theme-accent,
.hero--theme-accent,
.rich-text--theme-accent,
.image-text--theme-accent,
.icon-list--theme-accent,
.card-grid--theme-accent,
.cta--theme-accent {
  background: var(--color-accent);
  color: var(--color-text);
}

.theme-accent-soft,
.hero--theme-accent-soft,
.rich-text--theme-accent-soft,
.image-text--theme-accent-soft,
.icon-list--theme-accent-soft,
.card-grid--theme-accent-soft,
.cta--theme-accent-soft {
  background: var(--color-accent-soft);
  color: var(--color-text);
}

.theme-light .section__intro,
.theme-light .hero__text,
.theme-light .rich-text__text,
.theme-light .image-text__text,
.theme-light .image-text__caption,
.theme-light .card__text,
.theme-light .icon-list__item-text,
.theme-light .cta__text,
.theme-light .cta__secondary,
.theme-muted .section__intro,
.theme-muted .hero__text,
.theme-muted .rich-text__text,
.theme-muted .image-text__text,
.theme-muted .image-text__caption,
.theme-muted .card__text,
.theme-muted .icon-list__item-text,
.theme-muted .cta__text,
.theme-muted .cta__secondary,
.theme-accent .section__intro,
.theme-accent .hero__text,
.theme-accent .rich-text__text,
.theme-accent .image-text__text,
.theme-accent .image-text__caption,
.theme-accent .card__text,
.theme-accent .icon-list__item-text,
.theme-accent .cta__text,
.theme-accent .cta__secondary,
.theme-accent-soft .section__intro,
.theme-accent-soft .hero__text,
.theme-accent-soft .rich-text__text,
.theme-accent-soft .image-text__text,
.theme-accent-soft .image-text__caption,
.theme-accent-soft .card__text,
.theme-accent-soft .icon-list__item-text,
.theme-accent-soft .cta__text,
.theme-accent-soft .cta__secondary {
  color: var(--color-muted);
}

.theme-light .card,
.theme-light .icon-list__item,
.theme-light .cta__box {
  background: #ffffff;
}

.theme-muted .card,
.theme-muted .icon-list__item,
.theme-muted .cta__box {
  background: #ffffff;
  border-color: #dcdcdc;
}

.theme-accent .card,
.theme-accent .icon-list__item,
.theme-accent .cta__box,
.theme-accent-soft .card,
.theme-accent-soft .icon-list__item,
.theme-accent-soft .cta__box {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 17, 17, 0.12);
}
.theme-accent .section__eyebrow,
.theme-accent .card__tag,
.theme-accent .card__link,
.theme-accent-soft .section__eyebrow,
.theme-accent-soft .card__tag,
.theme-accent-soft .card__link {
  color: var(--color-text);
}
.theme-accent .button,
.theme-accent-soft .button {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #ffffff;
}
.theme-accent .button:hover,
.theme-accent-soft .button:hover {
  background: #333333;
  border-color: #333333;
}
.theme-accent .button--secondary,
.theme-accent-soft .button--secondary {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
.theme-accent .button--secondary:hover,
.theme-accent-soft .button--secondary:hover {
  background: var(--color-text);
  color: #ffffff;
}

.theme-accent-soft .card,
.theme-accent-soft .icon-list__item,
.theme-accent-soft .cta__box {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 17, 17, 0.12);
}
.theme-accent-soft .section__eyebrow,
.theme-accent-soft .card__tag,
.theme-accent-soft .card__link {
  color: var(--color-text);
}

/* =========================================================
   Special Effects
========================================================= */
.special-effect-frame {
  background: var(--special-effect-frame-bg, var(--color-bg));
}
.special-effect-frame--page, .special-effect-frame--white {
  --special-effect-frame-bg: var(--color-bg);
}
.special-effect-frame--light {
  --special-effect-frame-bg: #fafafa;
}
.special-effect-frame--muted {
  --special-effect-frame-bg: var(--color-bg-soft);
}
.special-effect-frame--accent {
  --special-effect-frame-bg: var(--color-accent);
}
.special-effect-frame--accent-soft {
  --special-effect-frame-bg: var(--color-accent-soft);
}
.special-effect-frame--dark {
  --special-effect-frame-bg: var(--color-text);
}

.special-effect {
  --special-effect-top-depth: 0px;
  --special-effect-bottom-depth: 0px;
  --special-effect-top-left: 0px;
  --special-effect-top-right: 0px;
  --special-effect-bottom-left: 0px;
  --special-effect-bottom-right: 0px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 var(--special-effect-top-left), 100% var(--special-effect-top-right), 100% calc(100% - var(--special-effect-bottom-right)), 0 calc(100% - var(--special-effect-bottom-left)));
}

.special-effect--none {
  clip-path: none;
}

.special-effect.special-effect--has-top {
  --special-effect-top-depth: clamp(0px, calc(var(--special-effect-top-angle, 2) * 1.75vw), 180px);
  padding-top: calc(3rem + var(--special-effect-top-depth));
}

.special-effect.special-effect--has-bottom {
  --special-effect-bottom-depth: clamp(0px, calc(var(--special-effect-bottom-angle, 2) * 1.75vw), 180px);
  padding-bottom: calc(2rem + var(--special-effect-bottom-depth));
}

.special-effect--top-rise {
  --special-effect-top-left: var(--special-effect-top-depth);
}
.special-effect--top-fall {
  --special-effect-top-right: var(--special-effect-top-depth);
}
.special-effect--bottom-rise {
  --special-effect-bottom-right: var(--special-effect-bottom-depth);
}
.special-effect--bottom-fall {
  --special-effect-bottom-left: var(--special-effect-bottom-depth);
}

.special-effect--top-angle-0 {
  --special-effect-top-angle: 0;
}

.special-effect--bottom-angle-0 {
  --special-effect-bottom-angle: 0;
}

.special-effect--top-angle-1 {
  --special-effect-top-angle: 1;
}

.special-effect--bottom-angle-1 {
  --special-effect-bottom-angle: 1;
}

.special-effect--top-angle-2 {
  --special-effect-top-angle: 2;
}

.special-effect--bottom-angle-2 {
  --special-effect-bottom-angle: 2;
}

.special-effect--top-angle-3 {
  --special-effect-top-angle: 3;
}

.special-effect--bottom-angle-3 {
  --special-effect-bottom-angle: 3;
}

.special-effect--top-angle-4 {
  --special-effect-top-angle: 4;
}

.special-effect--bottom-angle-4 {
  --special-effect-bottom-angle: 4;
}

.special-effect--top-angle-5 {
  --special-effect-top-angle: 5;
}

.special-effect--bottom-angle-5 {
  --special-effect-bottom-angle: 5;
}

.special-effect--top-angle-6 {
  --special-effect-top-angle: 6;
}

.special-effect--bottom-angle-6 {
  --special-effect-bottom-angle: 6;
}

.special-effect--top-angle-7 {
  --special-effect-top-angle: 7;
}

.special-effect--bottom-angle-7 {
  --special-effect-bottom-angle: 7;
}

.special-effect--top-angle-8 {
  --special-effect-top-angle: 8;
}

.special-effect--bottom-angle-8 {
  --special-effect-bottom-angle: 8;
}

.special-effect--top-angle-9 {
  --special-effect-top-angle: 9;
}

.special-effect--bottom-angle-9 {
  --special-effect-bottom-angle: 9;
}

.special-effect--top-angle-10 {
  --special-effect-top-angle: 10;
}

.special-effect--bottom-angle-10 {
  --special-effect-bottom-angle: 10;
}

.special-effect--top-angle-11 {
  --special-effect-top-angle: 11;
}

.special-effect--bottom-angle-11 {
  --special-effect-bottom-angle: 11;
}

.special-effect--top-angle-12 {
  --special-effect-top-angle: 12;
}

.special-effect--bottom-angle-12 {
  --special-effect-bottom-angle: 12;
}

/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
.hero--theme-default {
  background: #f3f3f3;
}
.hero__grid {
  display: grid;
  gap: var(--space-xl);
}
.hero__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.hero--text-only .hero__body, .hero--text-wide .hero__body, .hero--centered .hero__body {
  grid-template-columns: 1fr;
}
.hero--text-only .hero__content, .hero--centered .hero__content {
  max-width: 720px;
}
.hero.hero--text-wide .hero__content {
  max-width: 1100px;
}
.hero.hero--text-wide .section__headline, .hero.hero--text-image .section__headline {
  max-width: 24ch;
}
.hero.hero--text-wide .section__intro, .hero.hero--text-wide .hero__text {
  max-width: 64rem;
}
.hero--centered .hero__content, .hero--centered .hero__copy {
  margin-inline: auto;
  text-align: center;
}
.hero__copy {
  max-width: 42rem;
}
.hero .section__headline {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 1rem;
}
.hero .section__intro {
  margin-top: 1.25rem;
  font-size: 1.35rem;
  line-height: 1.35;
  color: #2b2b2b;
  max-width: 28ch;
}
.hero .hero__copy .section__intro {
  margin-top: 0;
}
.hero__text {
  margin-top: var(--space-lg);
  color: var(--color-muted);
  font-size: 1.05rem;
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}
.hero__actions--edit {
  display: grid;
  gap: var(--space-sm);
}
.hero__media img {
  border-radius: var(--radius);
}

/* =========================================================
   Rich Text
========================================================= */
.rich-text__inner {
  max-width: 760px;
}
.rich-text--center .rich-text__inner {
  margin-inline: auto;
  text-align: center;
}
.rich-text--wide .rich-text__inner {
  max-width: 960px;
}
.rich-text--has-image .rich-text__inner {
  max-width: var(--container);
}
.rich-text__layout {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
.rich-text--has-image .rich-text__layout, .rich-text__layout:has(.rich-text__media) {
  grid-template-columns: 1.2fr 1fr;
}
.rich-text--image-left .rich-text__media {
  order: -1;
}
.rich-text__media {
  width: 100%;
  justify-self: end;
}
.rich-text--wide .rich-text__media {
  width: 100%;
}
.rich-text--image-left .rich-text__media {
  justify-self: start;
}
.rich-text__media img, .rich-text__media picture {
  display: block;
  width: 100%;
  height: auto;
}
.rich-text__text h3,
.rich-text__text h4,
.rich-text__text h5,
.rich-text__text h6 {
  margin: 1.6em 0 0.55em;
  line-height: 1.18;
  color: var(--color-text);
}
.rich-text__text h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
}
.rich-text__text h4 {
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
}
.rich-text__text h5 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}
.rich-text__text h6 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rich-text__text h3:first-child,
.rich-text__text h4:first-child,
.rich-text__text h5:first-child,
.rich-text__text h6:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .rich-text--has-image .rich-text__layout, .rich-text__layout:has(.rich-text__media) {
    grid-template-columns: 1fr;
  }
  .rich-text--image-left .rich-text__media {
    order: 0;
  }
  .rich-text__media, .rich-text--image-left .rich-text__media {
    justify-self: stretch;
    width: 100%;
  }
}
/* =========================================================
   Icon List
========================================================= */
.icon-list__items {
  display: grid;
  gap: var(--space-lg);
}
.icon-list--2 .icon-list__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.icon-list--3 .icon-list__items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.icon-list--style-default .icon-list__item {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}
.icon-list--style-problem-list .icon-list__items {
  gap: 24px;
}
.icon-list--style-problem-list .icon-list__item {
  border: none;
  border-left: 4px solid var(--color-accent);
  border-radius: 0;
  padding: 0 0 0 20px;
  background: transparent;
}
.icon-list--style-problem-list .icon-list__item::before {
  content: none;
}
.icon-list--style-checklist .icon-list__items {
  gap: var(--space-sm);
}
.icon-list--style-checklist .icon-list__item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}
.icon-list--style-checklist .icon-list__item:first-child {
  border-top: 1px solid var(--color-border);
}
.icon-list--style-checklist .icon-list__item::before, .icon-list--style-icon-cards .icon-list__item::before {
  content: "•";
  display: grid;
  place-items: center;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
}
.icon-list--style-checklist .icon-list__item::before {
  grid-column: 1;
  grid-row: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.22);
}
.icon-list--style-checklist .icon-list__item-body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  width: 100%;
}
.icon-list--style-checklist .icon-list__item-title, .icon-list--style-checklist .icon-list__item-text {
  max-width: none;
}
.icon-list--style-icon-cards .icon-list__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #faf7ef 100%);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}
.icon-list--style-icon-cards .icon-list__item::before {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--color-accent);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}
.icon-list__item--icon-none::before {
  content: "•";
}
.icon-list__item--icon-check::before {
  content: "✓";
}
.icon-list__item--icon-arrow::before {
  content: "→";
}
.icon-list__item--icon-plus::before {
  content: "+";
}
.icon-list__item--icon-warning::before {
  content: "!";
}
.icon-list__item-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}
.icon-list__item-text {
  margin: 0;
  color: var(--color-muted);
}

/* =========================================================
   Card Grid
========================================================= */
.card-grid__items {
  display: grid;
  gap: var(--space-lg);
}
.card-grid--2 .card-grid__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-grid--3 .card-grid__items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid--4 .card-grid__items {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}
.card__tag {
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.card__title {
  margin: 0;
  font-size: 1.2rem;
}
.card__text {
  margin: 0;
  color: var(--color-muted);
}
.card__media img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.card__link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
}
.card__link::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.32rem solid transparent;
  border-bottom: 0.32rem solid transparent;
  border-left: 0.48rem solid var(--color-accent);
  transition: transform 0.2s ease;
}
.card__link:hover {
  background: transparent;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.card__link:hover::before {
  transform: translateX(0.18rem);
}
.card__edit-link {
  margin-top: auto;
}

.card-grid--style-default .card {
  border-color: transparent;
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.card-grid--style-compact .card-grid__items {
  gap: var(--space-md);
}

.card-grid--style-compact .card {
  position: relative;
  gap: var(--space-sm);
  padding: 1rem 1rem 1rem 1.35rem;
  border: 0;
  border-left: 6px solid var(--color-accent);
  border-radius: 8px;
  background: var(--color-bg-soft);
  box-shadow: none;
}

.card-grid--style-compact .card__media {
  display: none;
}

.card-grid--style-compact .card__tag {
  font-size: 0.78rem;
}

.card-grid--style-compact .card__title {
  font-size: 1.05rem;
}

.card-grid--style-compact .card__text {
  font-size: 0.95rem;
}

.card-grid--style-outlined .card {
  border: 3px solid var(--color-accent);
  border-radius: 0;
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  box-shadow: none;
}

.card-grid--style-outlined .card__tag {
  color: currentColor;
  opacity: 0.72;
}

.card-grid--style-outlined .card__text {
  color: inherit;
  opacity: 0.78;
}

.card-grid--style-outlined .card__link {
  background: transparent;
  color: currentColor;
  border-color: transparent;
}

/* =========================================================
   Image Text
========================================================= */
.image-text__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.image-text--left .image-text__media {
  order: -1;
}
.image-text__media img {
  border-radius: var(--radius);
}
.image-text__caption {
  margin-top: var(--space-sm);
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* =========================================================
   CTA
========================================================= */
.cta__box {
  padding: var(--space-xl);
  border-radius: var(--radius);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  text-align: center;
}
.cta__headline {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}
.cta__text {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: var(--color-muted);
}
.cta__secondary {
  margin-top: var(--space-md);
  color: var(--color-muted);
  font-size: 0.95rem;
}

.cta--default .cta__box {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cta--left .cta__box {
  text-align: left;
}

.cta--left .cta__text {
  margin-inline: 0;
}

.cta--boxed .cta__box {
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
}

.cta--accent .cta__box {
  border: 0;
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.14);
}

.cta--accent .cta__text,
.cta--accent .cta__secondary {
  color: rgba(17, 17, 17, 0.72);
}

.cta--accent .button {
  background: var(--color-text);
  color: #ffffff;
  border-color: var(--color-text);
}

.cta--dark .cta__box {
  border: 0;
  background: var(--color-text);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.18);
}

.cta--dark .cta__text,
.cta--dark .cta__secondary {
  color: rgba(255, 255, 255, 0.74);
}

.cta--dark .button {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}

.cta--dark .button:hover {
  background: var(--color-accent-strong);
  border-color: var(--color-accent-strong);
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 900px) {
  .hero__grid,
  .hero__body,
  .image-text__grid,
  .icon-list--2 .icon-list__items,
  .icon-list--3 .icon-list__items,
  .card-grid--2 .card-grid__items,
  .card-grid--3 .card-grid__items,
  .card-grid--4 .card-grid__items {
    grid-template-columns: 1fr;
  }
  .site-header__inner {
    padding-block: var(--space-sm);
  }
  .site-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-header__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
  }
  .site-header__menu.is-open {
    display: flex;
  }
  .site-header__menu .site-nav ul, .site-header__menu .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-header__menu .site-nav li + li {
    border-top: 1px solid var(--color-border);
  }
  .site-header__menu .site-nav a {
    display: flex;
    padding-block: 0.8rem;
  }
  .site-header__menu .site-nav .active > a::after,
  .site-header__menu .site-nav .current > a::after,
  .site-header__menu .site-nav .is-active > a::after,
  .site-header__menu .site-nav .active a::after,
  .site-header__menu .site-nav .current a::after,
  .site-header__menu .site-nav .is-active a::after,
  .site-header__menu .site-nav a.active::after,
  .site-header__menu .site-nav a.current::after,
  .site-header__menu .site-nav a.is-active::after,
  .site-header__menu .site-nav a[aria-current=page]::after {
    bottom: 0.35rem;
  }
  .site-header__cta {
    justify-content: center;
    width: 100%;
  }
  .footer-nav ul, .footer-nav__list {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  .hero {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .hero .section__headline {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    max-width: none;
  }
  .hero .section__intro {
    font-size: 1.15rem;
    max-width: none;
  }
}
