/* ============================================================
   LUMINA CODEX — DESIGN SYSTEM
   Palette per brief: ivory · charcoal · deep midnight · soft gold · stone
   Type: elegant serif headings · clean sans-serif body
   Direction: Apple-level simplicity meets modern private holding company
   ============================================================ */

:root {
  /* Brief palette */
  --ivory:        #F7F4ED;
  --ivory-warm:   #FAF7F0;
  --charcoal:     #1C1C1E;
  --charcoal-soft:#2A2A2C;
  --midnight:     #0A1F3D;
  --midnight-deep:#061528;
  --gold:         #BFA46F;
  --gold-soft:    #D4BE8C;
  --stone:        #C5BFB5;
  --stone-light:  #E4DFD6;

  /* Functional */
  --bg:           var(--ivory);
  --bg-alt:       var(--ivory-warm);
  --bg-dark:      var(--midnight);
  --text:         var(--charcoal);
  --text-soft:    #4A4A4C;
  --text-muted:   #6B6B6D;
  --line:         #E5E0D6;
  --line-dark:    rgba(255,255,255,0.10);

  /* Type */
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing scale (large spacing per brief) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 40px;
  --s-5: 64px;
  --s-6: 96px;
  --s-7: 128px;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 880px;
}

/* ----------------------------------------------------------
   RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--midnight); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; }

/* ----------------------------------------------------------
   TYPOGRAPHY — elegant serif headings, clean sans-serif body
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 var(--s-3) 0;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 500; letter-spacing: -0.015em; }
h2 { font-size: clamp(2.0rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0.04em; text-transform: uppercase; color: var(--midnight); }

p { margin: 0 0 var(--s-3) 0; color: var(--text-soft); }
.lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--charcoal);
  letter-spacing: 0.005em;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s-2) 0;
  display: inline-block;
}
ul.clean, ol.clean { padding: 0; margin: 0 0 var(--s-3) 0; list-style: none; }
ul.clean li, ol.clean li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--text-soft); }
ul.clean li:last-child, ol.clean li:last-child { border-bottom: 0; }

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--s-4); }
.section { padding: var(--s-6) 0; }
.section-tight { padding: var(--s-5) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--midnight);
  color: var(--ivory);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark p { color: rgba(247,244,237,0.78); }
.section-dark .eyebrow { color: var(--gold-soft); }

/* ----------------------------------------------------------
   HEADER — logo left, nav right per wireframe
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,237,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-2) var(--s-4);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--midnight); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--charcoal);
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: var(--s-2) 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 14px var(--s-4); border-top: 1px solid var(--line); }
  .nav-links a:first-child { border-top: 0; }
  .nav-toggle { display: inline-flex; }
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--s-7) 0 var(--s-6);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 100%);
  overflow: hidden;
}
.hero::before {
  /* Subtle sacred-geometry ornament — used subtly per brief */
  content: "";
  position: absolute;
  top: 50%;
  right: -120px;
  width: 520px;
  height: 520px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23BFA46F' stroke-width='0.4' opacity='0.55'><circle cx='100' cy='100' r='60'/><circle cx='100' cy='40' r='60'/><circle cx='100' cy='160' r='60'/><circle cx='48' cy='70' r='60'/><circle cx='152' cy='70' r='60'/><circle cx='48' cy='130' r='60'/><circle cx='152' cy='130' r='60'/></g></svg>") center/contain no-repeat;
  pointer-events: none;
  opacity: 0.45;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
  display: inline-block;
}
.hero h1 {
  margin-bottom: var(--s-3);
  max-width: 18ch;
}
.hero .hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--midnight);
  margin: 0 0 var(--s-4) 0;
  max-width: 30ch;
}
.hero p {
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-cta {
  margin-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--midnight);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--charcoal); color: var(--ivory); }
.btn-secondary {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn-secondary:hover { background: var(--midnight); color: var(--ivory); }
.btn-gold {
  background: var(--gold);
  color: var(--midnight-deep);
}
.btn-gold:hover { background: var(--gold-soft); }

/* ----------------------------------------------------------
   SECTION HEADERS
   ---------------------------------------------------------- */
.section-head { margin-bottom: var(--s-5); max-width: 64ch; }
.section-head h2 { margin-bottom: var(--s-2); }

/* ----------------------------------------------------------
   OPERATING AREAS CARDS
   ---------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-3);
}
.card {
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  padding: var(--s-4);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card .card-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: var(--s-2);
  display: block;
}
.card h3 { margin-bottom: var(--s-2); font-size: 1.4rem; }
.card p { margin-bottom: var(--s-2); font-size: 0.98rem; }
.card ul.projects {
  list-style: none;
  padding: 0;
  margin: var(--s-2) 0 0 0;
  border-top: 1px solid var(--line);
  padding-top: var(--s-2);
}
.card ul.projects li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  letter-spacing: 0.01em;
}

/* Division detail blocks (Divisions page) */
.division-block {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
}
.division-block:last-child { border-bottom: 0; }
.division-block .division-meta {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.division-block .division-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.division-block h3 { margin: 0; font-size: clamp(1.6rem, 2.4vw, 2.0rem); }
.division-block p.summary { font-size: 1.05rem; max-width: 70ch; }
.division-block .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.division-block .project-pill {
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  padding: 14px var(--s-3);
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: 0.01em;
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
a.project-pill {
  text-decoration: none;
  color: var(--text);
  position: relative;
}
a.project-pill:hover {
  border-color: var(--gold);
  background: #fff;
  color: var(--midnight);
  transform: translateY(-2px);
}
a.project-pill .pill-domain {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
  font-family: var(--sans);
}
a.project-pill:hover .pill-domain { color: var(--gold); }
a.project-pill::after {
  content: "↗";
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.7;
}

/* Inline links inside operating area cards */
.card ul.projects li.has-link a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.card ul.projects li.has-link a:hover { color: var(--gold); }
.card ul.projects li.has-link a::after {
  content: "↗";
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.7;
}

/* ----------------------------------------------------------
   MISSION / TRUST BANNERS
   ---------------------------------------------------------- */
.banner {
  padding: var(--s-6) 0;
  background: var(--midnight);
  color: var(--ivory);
  text-align: center;
}
.banner h2 {
  color: var(--ivory);
  max-width: 28ch;
  margin: 0 auto var(--s-3) auto;
}
.banner p {
  color: rgba(247,244,237,0.78);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.08rem;
}
.banner .eyebrow { color: var(--gold-soft); }

/* ----------------------------------------------------------
   TWO-COLUMN INFO (Leadership / Contact)
   ---------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: var(--s-4); } }

.info-block { padding: var(--s-4) 0; }
.info-block h4 { margin-bottom: var(--s-2); }
.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-3);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}
.info-row:first-of-type { border-top: 0; }
.info-row dt { color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }
.info-row dd { margin: 0; color: var(--text); }
@media (max-width: 600px) {
  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .info-row dt { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
}

/* ----------------------------------------------------------
   FUNCTIONS / REVENUE LISTS (Our Work)
   ---------------------------------------------------------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature-list .item {
  padding: var(--s-3) var(--s-3);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 1rem;
  color: var(--text);
  position: relative;
  background: var(--ivory);
}
.feature-list .item::before {
  content: "";
  position: absolute;
  left: var(--s-3);
  top: var(--s-3);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.feature-list .item span {
  padding-left: var(--s-2);
  margin-left: var(--s-1);
}

/* ----------------------------------------------------------
   CONTACT FORM
   ---------------------------------------------------------- */
.form {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-3);
}
.form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
@media (max-width: 600px) { .form .row-2 { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form textarea { min-height: 160px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--midnight);
  background: #fff;
}
.form .form-actions { margin-top: var(--s-2); }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: var(--s-2); }

/* TCPA-compliant SMS consent checkbox block */
.form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 2px;
}
.form .checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--midnight);
  cursor: pointer;
}
.form .checkbox-row label.checkbox-label {
  display: block;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}
.form .checkbox-row label.checkbox-label a {
  color: var(--midnight);
  text-decoration: underline;
}
.form .checkbox-row label.checkbox-label a:hover { color: var(--gold); }
.form .checkbox-row label.checkbox-label strong { color: var(--charcoal); }

.sms-disclosure-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-3) 0;
}
.sms-disclosure-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-soft);
}
.sms-disclosure-list li:first-child { border-top: 0; }
.sms-disclosure-list li strong { color: var(--charcoal); }
.sms-disclosure-list li code {
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.06em;
}

/* ----------------------------------------------------------
   FOOTER (strong corporate footer per brief)
   ---------------------------------------------------------- */
.site-footer {
  background: var(--midnight);
  color: rgba(247,244,237,0.85);
  padding: var(--s-6) 0 var(--s-4) 0;
  margin-top: var(--s-5);
}
.site-footer a { color: rgba(247,244,237,0.85); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-4); } }

.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: var(--s-3); }
.footer-brand .brand-mark { filter: invert(1) hue-rotate(180deg) brightness(1.4); opacity: 0.95; }
.footer-brand .brand-text { color: var(--ivory); font-size: 1.4rem; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(247,244,237,0.7);
  max-width: 40ch;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 var(--s-2) 0;
}
.footer-col p, .footer-col address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(247,244,237,0.75);
  margin: 0 0 6px 0;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 4px 0; font-size: 0.95rem; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: var(--s-3);
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 0.85rem;
  color: rgba(247,244,237,0.6);
}
.footer-meta-identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.55;
}
.footer-meta-identity span:first-child {
  color: rgba(247,244,237,0.78);
  font-weight: 500;
}
.footer-meta-identity span:nth-child(2) {
  font-size: 0.8rem;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
.footer-meta-identity span:nth-child(3) {
  font-size: 0.8rem;
  color: rgba(247,244,237,0.55);
}
.footer-meta-identity a {
  color: rgba(247,244,237,0.7);
}
.footer-meta-identity a:hover { color: var(--gold); }
.footer-meta .legal-links {
  margin-top: 4px;
}
.footer-meta .legal-links a {
  font-size: 0.85rem;
  color: rgba(247,244,237,0.7);
  margin-left: var(--s-2);
}
.footer-meta .legal-links a:first-child { margin-left: 0; }

/* ----------------------------------------------------------
   PAGE INTRO (for inner pages)
   ---------------------------------------------------------- */
.page-intro {
  padding: var(--s-6) 0 var(--s-5);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23BFA46F' stroke-width='0.4' opacity='0.5'><circle cx='100' cy='100' r='60'/><circle cx='100' cy='40' r='60'/><circle cx='100' cy='160' r='60'/><circle cx='48' cy='70' r='60'/><circle cx='152' cy='70' r='60'/><circle cx='48' cy='130' r='60'/><circle cx='152' cy='130' r='60'/></g></svg>") center/contain no-repeat;
  opacity: 0.35;
  pointer-events: none;
}
.page-intro .container { position: relative; z-index: 1; }
.page-intro h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); max-width: 22ch; margin-bottom: var(--s-2); }
.page-intro .lead { max-width: 64ch; }

/* ----------------------------------------------------------
   LEGAL PAGES
   ---------------------------------------------------------- */
.legal-body { max-width: 70ch; }
.legal-body h2 { margin-top: var(--s-4); font-size: 1.6rem; }
.legal-body h3 { margin-top: var(--s-3); font-size: 1.15rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.06em; }
.legal-body p, .legal-body li { font-size: 0.98rem; }
.legal-body ul { padding-left: 22px; }
.legal-body ul li { margin-bottom: 6px; color: var(--text-soft); }

/* ----------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--s-2); }
.mt-2 { margin-top: var(--s-3); }
.mt-3 { margin-top: var(--s-4); }
.mt-4 { margin-top: var(--s-5); }
.divider { border: 0; height: 1px; background: var(--line); margin: var(--s-4) 0; }
.divider-gold { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: var(--s-4) 0; }
