@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=IBM+Plex+Mono:wght@300;400&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f0ebe4;
  --fg: #1a1a1a;
  --muted: #8a8580;
  --accent: #b83a2a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'IBM Plex Mono', monospace;
  --b: 1px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.outer-frame {
  border: var(--b) solid var(--fg);
  padding: 8px;
  transition: opacity 0.45s ease;
  position: relative;
  z-index: 10;
}
.outer-frame.dissolving { opacity: 0; }
.outer-frame.artist-mode {
  border: none;
  padding: 0;
}

.composition {
  display: flex;
  flex-direction: column;
  border: var(--b) solid var(--fg);
  width: 520px;
  max-height: 90vh;
}

.row {
  display: flex;
  flex-direction: row;
  border-bottom: var(--b) solid var(--fg);
  flex-shrink: 1;
  flex-grow: 0;
  overflow: hidden;
  min-height: 20px;
  transition: flex-grow 0.55s cubic-bezier(0.23, 1, 0.32, 1),
              flex-shrink 0.55s cubic-bezier(0.23, 1, 0.32, 1),
              flex-basis 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.row:last-child { border-bottom: none; }
.row.row-expanded { flex-grow: 20; flex-shrink: 0; flex-basis: 0 !important; }
.row.row-compressed { flex-grow: 1; flex-shrink: 1; flex-basis: 0 !important; min-height: 20px; }

.cell {
  border-right: var(--b) solid var(--fg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
  flex-grow: 0;
  min-width: 20px;
  transition: flex-grow 0.55s cubic-bezier(0.23, 1, 0.32, 1),
              flex-shrink 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.cell:last-child { border-right: none; }
.cell[data-expandable="true"] { cursor: pointer; }
.cell.cell-expanded { flex-grow: 20; flex-shrink: 0; flex-basis: 0 !important; width: auto !important; }
.cell.cell-compressed { flex-grow: 1; flex-shrink: 1; flex-basis: 0 !important; width: auto !important; min-width: 20px; }

/* ---- Clickable attributes ---- */
[data-query] { cursor: pointer; }
[data-query]:hover { opacity: 0.7; }

/* ---- Painting ---- */
.t-painting { cursor: pointer; }
.t-painting .inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(240, 235, 228, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: none;
}

/* Painting in category view — clickable to focus */
.t-cat-painting {
  width: 100%; height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.25s;
}
.t-cat-painting:hover { opacity: 0.8; }
.t-cat-painting .cat-preview {
  flex: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.t-cat-painting .cat-title {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  padding: 6px 8px;
  border-top: var(--b) solid var(--fg);
}

/* ---- Category mediating element ---- */
.t-mediator {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
}
.t-mediator .mediator-label {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.t-mediator .mediator-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 8px;
  line-height: 1.3;
}

/* ---- Content types ---- */
.t-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0 16px;
  line-height: 1.3;
}

.t-label {
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 4px 6px;
  line-height: 1.5;
}

.t-body {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--muted);
  padding: 6px 10px;
  text-align: left;
}

/* Description cell: cropped teaser */
.cell-desc {
  cursor: pointer;
}
.cell-desc .t-body {
  overflow: hidden;
  max-height: 3.1em;
  transition: opacity 0.3s ease;
}
/* Hide teaser text when overlay is active */
.cell-desc.desc-active .t-body {
  opacity: 0;
}

/* Description overlay: covers the painting cell */
.desc-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
  background: rgba(240, 235, 228, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
.desc-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.desc-overlay .desc-text {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--fg);
  text-align: center;
  max-width: 380px;
}

.t-collect {
  font-family: var(--mono);
  font-size: 9px;
  text-align: center;
  padding: 6px 10px;
}
.t-collect .price {
  color: var(--fg);
}
.t-collect .status {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
/* Sold: everything recedes */
.t-collect.sold .price { color: var(--muted); }
.t-collect.sold .status { color: var(--muted); }
/* Available: subtle warm presence */
.t-collect.available .status { color: #8a7a60; }

.t-swatch { width: 100%; height: 100%; opacity: 0.85; }

.t-diagram { padding: 8px; }
.t-diagram svg { width: 100%; height: 100%; opacity: 0.2; display: block; }

.t-pattern { width: 100%; height: 100%; }
.pat-dots { background-image: radial-gradient(circle, var(--fg) 0.5px, transparent 0.5px); background-size: 6px 6px; opacity: 0.1; }
.pat-grid { background-image: repeating-linear-gradient(0deg, transparent, transparent 8px, var(--fg) 8px, var(--fg) 8.5px), repeating-linear-gradient(90deg, transparent, transparent 8px, var(--fg) 8px, var(--fg) 8.5px); opacity: 0.05; }
.pat-diag { background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, var(--fg) 4px, var(--fg) 4.5px); opacity: 0.06; }

.t-empty { width: 100%; height: 100%; }

/* ---- Fixed UI ---- */
.site-name {
  position: fixed; top: 20px; left: 24px;
  font-family: var(--mono); font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  cursor: default; z-index: 100;
}
.site-about {
  display: none; position: absolute; top: 22px; left: 0; width: 240px;
  padding: 14px; background: var(--bg); border: var(--b) solid var(--fg);
  font-family: var(--serif); font-size: 12px; line-height: 1.6; font-weight: 300; z-index: 101;
}
.site-name:hover .site-about { display: block; }

.sigil {
  position: fixed; bottom: 20px; right: 24px; width: 32px; height: 32px;
  z-index: 100; cursor: pointer; opacity: 0.35; transition: opacity 0.4s;
}
.sigil:hover { opacity: 1; }

/* ---- Orbital rings: Ein Sof letterpress ---- */
.orbits {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orbits svg {
  width: 100%;
  height: 100%;
}
.orbit-node {
  pointer-events: auto;
  cursor: pointer;
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.5s ease;
}
.orbit-node:hover {
  opacity: 0.9;
}

/* Expanded node content */
.node-content {
  position: fixed;
  pointer-events: auto;
  z-index: 5;
  border: var(--b) solid rgba(26,26,26,0.15);
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    1px 1px 3px rgba(255,255,255,0.4),
    -1px -1px 2px rgba(0,0,0,0.04);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.5s ease;
}
.node-content.collapsed {
  width: 18px !important;
  height: 22px !important;
  opacity: 0;
  pointer-events: none;
}
.node-content video,
.node-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Inline flyout: scrolls within the category header row ---- */
.flyout-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.flyout-scroll::-webkit-scrollbar { display: none; }

/* Year / medium items — same as mediator-value */
.flyout-item {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom: var(--b) solid rgba(26,26,26,0.12);
  transition: opacity 0.15s;
  line-height: 1.3;
  padding: 8px;
}
.flyout-item:last-child { border-bottom: none; }
.flyout-item:hover { opacity: 0.5; }
.flyout-item.active { color: var(--muted); }

/* Pigment items — swatch fills the row, name centered on top */
.flyout-item-pigment {
  position: relative;
  cursor: pointer;
  border-bottom: var(--b) solid rgba(26,26,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 8px;
  transition: opacity 0.15s;
  overflow: hidden;
}
.flyout-item-pigment:last-child { border-bottom: none; }
.flyout-item-pigment:hover { opacity: 0.7; }
.flyout-item-pigment.active .flyout-pigment-label { font-weight: 400; }
.flyout-pigment-bg {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}
.flyout-pigment-label {
  position: relative;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  z-index: 1;
}
.flyout-pigment-count {
  position: relative;
  font-family: var(--mono);
  font-size: 7px;
  z-index: 1;
}

/* ---- Checkout modal ---- */
.checkout-modal {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 235, 228, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.checkout-modal.active {
  opacity: 1;
  pointer-events: all;
}
.checkout-inner {
  text-align: center;
  cursor: default;
  max-width: 280px;
}
.checkout-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}
.checkout-price {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.checkout-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-btn {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: var(--b) solid var(--fg);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.checkout-btn:hover {
  background: var(--fg);
  color: var(--bg);
}
.checkout-btn.primary {
  background: var(--fg);
  color: var(--bg);
}
.checkout-btn.primary:hover {
  background: transparent;
  color: var(--fg);
}
.checkout-installment {
  font-family: var(--mono);
  font-size: 7px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.08em;
}
.checkout-close {
  font-family: var(--mono);
  font-size: 7px;
  color: var(--muted);
  margin-top: 20px;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.checkout-close:hover { color: var(--fg); }

/* ---- Artist control center (sigil state) ---- */
.artist-interface {
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: var(--b) solid var(--fg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
/* Full cross lines with center fade */
.artist-interface::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--fg), transparent 46%, transparent 54%, var(--fg));
  z-index: 3;
  pointer-events: none;
}
.artist-interface::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, var(--fg), transparent 46%, transparent 54%, var(--fg));
  z-index: 3;
  pointer-events: none;
}

.artist-quadrant {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}
.artist-quadrant:hover {
  background: rgba(26, 26, 26, 0.03);
}

/* Quadrant padding */
.artist-quadrant:nth-child(1) { padding-left: 18%; padding-top: 18%; }
.artist-quadrant:nth-child(2) { padding-right: 18%; padding-top: 18%; }
.artist-quadrant:nth-child(3) { padding-left: 18%; padding-bottom: 18%; }
.artist-quadrant:nth-child(4) { padding-right: 18%; padding-bottom: 18%; }

.artist-quadrant .q-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.artist-quadrant .q-value {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  color: var(--fg);
  max-width: 180px;
}
.artist-quadrant .q-value a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: var(--b) solid var(--muted);
  transition: opacity 0.2s;
}
.artist-quadrant .q-value a:hover { opacity: 0.5; }

/* Quadrant expansion */
.artist-interface.has-expanded .artist-quadrant {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.artist-interface.has-expanded .artist-quadrant.q-collapsed {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}
.artist-interface.has-expanded .artist-quadrant.q-expanded {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: 50%;
  z-index: 3;
  background: var(--bg);
  /* 14.6% inset = (1 - 1/√2) / 2 — inscribed square within circle */
  padding: 14.6%;
  overflow-y: auto;
  scrollbar-width: none;
  align-items: center !important;
  justify-content: center !important;
}
.artist-interface.has-expanded .artist-quadrant.q-expanded::-webkit-scrollbar { display: none; }

/* Expanded quadrant close hint */
.q-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--muted);
  cursor: pointer;
  z-index: 4;
}
.q-close:hover { color: var(--fg); }

/* Form styling for contact/newsletter */
.artist-quadrant input,
.artist-quadrant textarea {
  font-family: var(--mono);
  font-size: 9px;
  background: transparent;
  border: var(--b) solid var(--muted);
  padding: 8px 10px;
  width: 100%;
  max-width: 240px;
  color: var(--fg);
  margin-top: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.artist-quadrant input:focus,
.artist-quadrant textarea:focus {
  border-color: var(--fg);
}
.artist-quadrant textarea {
  resize: none;
  height: 60px;
}
.artist-quadrant button {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--bg);
  border: none;
  padding: 6px 16px;
  margin-top: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.artist-quadrant button:hover { opacity: 0.7; }

/* Hide center icon when a quadrant is expanded */
.artist-interface.has-expanded .artist-center {
  opacity: 0;
  pointer-events: none;
}
/* Hide cross lines when quadrant is expanded */
.artist-interface.has-expanded::before,
.artist-interface.has-expanded::after {
  opacity: 0;
}

/* Center sigil overlay on the artist interface — no background, lines flow through */
.artist-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s;
}
.artist-center:hover { opacity: 0.6; }

/* Sigil icon swap */
.sigil svg.icon-grid { display: none; }
.sigil.artist-mode svg.icon-circle { display: none; }
.sigil.artist-mode svg.icon-grid { display: block; }

/* Mobile sigil hidden on desktop */
.mobile-sigil { display: none; }

@media (max-width: 640px) {
  body {
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
    min-height: 0;
  }

  /* Hide orbital rings and site name on mobile */
  .orbits { display: none; }
  .node-content { display: none; }
  .site-name { display: none; }
  .sigil { display: none; }
  .mobile-sigil { display: none; }

  /* Frame: fills viewport with padding for border feel */
  .outer-frame {
    position: fixed;
    inset: 0;
    border: none;
    padding: 6px;
  }
  .outer-frame.artist-mode {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Composition: fills the frame minus padding */
  .composition {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  /* Rows fill the viewport proportionally */
  .row {
    min-height: 0;
    flex-basis: 0 !important;
    flex-grow: 1;
  }
  /* Painting row dominates */
  .row:has(.t-painting) { flex-grow: 8; }
  /* Swatch row stays thin */
  .row:has(.t-swatch) { flex-grow: 0; flex-basis: 28px !important; }
  /* Title row: enough room for long titles with line breaks */
  .row:has(.t-title) { flex-grow: 0; flex-basis: auto !important; min-height: 40px; }
  /* Meta/collect rows */
  .row:has(.t-label), .row:has(.t-collect) { flex-grow: 0; flex-basis: 32px !important; }
  /* Category header: thin default */
  .row:has(.t-mediator) { flex-grow: 0; flex-basis: 36px !important; }
  .row:has(.flyout-scroll) { flex-basis: none !important; height: auto; flex-grow: 3; }
  /* Description row */
  .row:has(.cell-desc) { flex-grow: 1; }
  /* Back row */
  .row:has([data-back-nav]) { flex-grow: 0; flex-basis: 32px !important; }

  /* Category: paintings row dominates */
  #cat-paintings-row { flex-grow: 10 !important; }

  /* Hide the fixed sigil on mobile — we use inline sigil cell instead */
  .sigil { display: none; }
  .mobile-sigil { display: none; }

  /* Typography: scale to viewport, readable on small screens */
  .t-title { font-size: 4.2vw; padding: 0 12px; }
  .t-label { font-size: 2.4vw; padding: 3px 6px; }
  .t-body { font-size: 3vw; padding: 4px 8px; }
  .t-collect { font-size: 2.6vw; padding: 4px 8px; }
  .t-collect .status { font-size: 2vw; }

  /* Mediator in category */
  .t-mediator .mediator-label { font-size: 2.2vw; }
  .t-mediator .mediator-value { font-size: 4.5vw; }

  /* Category painting titles */
  .t-cat-painting .cat-title { font-size: 2.8vw; padding: 5px 4px; }

  /* Back arrow: larger and more visible */
  .row:has([data-back-nav]) { flex-basis: 30px !important; }
  [data-back-nav] .t-label { font-size: 4vw; }

  /* Swatches: fill height */
  .t-swatch { min-height: 0; }

  /* Lightbox: true full screen */
  .lightbox img {
    max-width: 100vw;
    max-height: 100vh;
  }

  /* Checkout modal */
  .checkout-modal { border-radius: 0; }
  .checkout-title { font-size: 4vw; }
  .checkout-price { font-size: 6vw; }
  .checkout-btn { padding: 14px 24px; font-size: 2.2vw; }
  .checkout-installment { font-size: 1.8vw; }

  /* Artist interface: fit mobile */
  .artist-interface {
    width: 88vw;
    max-width: none;
  }
  .artist-quadrant .q-label { font-size: 2.2vw; }
  /* Prevent iOS zoom on form inputs */
  .artist-quadrant input,
  .artist-quadrant textarea { font-size: 16px; }

  /* Description overlay */
  .desc-overlay { padding: 20px 16px; }
  .desc-overlay .desc-text { font-size: 3vw; max-width: 100%; }

  /* Flyout: taller on mobile for easier browsing */
  .flyout-scroll { max-height: 55vh; }
  .flyout-item { font-size: 4vw; padding: 12px 8px; }
  .flyout-item-pigment { padding: 10px 8px; }
  .flyout-pigment-label { font-size: 2.8vw; }

  /* Pagination arrows: scale with viewport */
  .cell[data-page-dir], .cell[data-focus-image-dir] {
    min-width: 8vw;
  }

  /* Detail image arrows: overlaid on top of painting on mobile */
  .focus-arrow-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    background: rgba(240, 235, 228, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-right: var(--b) solid var(--fg);
    transition: background 0.2s;
  }
  .focus-arrow-overlay:active { background: rgba(240, 235, 228, 0.7); }
  .focus-arrow-overlay.left { left: 0; border-right: var(--b) solid var(--fg); border-left: none; }
  .focus-arrow-overlay.right { right: 0; border-right: none; border-left: var(--b) solid var(--fg); }
}
