/* ============================================================
   Keating Consults — redesign
   Palette derived from the existing site:
   navy #1a2c37 · blue #1246d6/#265cf2 · gold #cca20c · greys
   ============================================================ */

:root {
  --ink: #14242e;
  --ink-2: #1a2c37;
  --slate: #33434c;
  --muted: #5d6e77;
  --blue: #1246d6;
  --blue-bright: #265cf2;
  --blue-soft: #e9eefc;
  --gold: #cca20c;
  --gold-soft: #faf3dc;
  --paper: #fbfaf7;
  --cloud: #f3f5f4;
  --line: #e4e8e7;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(20, 36, 46, 0.05), 0 4px 14px rgba(20, 36, 46, 0.05);
  --shadow-md: 0 2px 6px rgba(20, 36, 46, 0.06), 0 14px 34px rgba(20, 36, 46, 0.09);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Epilogue", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--paper);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; line-height: 1.35; }

p a { color: var(--blue); }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.lede { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }

section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(18, 70, 214, 0.28);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20, 36, 46, 0.22);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 36, 46, 0.07);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink-2);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 0.96rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 72px;
  align-items: center;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.hero .lede { margin: 26px 0 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-trust svg { color: var(--gold); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-card {
  background: var(--ink-2);
  border-radius: 26px;
  padding: 40px 36px;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 92, 242, 0.55), transparent 70%);
}
.hero-card blockquote {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 480;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-card cite {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.66);
}
.hero-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.95rem; }
.hero-chip {
  position: absolute;
  left: -28px;
  bottom: -24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  z-index: 2;
}
.hero-chip .chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-chip strong { display: block; font-size: 0.92rem; color: var(--ink); line-height: 1.3; }
.hero-chip span { font-size: 0.8rem; color: var(--muted); }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 92, 242, 0.09), transparent 68%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 162, 12, 0.09), transparent 68%);
}

/* ---------- Accreditation band ---------- */
.accred {
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 0;
}
.accred .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.accred-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(204, 162, 12, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.accred p { max-width: 72ch; font-size: 0.97rem; }
.accred strong { color: var(--white); }

/* ---------- Services ---------- */
.services { background: var(--cloud); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.service-card p { color: var(--muted); font-size: 0.97rem; flex-grow: 1; }
.service-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.service-card:hover .service-link .arrow { transform: translateX(3px); }
.service-link .arrow { transition: transform 0.15s ease; }

.service-card.card-invite {
  background: var(--ink-2);
  border-color: var(--ink-2);
}
.card-invite h3, .card-invite .service-link { color: var(--white); }
.card-invite p { color: rgba(255, 255, 255, 0.7); }
.card-invite .service-icon { background: rgba(204, 162, 12, 0.16); color: var(--gold); }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px 32px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 26px;
  background: linear-gradient(160deg, var(--ink-2) 0%, #24506e 100%);
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-copy p { margin-bottom: 18px; }
.about-copy .section-head { margin-bottom: 26px; }
.about-points { list-style: none; margin: 28px 0 34px; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; }
.about-points svg { color: var(--gold); flex-shrink: 0; margin-top: 5px; }
.about-points strong { color: var(--ink); }

/* ---------- Pricing ---------- */
.pricing { background: var(--cloud); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  box-shadow: var(--shadow-md);
}
.price-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.featured .price-tag { background: rgba(204, 162, 12, 0.18); }
.price-card h3 { margin-bottom: 6px; }
.featured h3 { color: var(--white); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 560;
  color: var(--ink);
  line-height: 1.1;
  margin: 16px 0 4px;
}
.featured .price-amount { color: var(--white); }
.price-amount .was {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 10px;
}
.featured .price-amount .was { color: rgba(255, 255, 255, 0.5); }
.price-meta { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.featured .price-meta { color: rgba(255, 255, 255, 0.6); }
.price-list { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; }
.price-list svg { color: var(--gold); flex-shrink: 0; margin-top: 5px; }
.price-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}
.price-note code {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  background: var(--gold-soft);
  padding: 3px 10px;
  border-radius: 8px;
  letter-spacing: 0.06em;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }
.testi-card blockquote {
  font-size: 1rem;
  color: var(--slate);
  flex-grow: 1;
}
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testi-who strong { display: block; color: var(--ink); font-size: 0.97rem; }
.testi-who span { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 96px; }
.cta-inner {
  background: linear-gradient(135deg, var(--ink-2) 0%, #1c3d5a 55%, #1246d6 130%);
  border-radius: 28px;
  padding: 76px 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 162, 12, 0.22), transparent 70%);
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { max-width: 54ch; margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 84px 0 64px; }
.page-hero .lede { margin-top: 20px; }

/* ---------- Expertise detail ---------- */
.detail-section { padding: 0 0 40px; }
.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 52px;
  margin-bottom: 26px;
  scroll-margin-top: 100px;
}
.detail-card.flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.detail-card.flip .detail-intro { order: 2; }
.detail-card.flip .detail-list-wrap { order: 1; }
.detail-intro h2 { font-size: clamp(1.6rem, 2.6vw, 2.05rem); margin: 18px 0 14px; }
.detail-intro p { color: var(--muted); }
.detail-intro .service-icon { margin-bottom: 0; }
.detail-list-wrap h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.detail-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.detail-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.96rem;
  background: var(--cloud);
  border-radius: 12px;
  padding: 12px 16px;
}
.detail-list svg { color: var(--gold); flex-shrink: 0; margin-top: 5px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}
.contact-aside .section-head { margin-bottom: 30px; }
.contact-points { list-style: none; display: grid; gap: 20px; }
.contact-points li { display: flex; gap: 16px; align-items: flex-start; }
.contact-points .chip-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-points strong { display: block; color: var(--ink); margin-bottom: 2px; }
.contact-points p { font-size: 0.94rem; color: var(--muted); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 46px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { font-size: 0.95rem; color: var(--muted); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 70, 214, 0.1);
}
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-disclaimer { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: 72px 0 36px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) repeat(2, minmax(0, 2fr)) minmax(0, 3fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand { color: var(--white); margin-bottom: 18px; }
.footer-brand .brand-name small { color: rgba(255, 255, 255, 0.45); }
.footer-brand p { max-width: 40ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(255, 255, 255, 0.62); text-decoration: none; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Reveal animation ---------- */
/* Elements are visible by default; JS adds .pre only to elements below
   the fold, so content never flashes missing (no-JS, printing, crawlers). */
.reveal.pre {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .reveal.pre { opacity: 1; transform: none; }
  .reveal.in { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .hero { padding: 72px 0 96px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 480px; }
  .service-grid, .steps-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .detail-card, .detail-card.flip { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .detail-card.flip .detail-intro { order: 1; }
  .detail-card.flip .detail-list-wrap { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .service-grid, .steps-grid, .price-grid, .testi-grid { grid-template-columns: 1fr; }
  .detail-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .cta-inner { padding: 56px 28px; }
  .hero-chip { left: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
