/* MÜCK Consulting — derived from the brand design guide (Forest + Brass). */
:root {
  color-scheme: light;
  --forest-100: #dde8e2;
  --forest-300: #93b6a2;
  --forest-400: #648e76;
  --forest-700: #1f3d2e;
  --forest-800: #183126;

  --brass-100: #efe6d7;
  --brass-300: #cbaa7b;
  --brass-500: #a17c48;
  --brass-700: #694c31;
  --brass-800: #563e2c;

  --gray-0: #ffffff;
  --gray-50: #f7f8f7;
  --gray-100: #eff2f0;
  --gray-200: #dde2df;
  --gray-300: #c6cdc9;
  --gray-600: #56615b;
  --gray-900: #161d19;

  --font-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Crisp, mostly-square corners; buttons keep their own softer radius. */
  --radius-sm: 3px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --shadow-soft: 0 12px 35px rgba(15, 28, 21, 0.08);

  /* Inverted band: dark forest in light mode, off-white in dark mode. */
  --surface-strong: #0a1611;
  --text-on-strong: #ffffff;

  --bg: var(--gray-50);
  --surface: var(--gray-0);
  --surface-soft: var(--gray-100);
  --text: var(--gray-900);
  --text-muted: var(--gray-600);
  --border: var(--gray-200);
  --border-strong: var(--gray-300);

  --brand: var(--forest-700);
  --brand-hover: var(--forest-800);
  --brand-soft: var(--forest-100);
  --brand-on: #ffffff;

  --accent: var(--brass-500);
  --accent-text: var(--brass-800);
  --link: var(--forest-700);
  --focus: var(--brass-300);
  --danger: #b23b3b;
}
:root:not([data-theme="light"]) {
  @media (prefers-color-scheme: dark) {
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
}
:root[data-theme="dark"],
:root:not([data-theme="light"]) {
}

/* Dark palette (explicit toggle OR system default when no explicit light) */
:root[data-theme="dark"] {
  --surface-strong: #f7f8f7;
  --text-on-strong: #161d19;
  --bg: #0b100d;
  --surface: #111813;
  --surface-soft: #18231d;
  --text: #f6f7f6;
  --text-muted: #c4ccc7;
  --border: #2a3931;
  --border-strong: #3d5146;
  --brand: var(--forest-300);
  --brand-hover: #bcd2c6;
  --brand-soft: #183126;
  --brand-on: #0b100d;
  --accent: var(--brass-300);
  --accent-text: var(--brass-300);
  --link: var(--forest-300);
  --focus: var(--brass-300);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.28);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --surface-strong: #f7f8f7;
    --text-on-strong: #161d19;
    --bg: #0b100d;
    --surface: #111813;
    --surface-soft: #18231d;
    --text: #f6f7f6;
    --text-muted: #c4ccc7;
    --border: #2a3931;
    --border-strong: #3d5146;
    --brand: var(--forest-300);
    --brand-hover: #bcd2c6;
    --brand-soft: #183126;
    --brand-on: #0b100d;
    --accent: var(--brass-300);
    --accent-text: var(--brass-300);
    --link: var(--forest-300);
    --focus: var(--brass-300);
    --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
a {
  color: var(--link);
  text-underline-offset: 3px;
}
img {
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 850;
  max-width: 12ch;
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 760;
}
h3 {
  font-size: 21px;
  font-weight: 720;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 16px;
}
.lede {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 24px 0 0;
}

/* ---- Topbar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  min-height: 64px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  line-height: 0;
}
.brand-mark svg {
  border-radius: 5px;
  display: block;
}
.brand-suffix {
  font-weight: 500;
  color: var(--text-muted);
}
.topnav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.topnav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
}
.topnav a:hover {
  color: var(--text);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
}
.lang-toggle:hover {
  border-color: var(--text);
}
.mode-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
}
.mode-toggle:hover {
  border-color: var(--text);
}
.link-muted {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
}
.link-muted:hover {
  color: var(--text);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: var(--brand-on);
}
.btn-primary:hover {
  background: var(--brand-hover);
}
.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--text);
}

/* ---- Hero ---- */
.hero {
  padding: 78px 0 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
}
.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.logo-symbol svg {
  border-radius: 8px;
  display: block;
}
.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-word {
  font-size: 44px;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.logo-suffix {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Sections ---- */
.section {
  padding: 68px 0;
  border-top: 1px solid var(--border);
}
/* Contrast band — flips with the theme (dark in light mode, light in dark mode).
   Tokens are remapped relative to the band so children read correctly. */
.section--invert {
  background: var(--surface-strong);
  color: var(--text-on-strong);
  border-top: none;
  --text: var(--text-on-strong);
  --text-muted: color-mix(in srgb, var(--text-on-strong) 70%, transparent);
  --border: color-mix(in srgb, var(--text-on-strong) 16%, transparent);
  --surface: color-mix(in srgb, var(--text-on-strong) 6%, transparent);
  --accent-text: color-mix(in srgb, var(--text-on-strong) 66%, transparent);
}
.section--invert .panel {
  backdrop-filter: none;
}

/* Profile: photo + text */
.profile-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}
.profile-photo {
  margin: 0;
}
.profile-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

/* ---- Full-bleed hero: image background with the copy overlaid on the left.
   The image is wide (~2.3:1), so at typical hero ratios `cover` crops only the
   sides (position: right center keeps the mosquito) — the bottom is not cut. */
.hero-full {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0a1611;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  border-bottom: 1px solid var(--border);
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-art svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 16, 11, 0.94) 0%,
    rgba(8, 16, 11, 0.82) 28%,
    rgba(8, 16, 11, 0.3) 54%,
    rgba(8, 16, 11, 0) 72%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 48px 0;
}
.hero-full .eyebrow {
  color: var(--brass-300);
}
.hero-full h1 {
  color: #ffffff;
}
.hero-full .lede {
  color: rgba(246, 247, 246, 0.84);
}
.hero-full .hero-cta {
  margin-top: 30px;
}
.hero-full .btn-primary {
  background: var(--forest-300);
  color: #0a1611;
  border-color: var(--forest-300);
}
.hero-full .btn-primary:hover {
  background: #bcd2c6;
}
.hero-full .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}
.hero-full .btn-ghost:hover {
  border-color: #fff;
}

/* ---- Arbeitsweise / question list ---- */
.questions {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
}
.questions-head .eyebrow {
  margin-bottom: 16px;
}
.question-list {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.question {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.question:last-child {
  border-bottom: 0;
}

/* ---- Hintergrund card label ---- */
.background-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.section--invert .background-card small {
  color: var(--brass-300);
}
.background-card h3 {
  margin-bottom: 8px;
}
.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  margin-bottom: 32px;
  align-items: end;
}
.section-copy {
  color: var(--text-muted);
  max-width: 68ch;
  margin: 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.panel p:last-child {
  margin-bottom: 0;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.service .kicker {
  color: var(--accent-text);
}
.service h3 {
  margin-bottom: 8px;
}
.service p {
  color: var(--text-muted);
  margin: 0;
}
.panel p {
  color: var(--text-muted);
}

/* rich text output */
.prose :where(h3) {
  font-size: 18px;
  margin: 1.1rem 0 0.4rem;
}
.prose :where(h3):first-child {
  margin-top: 0;
}
.prose :where(p) {
  margin: 0 0 0.85rem;
}
.prose :where(p):last-child {
  margin-bottom: 0;
}
.prose :where(ul, ol) {
  margin: 0 0 0.85rem;
  padding-left: 1.3rem;
}
.prose :where(a) {
  color: var(--link);
}
.about {
  max-width: 76ch;
  font-size: 17px;
}

/* ---- Contact ---- */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}
.contact-row:first-of-type {
  border-top: none;
}
.contact-label {
  color: var(--text-muted);
  font-size: 14px;
}
.contact-value {
  text-align: right;
  font-weight: 600;
}
.contact-cta {
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--brand-on);
  border-color: var(--brand);
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
  min-height: 160px;
}
.contact-cta:hover {
  background: var(--brand-hover);
}

/* ---- Contact form ---- */
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .field > span {
  font-weight: 600;
  color: var(--text);
}
.contact-form .field > span::after {
  content: " *";
  color: var(--accent-text);
}
.contact-form .field input,
.contact-form .field textarea {
  padding: 11px 13px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-submit {
  align-self: flex-start;
  margin-top: 2px;
}
.contact-submit::after {
  content: " →";
}
.contact-form [data-form-status] {
  margin: 0;
}
/* Success: collapse the inputs, keep only the confirmation. */
.contact-form.is-sent .field-row,
.contact-form.is-sent .field,
.contact-form.is-sent .consent,
.contact-form.is-sent .captcha,
.contact-form.is-sent .contact-submit {
  display: none;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}
.consent input {
  margin-top: 3px;
  flex: none;
  accent-color: var(--brand);
}
.link-inline {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.link-inline:hover {
  color: var(--brand);
}
/* Spam-protection widget spacing + theming. */
.captcha {
  margin: 2px 0;
}
altcha-widget {
  display: block;
  --altcha-border-width: 1px;
  --altcha-border-radius: var(--radius-sm);
  --altcha-color-border: var(--border);
  --altcha-color-base: var(--surface);
  --altcha-color-text: var(--text);
  --altcha-color-border-focus: var(--brand);
  --altcha-max-width: 100%;
}
/* Honeypot: kept in the layout for bots, hidden from people + AT. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 60px;
  margin-top: 20px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}
.footer-note {
  margin: 0;
  max-width: 42ch;
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
}
.footer-legal button:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ---- Legal modal ---- */
.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 9, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}
.legal-modal.open {
  display: flex;
}
.legal-dialog {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 82vh;
  overflow: auto;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.legal-dialog h2 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}
.legal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.legal-close:hover {
  color: var(--text);
}

/* ---- Admin ---- */
.admin {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.admin-head-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
form.inline {
  display: inline;
}
.form-ok {
  background: var(--brand-soft);
  color: var(--accent-text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.form-error {
  color: var(--danger);
}
.editor-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 22px;
  background: var(--surface);
}
.editor-section > h2 {
  font-size: 20px;
  margin-bottom: 14px;
}
.hint {
  color: var(--text-muted);
  font-size: 14px;
  margin: -6px 0 14px;
}
.lang-fields {
  display: grid;
  gap: 14px;
}
.lang-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 14px 14px;
  margin-bottom: 14px;
  background: var(--surface-soft);
}
.lang-block > summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 4px;
  font-size: 17px;
}
.editor-subhead {
  font-size: 15px;
  margin: 10px 0 0;
  color: var(--text-muted);
}
.editor-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: grid;
  gap: 12px;
}
.editor-item legend {
  font-size: 12px;
  color: var(--text-muted);
  padding: 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.items {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.item-langs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.item-lang {
  display: grid;
  gap: 10px;
  align-content: start;
}
.item-lang-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 750;
}
.item-remove {
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--danger);
  font-size: 12px;
  padding: 2px 9px;
  cursor: pointer;
}
.item-remove:hover {
  border-color: var(--danger);
}
.item-add {
  font-size: 14px;
  padding: 9px 15px;
}
@media (max-width: 860px) {
  .item-langs {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field > span {
  font-size: 13px;
  color: var(--text-muted);
}
.field input,
.field textarea {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.editor-actions {
  position: sticky;
  bottom: 0;
  padding: 16px 0;
  background: linear-gradient(transparent, var(--bg) 40%);
}
.auth-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
}
.auth-form {
  width: min(380px, 100%);
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

/* ---- Rich-text editor ---- */
.rt-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rt-label {
  font-size: 13px;
  color: var(--text-muted);
}
.rt {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}
.rt-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
}
.rt-toolbar button {
  min-width: 30px;
  padding: 3px 8px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
}
.rt-toolbar button:hover {
  border-color: var(--text);
}
.rt-editor {
  min-height: calc(var(--rt-rows, 6) * 1.5em + 1.4rem);
  padding: 11px 13px;
  outline: none;
}
.rt-editor h3 {
  font-size: 17px;
  margin: 0.6rem 0 0.3rem;
}
.rt-editor p {
  margin: 0 0 0.6rem;
}

@media (max-width: 860px) {
  .hero,
  .section-head,
  .grid-2,
  .grid-3,
  .profile-grid,
  .questions {
    grid-template-columns: 1fr;
  }
  .profile-photo {
    max-width: 260px;
  }
  .hero-full {
    min-height: 66vh;
    align-items: flex-end;
  }
  .hero-full::before {
    background: linear-gradient(
      180deg,
      rgba(8, 16, 11, 0.35) 0%,
      rgba(8, 16, 11, 0.55) 45%,
      rgba(8, 16, 11, 0.92) 100%
    );
  }
  .hero-content {
    max-width: 100%;
    padding: 32px 0 40px;
  }
  .questions {
    gap: 26px;
  }
  .hero {
    gap: 30px;
    padding-top: 44px;
  }
  .topnav {
    display: none;
  }
  .contact-value {
    text-align: left;
  }
}
