/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #f2b544;              /* mustard page background */
  --card: #fdfaf3;            /* cream card */
  --card-2: #f5efe4;
  --ink: #1a1815;
  --ink-soft: #3d3833;
  --muted: #78706a;
  --mustard: #f5b841;
  --mustard-deep: #d99a24;
  --terracotta: #e07856;
  --coral: #e67d5c;
  --teal: #2e6b62;
  --teal-soft: #d7e6e2;
  --sand: #f0e3c9;
  --line: rgba(26, 24, 21, 0.1);

  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding: 32px 32px 0;
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.25; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.page {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }

/* Italic is reserved for a single accented word inside major section headlines.
   It always renders in the same display serif for a consistent editorial voice. */
.section-h em,
.what-title em,
.cta-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}

/* Small accented inline link, used sparingly (e.g. "saying hi" in the CTA). */
.link-accent {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.link-accent:hover { color: var(--ink); }

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  background: var(--card);
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand.small { font-size: 20px; }

.pill-nav {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: var(--card-2);
  border-radius: 100px;
}
.pill-nav a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 100px;
  transition: all .2s;
}
.pill-nav a:hover { color: var(--ink); }
.pill-nav a.active {
  background: var(--ink);
  color: var(--card);
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  transition: all .2s;
}
.contact-chip:hover { background: var(--ink); color: var(--card); border-color: var(--ink); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.contact-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ea44f;
  box-shadow: 0 0 0 0 rgba(46,164,79,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,164,79,.5); }
  50% { box-shadow: 0 0 0 8px rgba(46,164,79,0); }
}

/* ---------- HERO CARD ---------- */
.hero-card {
  background: var(--card);
  padding: 60px 72px 40px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-title .accent {
  color: var(--terracotta);
}

.hero-email {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color .2s ease;
}
.hero-email:hover { color: var(--terracotta); }

/* photo w/ brush */
.hero-center {
  position: relative;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.brush {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.brush svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(224, 120, 86, 0.15));
}
.photo {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 440px;
  overflow: hidden;
  border-radius: 8px 8px 8px 8px;
  background: var(--sand);
}
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  color: var(--muted);
  font-size: 14px;
  gap: 4px;
  text-align: center;
  padding: 20px;
  background: repeating-linear-gradient(45deg, var(--sand), var(--sand) 10px, var(--card-2) 10px, var(--card-2) 20px);
}
.photo-placeholder small { font-size: 12px; opacity: .7; }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.hero-tag {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 300px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}
.badge-ring {
  position: relative;
  width: 110px;
  height: 110px;
}
.badge-ring svg {
  width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.badge-inner {
  position: absolute;
  inset: 22px;
  background: var(--ink);
  color: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.cert-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

/* Hero footer */
.hero-footer {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.years {
  display: flex;
  align-items: center;
  gap: 12px;
}
.years-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.years-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  line-height: 1.4;
}
.hero-meta-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-left: auto;
}
.hero-meta-row > div { display: flex; flex-direction: column; gap: 4px; }
.meta-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-v {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- WHAT SECTION ---------- */
.what-section {
  background: var(--card);
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.what-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--card-2);
  border-radius: 16px;
  transition: all .25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { transform: translateX(4px); }
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card.teal .icon { background: var(--teal); }
.service-card.mustard .icon { background: var(--mustard); color: var(--ink); }
.service-card.coral .icon { background: var(--coral); }
.service-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 2px;
}
.service-sub {
  font-size: 13px;
  color: var(--muted);
}

.what-title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.what-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 620px;
}

.stat-row {
  display: flex;
  gap: 56px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-num span { font-size: 22px; color: var(--terracotta); margin-left: 2px; }
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- EXPERIENCE ---------- */
.exp-section {
  background: var(--card);
  padding: 80px 72px;
  border-top: 1px solid var(--line);
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--terracotta);
}
.section-h {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.exp-head { margin-bottom: 48px; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.exp-item {
  padding: 32px;
  background: var(--card-2);
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: all .3s ease;
  position: relative;
}
.exp-item:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 20px 40px rgba(26, 24, 21, 0.06);
}
.exp-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all .3s ease;
}
.exp-logo img {
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
  display: block;
}
.exp-logo:empty {
  background: linear-gradient(135deg, var(--sand), var(--card-2));
}
.exp-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.exp-role {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.exp-company {
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.exp-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.exp-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.exp-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- VENTURES ---------- */
.ventures-section {
  background: var(--card);
  padding: 80px 72px;
  border-top: 1px solid var(--line);
}
.v-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.v-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.55;
}

.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.v-card:hover { transform: translateY(-6px); }
.v-mockup {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  color: var(--ink);
}
.v-card--mustard .v-mockup { background: linear-gradient(135deg, #f5c04e, #f2a02a); }
.v-card--sand .v-mockup { background: linear-gradient(135deg, #ecdcc0, #d7c19d); }
.v-card--coral .v-mockup { background: linear-gradient(135deg, #f0a48c, #e07856); color: white; }
.mockup-icon svg { width: 56px; height: 56px; }
.mockup-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mockup-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ink);
  color: var(--card);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.v-body {
  padding: 24px;
  background: var(--card-2);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.v-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}
.v-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: auto;
}
.v-tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  font-weight: 500;
}
.v-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
}
.v-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- GALLERY ---------- */
.gallery-section {
  background: var(--card);
  padding: 80px 72px;
  border-top: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}
.gallery-grid .g-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--card-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .3s ease;
}
.gallery-grid .g-item:hover { transform: scale(1.02); }
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item.wide { grid-column: span 2; }
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity .3s ease;
  text-transform: capitalize;
}
.gallery-grid .g-item:hover .g-caption { opacity: 1; }

.gallery-grid .g-skeleton {
  background: linear-gradient(90deg, var(--card-2) 25%, #ebe3d3 50%, var(--card-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 14px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.gallery-empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 40px 20px;
  background: var(--card-2);
  border-radius: 14px;
  border: 1px dashed var(--line);
}
.gallery-empty code {
  background: var(--card);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--terracotta);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid .g-item.wide { grid-column: span 1; }
}

/* ---------- SKILLS STRIP ---------- */
.skills-strip {
  background: var(--card-2);
  padding: 60px 72px;
  border-top: 1px solid var(--line);
}
.skills-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.skill-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.skill p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- CTA / CONTACT ---------- */
.cta-section {
  background: var(--card);
  padding: 100px 72px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.info-k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-v {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
a.info-v:hover { color: var(--terracotta); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--card);
  padding: 24px 72px;
  border-radius: 0 0 20px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.footer-meta { font-size: 12px; color: var(--muted); font-family: var(--mono); letter-spacing: 0.04em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-right { grid-column: span 2; flex-direction: row; align-items: center; margin-top: 24px; }
  .exp-grid, .v-grid { grid-template-columns: 1fr 1fr; }
  .skills-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  body { padding: 12px 12px 0; }
  .nav { flex-wrap: wrap; padding: 14px 16px; gap: 12px; }
  .nav-toggle { display: flex; }
  .brand { font-size: 20px; }
  .pill-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 2px;
    background: var(--card-2);
    border-radius: 14px;
    padding: 8px;
  }
  .pill-nav.open { display: flex; }
  .pill-nav a { text-align: left; padding: 12px 16px; border-radius: 10px; }
  .nav-right { order: 4; width: 100%; display: none; }
  .pill-nav.open + .nav-right { display: block; }
  .contact-chip { width: 100%; justify-content: center; }
  .hero-card, .what-section, .exp-section, .ventures-section, .cta-section, .skills-strip { padding: 40px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { grid-column: auto; flex-direction: column; align-items: flex-start; }
  .hero-center { height: 400px; }
  .photo { width: 260px; height: 360px; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-meta-row { margin-left: 0; gap: 24px; }
  .what-section { grid-template-columns: 1fr; gap: 40px; }
  .exp-grid, .v-grid { grid-template-columns: 1fr; }
  .skills-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .stat-row { flex-wrap: wrap; gap: 32px; }
  .footer { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
}
