/* ============================================================
   Institute for Nonduality-Based Therapies (INT)
   Design system, contemplative editorial, extended from NDSR.info
   Display: Newsreader (serif, italic accents)  ·  Body/UI: Instrument Sans
   ============================================================ */

:root {
  /* Palette, warm paper with a deep gold signal of awareness */
  --bg:        #f6f2ea;
  --bg-2:      #fbf8f2;
  --bg-3:      #ece6d8;
  --line:      #e3dccc;
  --line-soft: rgba(33, 31, 26, 0.08);

  --text:  #211f1a;
  --muted: #5c5950;
  --faint: #8b877d;

  --gold:      #bd9349;
  --gold-hi:   #8a6a2e;
  --gold-deep: #a1843f;
  --sage:      #5f7a64;

  --ink-on-gold: #201a0c;

  --maxw: 1160px;
  --prose: 720px;
  --radius: 13px;
  --radius-lg: 20px;

  --shadow: 0 24px 55px -30px rgba(64, 52, 24, 0.26);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 1.02rem;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle ambient field, awareness as the ground of experience */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(189,147,73,0.09), transparent 60%),
    radial-gradient(900px 700px at 88% 12%, rgba(95,122,100,0.055), transparent 60%);
  pointer-events: none;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 420;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 1.72rem); font-weight: 400; }
h4 { font-size: 1.16rem; font-weight: 460; letter-spacing: -0.01em; }
em, .em { font-style: italic; color: var(--gold-hi); font-weight: 400; }
h1 em, h2 em, h3 em { color: var(--gold-hi); }
strong { font-weight: 600; color: var(--text); }

p { color: var(--muted); }
p a:not(.btn) { color: var(--gold-hi); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(138,106,46,0.45); transition: text-decoration-color .2s; }
p a:not(.btn):hover { text-decoration-color: var(--gold-hi); }

/* ---------- layout primitives ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: clamp(3.75rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.75rem, 5vw, 4.25rem); }
.prose { max-width: var(--prose); }
.prose p + p, .prose p + ul, .prose ul + p, .prose p + h3, .prose ul + h3 { margin-top: 1.15rem; }
.prose h3 { margin-top: 2.6rem; }
.prose h4 { margin-top: 2rem; margin-bottom: .35rem; }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 1.7rem; height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::after {
  content: ""; width: 1.7rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}

.lead {
  font-size: clamp(1.12rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
}
.muted { color: var(--muted); }

.rule { border: 0; height: 1px; background: var(--line); margin-block: 0; }

ul.bullets { list-style: none; padding: 0; display: grid; gap: .7rem; }
ul.bullets li {
  position: relative; padding-left: 1.5rem; color: var(--muted);
}
ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.66em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(203,163,99,0.12);
}
ul.bullets li strong { color: var(--text); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,242,234,0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(246,242,234,0.85); }
.nav { display: flex; align-items: center; gap: 1.5rem; height: 72px; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__mark { flex: none; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: "Newsreader", serif; font-weight: 500; font-size: 1.06rem;
  letter-spacing: -0.01em; color: var(--text);
}
.brand__sub { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links a, .nav__links .dropbtn {
  font-size: 0.9rem; color: var(--muted); padding: .5rem .7rem; border-radius: 8px;
  transition: color .18s, background .18s; background: none; border: 0; cursor: pointer;
  font-family: inherit; display: inline-flex; align-items: center; gap: .3rem;
}
.nav__links a:hover, .nav__links .dropbtn:hover,
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a[aria-current="page"] { background: rgba(33,31,26,0.05); }

.dropdown { position: relative; }
.dropdown__menu {
  position: absolute; top: calc(100% + .5rem); left: 0; min-width: 250px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  padding: .5rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s var(--ease);
}
.dropdown:hover .dropdown__menu, .dropdown:focus-within .dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__menu a {
  display: block; padding: .6rem .7rem; border-radius: 9px; color: var(--muted);
}
.dropdown__menu a:hover { background: var(--bg-3); color: var(--text); }
.dropdown__menu a .k { color: var(--gold); font-family: "Newsreader", serif; font-style: italic; margin-right: .45rem; }
.dropdown__menu .d { display:block; font-size:.76rem; color: var(--faint); margin-top:1px; }
.dropbtn svg { transition: transform .2s; }
.dropdown:hover .dropbtn svg { transform: rotate(180deg); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: "Instrument Sans", sans-serif; font-weight: 500; font-size: 0.94rem;
  padding: .72rem 1.3rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all .2s var(--ease); white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { flex: none; }
.btn-primary { background: var(--gold); color: var(--ink-on-gold); }
.btn-primary:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(203,163,99,0.55); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.05rem; font-size: 0.88rem; }
.nav .btn { margin-left: .3rem; }

.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 42px; height: 42px; color: var(--text); cursor: pointer; }
.nav__toggle svg { margin: auto; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero__aura {
  position: absolute; left: 50%; top: 18%; translate: -50% 0;
  width: min(760px, 92vw); aspect-ratio: 1; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(203,163,99,0.16), rgba(203,163,99,0.04) 42%, transparent 66%);
  filter: blur(6px);
}
.hero__aura::after {
  content:""; position:absolute; inset:24% ; border-radius:50%;
  border:1px solid rgba(189,147,73,0.30);
}
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.1rem);
  font-weight: 400; letter-spacing: -0.02em; max-width: 16ch;
}
.hero .lead { max-width: 60ch; margin-top: 1.5rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.page-hero { padding-top: clamp(2.75rem, 5vw, 4.5rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 410; max-width: 20ch; }
.page-hero .lead { margin-top: 1.15rem; }
.subhead { font-family:"Newsreader",serif; font-style: italic; color: var(--gold-hi); font-size: clamp(1.15rem,2vw,1.5rem); font-weight: 400; margin-top: .5rem; }

/* ---------- marks (positioning row) ---------- */
.marks {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 3.5rem); background: rgba(255,253,248,0.6);
}
.marks > div { padding: 1.4rem 1.35rem; border-right: 1px solid var(--line); }
.marks > div:last-child { border-right: 0; }
.marks .n { font-family: "Newsreader", serif; font-size: 1.85rem; color: var(--gold-hi); line-height: 1; }
.marks .l { font-size: 0.82rem; color: var(--muted); margin-top: .5rem; }

/* ---------- generic section head ---------- */
.sec-head { max-width: 760px; }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head h2 + p { margin-top: 1rem; color: var(--muted); font-size: 1.06rem; }
.center.sec-head { margin-inline: auto; }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: 1.1rem; margin-top: 2.5rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, #ffffff, var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.55rem; transition: border-color .25s, transform .25s, background .25s;
  position: relative;
}
.card:hover { border-color: rgba(203,163,99,0.4); transform: translateY(-3px); }
.card .eyebrow { font-size: 0.66rem; margin-bottom: .95rem; }
.card h4 { margin-bottom: .5rem; }
.card p { font-size: 0.97rem; }
.card .k-index { font-family:"Newsreader",serif; font-style: italic; color: var(--gold); font-size: 1.1rem; }

/* persona / audience cards */
.persona { display: grid; gap: .55rem; }
.persona .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(203,163,99,0.1); border: 1px solid rgba(203,163,99,0.25);
  color: var(--gold-hi); margin-bottom: .6rem;
}
.persona .go { color: var(--gold-hi); font-size: .9rem; font-weight: 500; margin-top: .35rem; display: inline-flex; gap: .35rem; align-items: center; transition: gap .2s; }
.card:hover .persona .go { gap: .6rem; }

/* ---------- continuum (signature) ---------- */
.continuum {
  margin-top: 2.75rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem); background: rgba(255,253,248,0.7); position: relative; overflow: hidden;
}
.continuum__axis { display: flex; align-items: center; gap: .75rem; color: var(--faint); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 1.6rem; }
.continuum__axis .ln { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-deep), var(--sage)); opacity: .5; }
.continuum__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; position: relative; }
.cnode { border-left: 2px solid var(--gold-deep); padding: .2rem 0 .2rem 1.1rem; }
.cnode:nth-child(2){ border-color:#a98b4e; }
.cnode:nth-child(3){ border-color: var(--sage); }
.cnode .tag { font-family:"Instrument Sans"; font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color: var(--faint); }
.cnode h4 { margin: .35rem 0 .3rem; }
.cnode .abbr { color: var(--gold-hi); font-family:"Newsreader",serif; font-style: italic; }
.cnode p { font-size: .92rem; }
.cnode a { color: var(--gold-hi); font-size:.86rem; font-weight:500; display:inline-flex; gap:.3rem; margin-top:.5rem; }

/* ---------- numbered modules ---------- */
.modules { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.module {
  display: grid; grid-template-columns: 4.5rem 12rem 1fr; gap: 1.5rem; align-items: baseline;
  padding: 1.5rem 0.5rem; border-bottom: 1px solid var(--line); transition: background .2s, padding-left .2s;
}
.module:hover { background: rgba(203,163,99,0.04); padding-left: 1rem; }
.module .num { font-family:"Newsreader",serif; font-size: 1.5rem; color: var(--gold); font-style: italic; }
.module .cat { font-family:"Instrument Sans"; font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--sage); }
.module h4 { font-size: 1.12rem; margin-bottom: .2rem; }
.module p { font-size: .95rem; margin: 0; }

/* ---------- note / callout ---------- */
.note {
  border: 1px solid rgba(203,163,99,0.3); background: rgba(203,163,99,0.06);
  border-radius: var(--radius); padding: 1.4rem 1.5rem; margin-block: 1.75rem;
}
.note .eyebrow { margin-bottom: .6rem; }
.note p { color: var(--text); }
.note--sage { border-color: rgba(142,165,147,0.32); background: rgba(142,165,147,0.06); }
.note--sage .eyebrow { color: var(--sage); }
.note--sage .eyebrow::before { background: linear-gradient(90deg,#5f7365,transparent); }

/* ---------- status cards ---------- */
.status { display:flex; flex-direction: column; }
.status .pill {
  align-self: flex-start; font-size: .72rem; letter-spacing: .04em; padding: .25rem .7rem; border-radius: 100px;
  border: 1px solid var(--line); color: var(--muted); margin-bottom: 1rem;
}
.status .pill.dev { color: var(--gold-hi); border-color: rgba(203,163,99,0.4); background: rgba(203,163,99,0.08); }

/* ---------- comparison table ---------- */
.compare { margin-top: 2.25rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 1rem 1.25rem; text-align: left; font-size: .96rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { font-family:"Newsreader",serif; font-weight: 460; font-size: 1.02rem; background: rgba(0,0,0,0.035); }
.compare thead th:first-child { color: var(--muted); }
.compare thead th:last-child { color: var(--gold-hi); }
.compare td { color: var(--muted); }
.compare tr:last-child td { border-bottom: 0; }
.compare td:first-child, .compare th:first-child { border-right: 1px solid var(--line); }

/* ---------- bio cards ---------- */
.bio { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.bio__avatar {
  width: 84px; height: 84px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, var(--bg-3), var(--bg));
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family:"Newsreader",serif; font-style: italic; font-size: 1.7rem; color: var(--gold-hi);
}
.bio h3 { display:flex; align-items:center; gap:.6rem; flex-wrap: wrap; }
.bio .role { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--sage); margin: .3rem 0 .8rem; }
.bio p { font-size: .97rem; }
.li-badge { display:inline-grid; place-items:center; width: 22px; height:22px; border-radius:5px; background: var(--bg-3); border:1px solid var(--line); color: var(--muted); transition: color .2s, border-color .2s; }
.li-badge:hover { color: var(--gold-hi); border-color: var(--gold); }

/* ---------- quote ---------- */
.quote { text-align:center; max-width: 820px; margin-inline: auto; }
.quote blockquote {
  font-family:"Newsreader",serif; font-weight: 400; font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.15rem); line-height: 1.35; color: var(--text); letter-spacing: -0.01em;
}
.quote .attr { margin-top: 1.25rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; color: var(--faint); }

/* ---------- CTA band ---------- */
.cta {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(203,163,99,0.12), transparent 70%),
    var(--bg-2);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem; text-align: center;
}
.cta h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); max-width: 18ch; margin-inline: auto; font-weight: 400; }
.cta p { max-width: 54ch; margin: 1.1rem auto 0; color: var(--muted); }
.cta__btns { display:flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: .93rem; max-width: 34ch; }
.footer-brand .fine { color: var(--faint); font-size: .84rem; margin-top: 1rem; }
.footer-col h5 { font-family:"Instrument Sans"; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--faint); font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: var(--muted); font-size: .93rem; transition: color .18s; }
.footer-col a:hover { color: var(--gold-hi); }
.footer-bottom { display:flex; justify-content: space-between; gap:1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--faint); font-size: .82rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ---------- focus ---------- */
:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; border-radius: 4px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .bio { grid-template-columns: 1fr; }
  .bio__avatar { width: 68px; height: 68px; }
}
@media (max-width: 760px) {
  .nav__links, .nav > .btn { display: none; }
  .nav__toggle { display: grid; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: .1rem;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.5rem;
  }
  .nav__links.open a, .nav__links.open .dropbtn { padding: .8rem .4rem; font-size: 1rem; }
  .nav__links.open .dropdown__menu { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; background:none; padding: 0 0 .5rem 1rem; }
  .nav__links.open .btn { display:inline-flex; align-self:flex-start; margin: .6rem 0 0; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .marks { grid-template-columns: 1fr 1fr; }
  .marks > div:nth-child(2) { border-right: 0; }
  .marks > div:nth-child(1), .marks > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .module { grid-template-columns: 3rem 1fr; grid-template-areas: "num cat" "num title" "num desc"; row-gap: .3rem; column-gap: 1rem; }
  .module .num { grid-area: num; } .module .cat { grid-area: cat; } .module h4 { grid-area: title; } .module p { grid-area: desc; }
  .continuum__grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- imagery ---------- */
.media {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: var(--bg-2);
}
.media img { width: 100%; height: auto; display: block; }
.media--band { margin-top: clamp(2.25rem, 5vw, 3.5rem); }
.media--cover img { aspect-ratio: 16 / 9; object-fit: cover; }
.media--portrait img { aspect-ratio: 4 / 3; object-fit: cover; }

/* framed figure with caption */
.figure { margin-top: clamp(2.25rem, 5vw, 3.5rem); }
.figure figcaption {
  margin-top: .85rem; font-size: .82rem; color: var(--faint);
  text-transform: uppercase; letter-spacing: .14em; text-align: center;
}

/* two-up: text beside image */
.media-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center; margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.media-split .media { margin: 0; }

/* program hero banner (baked title art) */
.prog-banner {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: #14161c;
}
.prog-banner img { width: 100%; height: auto; display: block; }

/* accessible-only heading */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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