/* ─── Seedlings design system ────────────────────────────────────────────
 * Brand tokens, typography, motion, components.
 * Mobile-first; min body 18px / 20px desktop.
 * ──────────────────────────────────────────────────────────────────────── */

:root {
  /* Brand palette */
  --seed-parchment: #FBF4E4;
  --seed-terracotta: #D97757;
  --seed-olive: #8A9A5B;
  --seed-mustard: #E4B44C;
  --seed-indigo: #2E3A59;
  --seed-sky: #A8D5E2;
  --seed-dusk: #6B5B8A;
  --seed-cream-dark: #EDE2C9;
  --seed-success: #7FA86B;

  /* Surfaces */
  --surface-0: var(--seed-parchment);
  --surface-1: var(--seed-cream-dark);
  --ink: var(--seed-indigo);
  --ink-soft: rgba(46, 58, 89, 0.72);

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --font-body: "Nunito", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale (4px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Radii — generous, rounded, claymorphic */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-pill: 999px;

  /* Shadows — soft clay */
  --shadow-clay: 0 18px 32px -16px rgba(46, 58, 89, 0.18),
                 0 4px 8px -2px rgba(46, 58, 89, 0.08),
                 inset 0 -2px 0 rgba(46, 58, 89, 0.04);
  --shadow-clay-hover: 0 24px 40px -18px rgba(46, 58, 89, 0.24),
                       0 6px 14px -4px rgba(46, 58, 89, 0.12);

  /* Motion */
  --ease-puff: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-quick: 180ms;
  --dur-norm: 320ms;
  --dur-slow: 600ms;

  /* Layout */
  --content-max: 1080px;
  --reading-max: 64ch;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--surface-0);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
@media (min-width: 720px) {
  body { font-size: 20px; }
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }
a { color: var(--seed-terracotta); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--seed-dusk); }

/* Display headings */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 var(--sp-4);
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.8vw, 1.6rem); }
p { margin: 0 0 var(--sp-4); max-width: var(--reading-max); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--seed-indigo);
  color: var(--seed-parchment);
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--r-md) 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Layout helpers */
.wrap {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.stack > * + * { margin-top: var(--sp-5); }

/* ─── Site header (subtle, no global nav on child pages) ─────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-5);
  max-width: var(--content-max);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
}
.brand:hover { color: var(--seed-terracotta); }
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: radial-gradient(circle at 30% 30%, var(--seed-mustard), var(--seed-terracotta));
  box-shadow: var(--shadow-clay);
  display: grid;
  place-items: center;
}
.brand__mark svg { width: 22px; height: 22px; }

.parents-link {
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
}
.parents-link:hover { background: var(--surface-1); color: var(--ink); }

/* ─── Buttons (claymorphic, squish on press) ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 56px;
  padding: 0 var(--sp-6);
  border: none;
  border-radius: var(--r-pill);
  background: var(--seed-terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-clay);
  transition: transform var(--dur-quick) var(--ease-puff),
              box-shadow var(--dur-quick) var(--ease-puff),
              background var(--dur-quick) var(--ease-puff);
}
.btn:hover { box-shadow: var(--shadow-clay-hover); background: #c46647; transform: translateY(-1px); }
.btn:active { transform: scale(0.96); }
.btn:focus-visible { outline: 3px solid var(--seed-mustard); outline-offset: 3px; }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px rgba(46,58,89,0.18); }
.btn--ghost:hover { background: var(--surface-1); color: var(--ink); }
.btn--mustard { background: var(--seed-mustard); color: var(--seed-indigo); }
.btn--mustard:hover { background: #d6a23a; }
.btn--olive { background: var(--seed-olive); }
.btn--olive:hover { background: #76874e; }
.btn--lg { min-height: 64px; padding: 0 var(--sp-7); font-size: 1.15rem; }
.btn--sm { min-height: 44px; padding: 0 var(--sp-4); font-size: 0.95rem; }

/* ─── Cards ──────────────────────────────────────────────────────────── */
.card {
  background: var(--surface-1);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-clay);
}

/* ─── Home page ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: var(--sp-9) var(--sp-5) var(--sp-7);
  overflow: hidden;
  text-align: center;
}
.hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__art svg { width: 100%; height: 100%; }
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: var(--sp-6) var(--sp-5);
  border-radius: 24px;
  /* Soft cream-to-transparent backdrop keeps the headline readable
     without burying the illustration. */
  background:
    radial-gradient(ellipse at center,
      rgba(251, 244, 228, 0.92) 0%,
      rgba(251, 244, 228, 0.72) 55%,
      rgba(251, 244, 228, 0) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--seed-terracotta);
  margin-bottom: var(--sp-4);
}
.hero h1 {
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.hero__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--ink-soft);
  margin: var(--sp-4) auto var(--sp-7);
  max-width: 36ch;
}

.entry-cards {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  padding: var(--sp-7) var(--sp-5);
  max-width: var(--content-max);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .entry-cards { grid-template-columns: repeat(3, 1fr); }
}

.entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--surface-1);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-clay);
  transition: transform var(--dur-norm) var(--ease-puff),
              box-shadow var(--dur-norm) var(--ease-puff);
  min-height: 240px;
  overflow: hidden;
}
.entry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-clay-hover); color: var(--ink); }
.entry-card__icon { width: 72px; height: 72px; }
.entry-card__title { font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
.entry-card__sub { color: var(--ink-soft); margin: 0; }
.entry-card__cta { margin-top: auto; font-weight: 700; color: var(--seed-terracotta); }

.parents-strip {
  text-align: center;
  padding: var(--sp-6) var(--sp-5) var(--sp-9);
}
.parents-strip a {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--seed-dusk);
}

.companion-strip {
  text-align: center;
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  max-width: var(--content-max);
  margin: 0 auto;
}
.companion-strip__eyebrow {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--seed-indigo);
  margin: 0 0 var(--sp-5);
}
.companion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .companion-grid { grid-template-columns: 1fr 1fr; }
}
.companion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.companion-item__tag {
  color: var(--ink-soft);
  margin: 0;
  max-width: 28ch;
}

footer.site-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: var(--sp-7) var(--sp-5) var(--sp-7);
}

/* ─── Stories grid (story garden) ────────────────────────────────────── */
.stories-page { padding: var(--sp-7) var(--sp-5) var(--sp-9); max-width: var(--content-max); margin: 0 auto; }
.stories-page__head { text-align: center; margin-bottom: var(--sp-7); }
.stories-page__head p { margin-left: auto; margin-right: auto; color: var(--ink-soft); }

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-7);
}
.pill {
  background: transparent;
  border: 2px solid rgba(46,58,89,0.16);
  color: var(--ink);
  padding: var(--sp-2) var(--sp-5);
  min-height: 44px;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-weight: 700;
  transition: all var(--dur-quick) var(--ease-puff);
}
.pill:hover { background: var(--surface-1); }
.pill[aria-pressed="true"] { background: var(--seed-indigo); color: var(--seed-parchment); border-color: var(--seed-indigo); }

.theme-section { margin-bottom: var(--sp-9); }
.theme-section__head {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
.theme-section__head h2 { margin: 0; }
.theme-section__head em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-5);
}
.flower-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-3) var(--sp-4);
  background: var(--surface-1);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-clay);
  transition: transform var(--dur-norm) var(--ease-puff),
              box-shadow var(--dur-norm) var(--ease-puff);
}
.flower-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-clay-hover); color: var(--ink); }
.flower-tile__art { width: 88px; height: 88px; }
.flower-tile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
}
.flower-tile__ref { font-size: 0.85rem; color: var(--ink-soft); }
.flower-tile__stage {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px var(--sp-2);
  border-radius: var(--r-pill);
}
.stage--bud { background: rgba(107,91,138,0.12); color: var(--seed-dusk); }
.stage--sprout { background: rgba(138,154,91,0.18); color: #5a6b3a; }
.stage--bloom { background: rgba(228,180,76,0.22); color: #7a5a14; }
.stage--golden { background: linear-gradient(120deg, var(--seed-mustard), var(--seed-terracotta)); color: #fff; }

/* ─── Parable scrollytelling page ────────────────────────────────────── */
.story-shell {
  min-height: 100vh;
  background: var(--surface-0);
}
.story-controls {
  position: fixed;
  top: var(--sp-4);
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--sp-5);
  pointer-events: none;
}
.story-controls > * { pointer-events: auto; }
.story-controls .btn--sm { backdrop-filter: blur(8px); background: rgba(255,255,255,0.7); color: var(--ink); box-shadow: var(--shadow-clay); }
.story-controls .btn--sm:hover { background: rgba(255,255,255,0.9); }
.story-progress {
  flex: 1;
  margin: 0 var(--sp-4);
  height: 6px;
  background: rgba(46,58,89,0.1);
  border-radius: var(--r-pill);
  overflow: hidden;
  max-width: 360px;
}
.story-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--seed-terracotta);
  border-radius: var(--r-pill);
  transition: width var(--dur-norm) var(--ease-puff);
}

.scene {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: var(--sp-9) var(--sp-5);
  transition: background var(--dur-slow) var(--ease-puff);
}
.scene__art {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.scene__art svg { width: 100%; height: 100%; }
.scene__caption {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.3;
  text-align: center;
  max-width: 28ch;
  margin: var(--sp-7) auto 0;
  letter-spacing: 0.005em;
}
.scene--title h1 {
  text-align: center;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
}
.scene--title .scene__sub {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: var(--sp-5);
}

/* In-scene tap target */
.tap-target {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: var(--r-pill);
  background: rgba(228,180,76,0.0);
  border: 3px dashed rgba(228,180,76,0.6);
  cursor: pointer;
  animation: pulse 2.4s var(--ease-puff) infinite;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--seed-dusk);
  text-align: center;
  padding: var(--sp-2);
}
.tap-target.tapped {
  animation: none;
  background: var(--seed-mustard);
  color: var(--seed-indigo);
  border-style: solid;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

/* Reflection scene */
.reflection {
  display: grid;
  gap: var(--sp-5);
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  max-width: 720px;
  margin: 0 auto;
}
.reflection__q {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: var(--sp-5);
}
.reflection__answers {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .reflection__answers { grid-template-columns: repeat(3, 1fr); }
}
.reflection__answer {
  background: var(--surface-1);
  border: none;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow-clay);
  min-height: 96px;
  transition: transform var(--dur-quick) var(--ease-puff), background var(--dur-quick);
}
.reflection__answer:hover { transform: translateY(-2px); background: #e2d4b6; }
.reflection__answer:active { transform: scale(0.97); }
.reflection__answer.selected {
  background: var(--seed-mustard);
  color: var(--seed-indigo);
}
.reflection__feedback {
  margin-top: var(--sp-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--seed-dusk);
  min-height: 1.8em;
}

/* Verse / reference cards */
.verse-card, .reference-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
}
.verse-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--ink);
  border-left: 4px solid var(--seed-mustard);
  padding-left: var(--sp-5);
  margin: 0 auto;
  max-width: 28ch;
  text-align: left;
}
.reference-card__ref {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--sp-3);
}
.reference-card__sub { color: var(--ink-soft); }

/* Bloom moment */
.bloom-scene {
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
}
.bloom-scene__flower { width: 220px; height: 220px; margin: 0 auto var(--sp-5); }
.bloom-scene h2 { font-style: italic; }
.bloom-scene__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-6); }

/* ─── Personal garden ────────────────────────────────────────────────── */
.garden-page { padding: var(--sp-7) var(--sp-5) var(--sp-9); max-width: var(--content-max); margin: 0 auto; }
.garden-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.stat {
  background: var(--surface-1);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-clay);
}
.stat__num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.stat__label { color: var(--ink-soft); font-size: 0.95rem; }

.garden-landscape {
  position: relative;
  min-height: 460px;
  background: linear-gradient(180deg, var(--seed-sky) 0%, var(--seed-parchment) 60%, #cbd9a1 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-clay);
  margin-bottom: var(--sp-6);
}
.garden-flower {
  position: absolute;
  width: 64px;
  height: 64px;
  cursor: pointer;
  transition: transform var(--dur-norm) var(--ease-puff);
}
.garden-flower:hover { transform: scale(1.15); }
.garden-flower--bud { opacity: 0.55; }

/* ─── Parents page ───────────────────────────────────────────────────── */
.parents-page { padding: var(--sp-7) var(--sp-5) var(--sp-9); max-width: 760px; margin: 0 auto; }
.pin-gate {
  background: var(--surface-1);
  padding: var(--sp-7);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-clay);
  text-align: center;
  max-width: 420px;
  margin: var(--sp-7) auto;
}
.pin-input {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.4em;
  text-align: center;
  width: 100%;
  padding: var(--sp-4);
  border: 2px solid rgba(46,58,89,0.18);
  border-radius: var(--r-md);
  background: var(--surface-0);
  color: var(--ink);
  margin: var(--sp-5) 0;
}
.pin-input:focus { border-color: var(--seed-terracotta); outline: none; }

.dash-section { margin-bottom: var(--sp-7); }
.dash-section h2 { margin-bottom: var(--sp-5); }
.recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(46,58,89,0.08);
  gap: var(--sp-4);
}
.recent-list li:last-child { border-bottom: none; }
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(46,58,89,0.08);
}
.switch {
  position: relative;
  width: 52px;
  height: 30px;
  background: rgba(46,58,89,0.18);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background var(--dur-quick);
  border: none;
  flex-shrink: 0;
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  border-radius: var(--r-pill);
  background: #fff;
  transition: transform var(--dur-quick) var(--ease-puff);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.switch[aria-checked="true"] { background: var(--seed-success); }
.switch[aria-checked="true"]::after { transform: translateX(22px); }

/* ─── Today/auto-redirect placeholder ────────────────────────────────── */
.loader {
  display: grid;
  place-items: center;
  min-height: 70vh;
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
}
.loader p { color: var(--ink-soft); margin-top: var(--sp-5); }

/* ─── Idle breathing on key art (≈0.3 Hz) ────────────────────────────── */
.breathe { animation: breathe 3.3s var(--ease-puff) infinite; transform-origin: center; }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ─── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .breathe { animation: none; }
  .tap-target { animation: none; }
}

/* ─── Print: hide non-content ────────────────────────────────────────── */
@media print {
  .site-header, .story-controls, .btn, footer.site-footer { display: none; }
}
