/*
PROJECT ENGINEERING CONTRACT
Mobile-first is the default. Base rules target small screens and enhancements
may be added at wider breakpoints. Reuse tokens; do not append patch selectors.
*/

/*
 * Property Check stylesheet segment: 01-foundation.css
 * Design tokens, reset, original layout primitives, and baseline responsive behavior.
 *
 * Cascade contract: files are loaded in numeric order. Modify the owning file
 * instead of appending unrelated overrides to the final stylesheet.
 */

/* ============================================================
TOKENS
Concept: a guided property-check workspace with a verification seal identity.
Contour lines + survey stamps stand in for charts and badges.
============================================================ */

:root {
  --ink: #16211c;
  --pine: #2f4a3c;
  --pine-light: #4c705d;
  --stone: #8b9a93;
  --stone-line: #c9d1c9;
  --paper: #eef0e9;
  --paper-raised: #f7f8f4;
  --copper: #c1793f;
  --copper-light: #e0a86c;
  --rust: #a8452f;
  --rust-tint: #fbe9e5;
  --white: #ffffff;

  --font-display: "Fraunces", serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 18px;
}

* {
  box-sizing: border-box;
}

/* The author CSS must never override HTML's hidden attribute. */
[hidden] {
  display: none !important;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

::selection {
  background: var(--copper-light);
}

/* ============================================================
LAYOUT
============================================================ */

.app {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
}

/* ---------- Sidebar / rail ---------- */

.rail {
  background: var(--pine);
  color: var(--paper);
  padding: 28px 22px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #1e3229;
  background-image:
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.05), transparent 55%);
}

.rail-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.rail-head-text {
  flex: 1;
  min-width: 0;
}

.rail-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: currentColor;
  filter: saturate(0.8);
}

.brand-mark-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.rail-head h1 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 2px;
  letter-spacing: 0.2px;
}

.tagline {
  margin: 0;
  font-size: 12.5px;
  color: #c7d3c9;
}

.rail-toggle {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.btn-new {
  background: var(--copper);
  color: #24160b;
  border: none;
  border-radius: var(--radius-s);
  padding: 12px 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  margin-bottom: 18px;
  width: 100%;
}

.btn-new:hover {
  background: var(--copper-light);
}

.btn-new:active {
  transform: translateY(1px);
}

.purchase-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.purchase-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  color: var(--paper);
  padding: 12px;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.purchase-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.purchase-item.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.purchase-item .p-name {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-item .p-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 11.5px;
  color: #b9c6bc;
}

.p-meta .p-pct {
  font-family: var(--font-mono);
  color: var(--copper-light);
}

.mini-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.mini-bar > span {
  display: block;
  height: 100%;
  background: var(--copper-light);
}

.rail-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--paper);
  padding: 10px;
  border-radius: var(--radius-s);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.12s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.rail-note {
  font-size: 11px;
  color: #a9b8ae;
  line-height: 1.5;
  margin: 6px 0 0;
}

/* ---------- Main ---------- */

.main {
  padding: 40px 48px 80px;
  max-width: 980px;
}

.empty-state {
  margin-top: 60px;
  text-align: center;
  color: var(--stone);
}

.empty-state h2 {
  font-family: var(--font-display);
  color: var(--ink);
}

/* ---------- Purchase header ---------- */

.purchase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.purchase-header .titles {
  flex: 1;
  min-width: 240px;
}

.field-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-bottom: 4px;
}

.purchase-name-input {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  padding: 2px 0;
  margin-bottom: 10px;
}


.purchase-name-input:hover,
.purchase-name-input:focus {
  background: var(--paper-raised);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}




.btn-danger {
  background: transparent;
  border: 1px solid var(--rust);
  color: var(--rust);
  padding: 10px 14px;
  border-radius: var(--radius-s);
  font-size: 13px;
  cursor: pointer;
}

.btn-danger:hover {
  background: var(--rust);
  color: var(--white);
}











/* ---------- Overview / elevation ring ---------- */

.overview {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
  padding: 28px;
  background: var(--paper-raised);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-l);
}

.momentum-msg {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--pine);
}

.overview-top {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.elevation-ring-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.elevation-ring-wrap svg {
  width: 100%;
  height: 100%;
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ring-center #overallPct {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.ring-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 4px;
}

.overview-stats {
  flex: 1;
  min-width: 260px;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 18px 28px;
}

.stat-block .stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--pine);
}

.stat-block .stat-lbl {
  font-size: 12px;
  color: var(--stone);
}

.stat-block.warn .stat-num {
  color: var(--rust);
}

.stat-block.money .stat-num {
  font-size: 19px;
}

/* ---------- Focus panel ("up next") ---------- */

.up-next {
  margin-bottom: 30px;
  padding: 22px;
  background: #fff8ee;
  border: 1px solid var(--copper-light);
  border-radius: var(--radius-l);
}

.up-next h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}

.up-next-sub {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--stone);
}

.up-next-empty {
  margin: 0;
  font-size: 14px;
  color: var(--pine);
  font-weight: 500;
}

.up-next-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.up-next-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 1px 14px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-left: 3px solid transparent;
  border-radius: var(--radius-m);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.up-next-item:hover {
  border-color: var(--copper);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.up-next-item.high-stakes {
  border-left-color: var(--rust);
}

.uni-section {
  grid-column: 1;
  grid-row: 1;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
}

.uni-title {
  grid-column: 1;
  grid-row: 2;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}

.uni-why {
  grid-column: 1;
  grid-row: 3;
  font-size: 12.5px;
  color: var(--pine-light);
  margin-top: 2px;
}

.uni-cta {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--copper);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Sections ---------- */

.section-card {
  margin-bottom: 26px;
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-m);
  background: var(--paper-raised);
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  border-bottom: 1px solid var(--stone-line);
}

.section-heading {
  flex: 1;
  min-width: 0;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.section-intro {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--stone);
  line-height: 1.4;
}

.section-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
  flex-shrink: 0;
}

.section-bar {
  flex: 1;
  height: 8px;
  background: var(--stone-line);
  border-radius: 4px;
  overflow: hidden;
}

.section-bar > span {
  display: block;
  height: 100%;
  background: var(--pine);
}

.section-bar.complete > span {
  background: var(--copper);
}

.section-count {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--stone);
  white-space: nowrap;
}

.section-toggle {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--stone);
  transition: transform 0.15s ease;
  padding: 8px;
  flex-shrink: 0;
}

.section-card.collapsed .section-toggle {
  transform: rotate(-90deg);
}

.section-card.collapsed .section-body {
  display: none;
}

.section-body {
  padding: 6px 22px 18px;
}

/* ---------- Event card (checklist item) ---------- */

.event-card {
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--stone-line);
  padding: 18px 0 18px 14px;
  margin-left: -14px;
}

.event-card:last-of-type {
  border-bottom: none;
}

.event-card.high-stakes {
  border-left-color: var(--rust);
  background: linear-gradient(to right, var(--rust-tint), transparent 45%);
}

.event-card.status-done {
  opacity: 0.68;
}

.event-card.status-na {
  opacity: 0.55;
}

.event-card.flash-highlight {
  animation: flashHighlight 1.5s ease-out;
  border-radius: var(--radius-m);
}

@keyframes flashHighlight {
  0% { box-shadow: 0 0 0 0 rgba(193, 121, 63, 0.55); }
  100% { box-shadow: 0 0 0 14px rgba(193, 121, 63, 0); }
}

.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px 16px;
  align-items: start;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  border: 1.5px solid var(--stone);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-mono);
  min-width: 118px;
  min-height: 36px;
}

.status-icon {
  font-size: 13px;
  line-height: 1;
}

.status-pill[data-status="not_started"] {
  color: var(--stone);
  border-color: var(--stone);
}

.status-pill[data-status="in_progress"] {
  color: var(--copper);
  border-color: var(--copper);
  background: #fdf3e8;
}

.status-pill[data-status="done"] {
  color: var(--white);
  border-color: var(--pine);
  background: var(--pine);
}

.status-pill[data-status="na"] {
  color: var(--stone);
  border-color: var(--stone-line);
  background: var(--paper);
  text-decoration: line-through;
}

.event-body {
  min-width: 0;
}

.event-top-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.event-step {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stake-flag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rust);
  background: var(--rust-tint);
  border-radius: 999px;
  padding: 2px 8px;
}

.item-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-title {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}

.event-why {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--pine-light);
}

.event-why strong {
  color: var(--pine);
}

.event-why.muted {
  color: var(--stone);
}

.event-card.high-stakes .event-why {
  color: var(--rust);
}

.event-card.high-stakes .event-why strong {
  color: var(--rust);
}

.expand-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: var(--pine);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.expand-btn:hover {
  text-decoration: underline;
}

.expand-btn .chev {
  font-size: 14px;
  transition: transform 0.15s ease;
}

.expand-btn[aria-expanded="true"] .chev {
  transform: rotate(90deg);
}

.event-detail {
  margin-top: 12px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-m);
}

.detail-block {
  margin-bottom: 12px;
}

.detail-block:last-child {
  margin-bottom: 0;
}

.detail-block h4 {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
}

.detail-block p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}

.detail-where p {
  color: var(--pine);
}

.notes-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin: 14px 0 6px;
}

.item-notes {
  width: 100%;
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-s);
  background: var(--white);
  padding: 8px 10px;
  font-size: 13px;
  min-height: 38px;
  resize: vertical;
}

.item-notes::placeholder {
  color: #b9c2ba;
}

.cost-fields {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cost-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  color: var(--stone);
  min-width: 140px;
}

.cost-field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cost-field input {
  width: 130px;
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-s);
  padding: 7px 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--white);
}

.cost-relative {
  display: block;
  font-size: 11px;
  color: var(--copper);
  font-family: var(--font-mono);
}

.item-remove {
  background: none;
  border: none;
  color: var(--stone);
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
  visibility: hidden;
}

.event-row:hover .item-remove {
  visibility: visible;
}

.item-remove:hover {
  color: var(--rust);
}

.section-remove {
  background: none;
  border: none;
  color: var(--stone);
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
  flex-shrink: 0;
}

.section-remove:hover {
  color: var(--rust);
}

.add-item-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.add-item-row input {
  flex: 1;
  border: 1px dashed var(--stone-line);
  border-radius: var(--radius-s);
  padding: 10px;
  font-size: 13.5px;
  background: transparent;
}

.add-item-row button {
  border: 1px solid var(--pine);
  background: var(--white);
  color: var(--pine);
  border-radius: var(--radius-s);
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
}

.add-item-row button:hover {
  background: var(--pine);
  color: var(--white);
}

.session-actions {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px dashed var(--stone-line);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.session-note {
  font-size: 12.5px;
  color: var(--stone);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--pine);
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: var(--radius-s);
  font-size: 13.5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
  max-width: calc(100vw - 32px);
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
MOBILE OPTIMIZATION
============================================================ */

@media (max-width: 860px) {
  .app {
    grid-template-columns: 1fr;
  }

  .rail {
    position: sticky;
    top: 0;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
    border-right: none;
    border-bottom: 1px solid #1e3229;
    z-index: 20;
  }

  .rail-head {
    margin-bottom: 0;
    align-items: center;
  }

  .rail-toggle {
    display: flex;
  }

  .rail-collapsible {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .rail-collapsible.open {
    display: block;
  }

  .purchase-list {
    max-height: min(40vh, 320px);
    overflow-y: auto;
  }
}

@media (max-width: 640px) {
  .main {
    padding: 20px 16px 60px;
  }

  /* Prevent iOS Safari zoom when an input receives focus */
  .purchase-name-input,
  .item-notes,
  .cost-field input,
  .add-item-row input {
    font-size: 16px;
  }

  .purchase-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .purchase-name-input {
    font-size: 26px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }




  .overview {
    padding: 20px;
    gap: 14px;
  }

  .overview-top {
    gap: 24px;
  }

  .elevation-ring-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }

  .overview-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }

  .stat-block .stat-num {
    font-size: 20px;
  }

  .stat-block.money .stat-num {
    font-size: 16px;
  }

  .up-next {
    padding: 16px;
  }

  .up-next-item {
    grid-template-columns: 1fr;
  }

  .uni-cta {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    margin-top: 6px;
  }

  .section-header {
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 8px 12px;
  }

  .section-heading {
    flex-basis: 100%;
    order: 1;
  }

  .section-header h2 {
    font-size: 16.5px;
  }

  .section-progress-wrap {
    order: 3;
    width: 100%;
    margin-top: 2px;
  }

  .section-toggle,
  .section-remove {
    order: 2;
  }

  .section-body {
    padding: 4px 16px 16px;
  }

  .event-card {
    padding: 16px 0 16px 12px;
    margin-left: -12px;
  }

  .event-row {
    grid-template-columns: 1fr auto;
  }

  .status-pill {
    grid-column: 1;
    grid-row: 2;
    margin-top: 8px;
    min-width: 0;
  }

  .event-body {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .item-remove {
    grid-column: 2;
    grid-row: 2;
    visibility: visible;
    justify-self: end;
    align-self: center;
    min-width: 40px;
    min-height: 40px;
    font-size: 18px;
  }

  .cost-fields {
    flex-direction: column;
    gap: 10px;
  }

  .cost-field {
    width: 100%;
  }

  .cost-field input {
    width: 100%;
  }

  .add-item-row {
    flex-direction: column;
  }

  .add-item-row button {
    width: 100%;
    padding: 12px;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
