/* =========================================================================
   Elias "Eliyahu" Suskind — portfolio design system
   Field notebook · lab instrumentation · vintage technical manual.

   Single stylesheet, no build step, no web fonts, no JavaScript dependency.
   Light and dark are driven by prefers-color-scheme. Edit tokens in :root.
   ========================================================================= */

/* ---- 1. Design tokens --------------------------------------------------- */
:root {
  /* Type families: an editorial serif, a utilitarian sans, a technical mono. */
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Cascadia Code", "Roboto Mono",
    Menlo, Consolas, "Liberation Mono", monospace;

  /* Fluid type scale (clamped between 320px and 1400px viewports). */
  --step--1: clamp(0.79rem, 0.75rem + 0.18vw, 0.89rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.11rem + 0.44vw, 1.5rem);
  --step-2: clamp(1.44rem, 1.29rem + 0.74vw, 2rem);
  --step-3: clamp(1.73rem, 1.49rem + 1.18vw, 2.66rem);
  --step-4: clamp(2.07rem, 1.7rem + 1.85vw, 3.55rem);

  /* Spacing scale. */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;

  /* Layout. */
  --measure: 68ch;
  --container: 72rem;
  --container-narrow: 46rem;
  --radius: 3px;
  --radius-lg: 6px;
  --rule: 1px;
  --border-w: 1px;

  /* Motion. */
  --dur-fast: 120ms;
  --dur: 200ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);

  /* Light theme — warm archival paper with blueprint + rust annotations. */
  --bg: #f2eee4;
  --bg-grid: #e6e0d1;
  --surface: #fbfaf5;
  --surface-2: #efe9db;
  --text: #1b1a17;
  --muted: #6a655b;
  --faint: #918b7e;
  --border: #d6cfbf;
  --border-strong: #b8b0a0;
  --accent: #33507e; /* steel blueprint blue */
  --accent-ink: #26406a;
  --accent-2: #a2492c; /* rust / registration red */
  --ok: #3f6b47;
  --warn: #9a6a1c;
  --shadow: 0 1px 2px rgba(30, 26, 18, 0.06), 0 8px 24px rgba(30, 26, 18, 0.06);
  --focus: var(--accent-2);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14161a;
    --bg-grid: #1b1e24;
    --surface: #1b1e24;
    --surface-2: #23272f;
    --text: #e9e4d6;
    --muted: #a09b8d;
    --faint: #7d786c;
    --border: #2e333c;
    --border-strong: #414852;
    --accent: #96acdb;
    --accent-ink: #b3c4e8;
    --accent-2: #dd8a60;
    --ok: #8fb894;
    --warn: #d3a355;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.35);
    --focus: var(--accent-2);
  }
}

/* ---- 2. Reset ----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
ul,
ol {
  list-style: none;
  padding: 0;
}

@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;
  }
}

/* ---- 3. Base ------------------------------------------------------------ */
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image: linear-gradient(var(--bg-grid) var(--rule), transparent var(--rule)),
    linear-gradient(90deg, var(--bg-grid) var(--rule), transparent var(--rule));
  background-size: 2.25rem 2.25rem;
  background-position: -1px -1px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-underline-offset: 0.15em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-1);
}
p {
  text-wrap: pretty;
}

a {
  color: var(--accent-ink);
  text-decoration-color: color-mix(in oklab, var(--accent) 40%, transparent);
}
a:hover {
  text-decoration-color: currentColor;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 1px;
}

/* Eyebrow / metadata label — the technical-manual voice. */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
}

/* External-link marker (added in markup as .ext). */
a.ext[target="_blank"]::after {
  content: "↗";
  display: inline-block;
  margin-inline-start: 0.15em;
  font-size: 0.85em;
  color: var(--faint);
  text-decoration: none;
}

/* ---- 4. Skip link ------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--space-s);
  top: -4rem;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: var(--space-2xs) var(--space-s);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus {
  top: var(--space-s);
}

/* ---- 5. Layout ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(var(--space-s), 4vw, var(--space-xl));
}
main {
  flex: 1 0 auto;
  padding-block: var(--space-xl);
}
.prose {
  max-width: var(--measure);
}
.prose p + p,
.prose p + ul,
.prose ul + p,
.prose h2,
.prose h3 {
  margin-top: var(--space-m);
}
.prose h2,
.prose h3 {
  margin-bottom: var(--space-2xs);
}
.prose li {
  margin-top: var(--space-2xs);
  padding-left: 1.3em;
  position: relative;
}
.prose li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}
.prose a {
  font-weight: 500;
}
.stack > * + * {
  margin-top: var(--space-m);
}

/* ---- 6. Header + nav (no JavaScript, no hamburger) ---------------------- */
.site-header {
  border-bottom: var(--border-w) solid var(--border-strong);
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.1);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xs) var(--space-m);
  padding-block: var(--space-xs);
}
.brand {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5ch;
}
.brand .reg {
  font-family: var(--font-mono);
  font-size: 0.6em;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  transform: translateY(-0.15em);
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(var(--space-2xs), 2.5vw, var(--space-m));
}
.site-nav a {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding-block: 0.35em;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--text);
}
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent-2);
}

/* ---- 7. Registration marks + rules ------------------------------------- */
.reg-rule {
  border: 0;
  border-top: var(--rule) solid var(--border);
  margin-block: var(--space-l);
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-s);
  flex-wrap: wrap;
  border-bottom: var(--border-w) solid var(--border-strong);
  padding-bottom: var(--space-2xs);
  margin-bottom: var(--space-l);
}
.section-head h2 {
  font-size: var(--step-2);
}
.section-head .index {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--faint);
  letter-spacing: 0.1em;
}

/* ---- 8. Home hero ------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(var(--space-m), 5vw, var(--space-2xl));
  align-items: center;
  padding-block: var(--space-l) var(--space-xl);
}
.hero__body {
  max-width: 40ch;
}
.hero h1 {
  margin-top: var(--space-xs);
  font-size: var(--step-4);
}
.hero__lede {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  color: var(--text);
  margin-top: var(--space-s);
  line-height: 1.4;
}
.hero__intro {
  color: var(--muted);
  margin-top: var(--space-s);
}
.hero__portrait {
  position: relative;
  padding: var(--space-2xs);
  border: var(--border-w) solid var(--border-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero__portrait img {
  width: clamp(140px, 22vw, 230px);
  height: auto;
  image-rendering: pixelated;
}
.hero__portrait figcaption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--faint);
  text-transform: uppercase;
  margin-top: var(--space-2xs);
  text-align: center;
}
/* Corner crosshair registration marks. */
.crosshair {
  position: absolute;
  width: 14px;
  height: 14px;
  color: var(--accent-2);
  opacity: 0.8;
}
.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.crosshair::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
.crosshair::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}
.crosshair.tl {
  top: -7px;
  left: -7px;
}
.crosshair.br {
  bottom: -7px;
  right: -7px;
}

/* ---- 9. "Currently" strip ---------------------------------------------- */
.currently {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 0;
  border: var(--border-w) solid var(--border-strong);
  background: var(--surface);
}
.currently__item {
  padding: var(--space-s) var(--space-m);
  border-top: var(--rule) solid var(--border);
  border-left: var(--rule) solid var(--border);
}
.currently__key {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  text-transform: uppercase;
  margin-bottom: var(--space-3xs);
}
.currently__val {
  color: var(--text);
  font-size: var(--step--1);
  line-height: 1.4;
}

/* ---- 10. Card grids ----------------------------------------------------- */
.card-grid {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
a.card {
  text-decoration: none;
  color: inherit;
}
a.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
a.card:focus-visible {
  outline-offset: 3px;
}
.card__media {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  border-bottom: var(--rule) solid var(--border);
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__media.pixel {
  padding: var(--space-m);
}
.card__media.pixel img {
  width: auto;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.card__body {
  padding: var(--space-s) var(--space-m) var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  flex: 1;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.card__title {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  line-height: 1.15;
  color: var(--text);
}
.card__summary {
  color: var(--muted);
  font-size: var(--step--1);
  margin-top: var(--space-3xs);
}
.card__foot {
  margin-top: auto;
  padding-top: var(--space-xs);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xs);
}

/* Specimen / status labels. */
.tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: var(--rule) solid var(--border-strong);
  border-radius: 999px;
  padding: 0.15em 0.6em;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.status::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 999px;
  background: var(--faint);
}
.status--published::before,
.status--active::before {
  background: var(--ok);
}
.status--in-development::before {
  background: var(--warn);
}

/* ---- 11. List index (research + collection listings) ------------------- */
.index-list {
  border-top: var(--border-w) solid var(--border-strong);
}
.index-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xs) var(--space-m);
  padding-block: var(--space-m);
  border-bottom: var(--rule) solid var(--border);
}
.index-list__num {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--accent-2);
  padding-top: 0.35em;
}
.index-list__title {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  line-height: 1.2;
}
.index-list__title a {
  color: var(--text);
  text-decoration: none;
}
.index-list__title a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent-2);
}
.index-list__meta {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1em;
  margin-top: var(--space-3xs);
}
.index-list__desc {
  grid-column: 2;
  color: var(--muted);
  max-width: var(--measure);
}

/* ---- 12. Galleries ------------------------------------------------------ */
.gallery {
  display: grid;
  gap: var(--space-xs);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
}
.gallery figure {
  border: var(--border-w) solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery a {
  display: block;
  position: relative;
  overflow: hidden;
}
.gallery a::after {
  content: "⤢";
  position: absolute;
  top: var(--space-2xs);
  right: var(--space-2xs);
  width: 1.7em;
  height: 1.7em;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(20, 18, 14, 0.55);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery a:hover::after,
.gallery a:focus-visible::after {
  opacity: 1;
}
.gallery img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.gallery a:hover img {
  transform: scale(1.03);
}
.gallery--pixel img {
  image-rendering: pixelated;
  object-fit: contain;
  background: var(--surface-2);
  height: 18rem;
  padding: var(--space-s);
}
.gallery figcaption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--muted);
  padding: var(--space-2xs) var(--space-xs);
  border-top: var(--rule) solid var(--border);
  display: flex;
  gap: 0.6em;
}
.gallery figcaption .n {
  color: var(--accent-2);
  flex: none;
}

/* ---- 13. Article / research detail ------------------------------------- */
.page-head {
  margin-bottom: var(--space-l);
}
.page-head h1 {
  font-size: var(--step-3);
  margin-top: var(--space-2xs);
  max-width: 22ch;
}
.page-head__lede {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  color: var(--muted);
  margin-top: var(--space-s);
  max-width: var(--measure);
  line-height: 1.4;
}
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0;
  border: var(--border-w) solid var(--border-strong);
  margin-block: var(--space-l);
  background: var(--surface);
}
.meta-grid div {
  padding: var(--space-s) var(--space-m);
  border-top: var(--rule) solid var(--border);
  border-left: var(--rule) solid var(--border);
}
.meta-grid dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: var(--space-3xs);
}
.meta-grid dd {
  font-size: var(--step--1);
  color: var(--text);
}
.citation {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  line-height: 1.6;
  background: var(--surface-2);
  border-left: 3px solid var(--accent-2);
  padding: var(--space-s) var(--space-m);
  color: var(--text);
  overflow-wrap: break-word;
}

figure.figure {
  margin-block: var(--space-l);
  border: var(--border-w) solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
figure.figure img {
  width: 100%;
  height: auto;
  background: #fff;
}
figure.figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  padding: var(--space-2xs) var(--space-m);
  border-top: var(--rule) solid var(--border);
}
figure.figure figcaption .n {
  color: var(--accent-2);
  letter-spacing: 0.08em;
}

.table-wrap {
  overflow-x: auto;
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  margin-block: var(--space-m);
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: var(--step--1);
  min-width: 34rem;
}
caption {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: var(--space-2xs) var(--space-m);
}
th,
td {
  text-align: left;
  padding: var(--space-2xs) var(--space-s);
  border-bottom: var(--rule) solid var(--border);
  vertical-align: top;
}
thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  border-bottom: var(--border-w) solid var(--border-strong);
}
tbody tr:nth-child(even) {
  background: color-mix(in oklab, var(--surface-2) 45%, transparent);
}

/* ---- 14. Buttons / callouts -------------------------------------------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-top: var(--space-m);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6em 1.1em;
  border-radius: var(--radius);
  border: var(--border-w) solid var(--accent);
  color: var(--accent-ink);
  background: transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover {
  background: var(--accent);
  color: #fff;
}
.btn--solid {
  background: var(--accent);
  color: #fff;
}
.btn--solid:hover {
  background: var(--accent-ink);
}
.note {
  border-left: 3px solid var(--border-strong);
  background: var(--surface-2);
  padding: var(--space-s) var(--space-m);
  color: var(--muted);
  font-size: var(--step--1);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---- 15. Contact list --------------------------------------------------- */
.contact-list {
  display: grid;
  gap: var(--space-2xs);
  max-width: var(--measure);
}
.contact-list a {
  display: flex;
  align-items: baseline;
  gap: var(--space-s);
  padding: var(--space-s) var(--space-m);
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--dur) var(--ease);
}
.contact-list a:hover {
  border-color: var(--accent);
}
.contact-list .k {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  flex: none;
  width: 6.5rem;
}
.contact-list .v {
  color: var(--accent-ink);
  overflow-wrap: anywhere;
}

/* ---- 16. Footer --------------------------------------------------------- */
.site-footer {
  border-top: var(--border-w) solid var(--border-strong);
  background: var(--surface);
  margin-top: var(--space-2xl);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-s);
  padding-block: var(--space-l);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--muted);
}
.site-footer a {
  color: var(--muted);
}
.site-footer a:hover {
  color: var(--text);
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
}

/* ---- 17. 404 ------------------------------------------------------------ */
.notfound {
  text-align: center;
  padding-block: var(--space-2xl);
}
.notfound .code {
  font-family: var(--font-mono);
  font-size: var(--step-4);
  color: var(--accent-2);
  letter-spacing: 0.1em;
}

/* ---- 18. Utilities ------------------------------------------------------ */
.center {
  text-align: center;
}
.lede {
  color: var(--muted);
  max-width: var(--measure);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 40rem) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__portrait {
    justify-self: start;
    order: -1;
  }
}
