/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #fdfcf9;
  --green:       #3e7b56;
  --green-soft:  #e5f0e8;
  --green-mid:   #2d6040;
  --mocha:       #6b5647;
  --mocha-soft:  #f3ece5;
  --mocha-mid:   #54423a;
  --text:        #2f261f;
  --muted:       #6e6259;
  --border:      #d8cec4;
  --bg:          #fdfcf9;
  --card-bg:     #ffffff;
  --nav-h:       60px;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 2px 16px rgba(47,38,31,.07);
  --shadow-lg:   0 8px 32px rgba(47,38,31,.12);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--mocha));
  z-index: 1000;
  transition: width .1s linear;
}

/* ===== NAV ===== */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253,252,249,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -.5px;
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: .95rem;
}

nav { display: flex; gap: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover { background: var(--green-soft); }

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--green);
  background: var(--green-soft);
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.blob-green {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #6ecf93, #3e7b56);
  top: -140px; left: -100px;
  animation: driftA 18s ease-in-out infinite alternate;
}

.blob-mocha {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #c9a48a, #6b5647);
  bottom: -100px; right: -80px;
  animation: driftB 22s ease-in-out infinite alternate;
}

.blob-accent {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #a8d5b5, #3e7b56);
  top: 55%; left: 55%;
  opacity: .18;
  animation: driftC 14s ease-in-out infinite alternate;
}

@keyframes driftA {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(60px, 40px, 0) scale(1.08); }
  100% { transform: translate3d(20px, 80px, 0) scale(.95); }
}

@keyframes driftB {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-50px, -30px, 0) scale(1.1); }
  100% { transform: translate3d(-80px, 20px, 0) scale(.92); }
}

@keyframes driftC {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-40px, -60px, 0) scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
}

.typed-wrap {
  display: inline-block;
  color: var(--green);
  min-height: 1.2em;
}

.typed {
  font-style: italic;
}

.cursor {
  display: inline-block;
  color: var(--green);
  animation: blink .75s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(62,123,86,.3);
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62,123,86,.38);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-ghost:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
}

/* ===== STAT CARDS ===== */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--mocha));
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mocha);
  line-height: 1;
}

.stat-card p {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--green);
  border-radius: 4px;
  margin-top: 8px;
}

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 680px) {
  .about-layout { grid-template-columns: 1fr; }
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: .97rem;
  line-height: 1.8;
}

.about-text strong { color: var(--text); font-weight: 600; }

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.info-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.info-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 2px;
}

.info-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}

.info-value a {
  color: var(--green);
  text-decoration: none;
}

.info-value a:hover {
  text-decoration: underline;
}

/* ===== TIMELINE / ROLE CARDS ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.role-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.role-card:hover { box-shadow: var(--shadow-lg); }

.role-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.role-header:hover { background: var(--green-soft); }

.role-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green  { background: var(--green); box-shadow: 0 0 0 3px rgba(62,123,86,.2); }
.dot-mocha  { background: var(--mocha); box-shadow: 0 0 0 3px rgba(107,86,71,.2); }

.role-header-text { flex: 1; min-width: 0; }

.role-header-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.meta {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 2px;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
}

.role-arrow {
  font-size: 1rem;
  color: var(--muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.role-header[aria-expanded="true"] .role-arrow {
  transform: rotate(180deg);
  color: var(--green);
}

.role-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .45s cubic-bezier(.4,0,.2,1);
  padding: 0 24px;
}

.role-body.open {
  max-height: 1400px;
  padding: 0 24px 24px;
}

.role-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.role-body li {
  padding-left: 16px;
  position: relative;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
}

.role-body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: .8rem;
  top: .15em;
}

.role-body strong { color: var(--text); font-weight: 600; }

.role-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--mocha);
  background: var(--mocha-soft);
  border: 1px dashed var(--mocha);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-bottom: 16px;
  opacity: .85;
}

/* ===== BEFORE/AFTER ===== */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.before-after figure {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.before-after img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.before-after figure:hover img { transform: scale(1.03); }

.before-after figcaption {
  padding: 8px 12px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ===== TAGS ===== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 600;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid rgba(62,123,86,.18);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.tag:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.tag-lg {
  padding: 6px 14px;
  font-size: .82rem;
  border-radius: var(--radius-sm);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== SKILLS ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.skill-group {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.skill-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.skill-group-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mocha);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-accent {
  height: 5px;
  width: 100%;
}

.accent-green { background: linear-gradient(90deg, var(--green), #6ecf93); }
.accent-mocha { background: linear-gradient(90deg, var(--mocha), #c9a48a); }

.project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.project-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.project-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.project-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.project-footer {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.project-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.badge-green { background: var(--green-soft); color: var(--green); }
.badge-mocha { background: var(--mocha-soft); color: var(--mocha); }

/* ===== EDUCATION ===== */
.edu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

.edu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.edu-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.edu-body { flex: 1; }

.edu-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.edu-minor {
  font-size: .87rem;
  color: var(--mocha);
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 18px;
}

.edu-row {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}

.edu-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 2px;
}

.edu-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.edu-courses { margin-top: 4px; }

/* ===== CONTACT ===== */
.contact-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  box-shadow: 0 12px 40px rgba(62,123,86,.3);
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  top: -100px; right: -60px;
}

.contact-box::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  bottom: -80px; left: -40px;
}

.contact-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}

.contact-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-actions .btn-primary {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.contact-actions .btn-primary:hover {
  background: var(--green-soft);
}

.contact-actions .btn-ghost {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

.contact-actions .btn-ghost:hover {
  background: rgba(255,255,255,.15);
}

/* ===== FOOTER ===== */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer p {
  font-size: .82rem;
  color: var(--muted);
}

.footer-sub { color: var(--border); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */

/* --- Tablet (≤ 860px) --- */
@media (max-width: 860px) {
  :root { --nav-h: 56px; }

  h1 { font-size: clamp(2rem, 7vw, 3rem); }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .edu-row { gap: 20px; }
}

/* --- Mobile (≤ 640px) --- */
@media (max-width: 640px) {

  /* Nav — hamburger menu */
  .nav-toggle { display: flex; }

  nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(253,252,249,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    z-index: 850;
    box-shadow: 0 8px 24px rgba(47,38,31,.1);
  }

  nav.open { display: flex; }

  nav a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
  }

  nav a:last-child { border-bottom: none; }

  /* Hero */
  .hero-inner {
    padding-top: clamp(32px, 6vw, 56px);
    padding-bottom: clamp(32px, 6vw, 56px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
  }

  .hero-actions .btn { width: 100%; justify-content: center; }

  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 28px; }

  /* Education */
  .edu-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .edu-row {
    flex-direction: column;
    gap: 12px;
  }

  /* Experience */
  .role-header {
    padding: 16px 18px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .role-tags { display: none; }

  .role-body { padding: 0 18px; }
  .role-body.open { padding: 0 18px 20px; }

  /* Before/After */
  .before-after { grid-template-columns: 1fr; }

  /* Skills */
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-box { padding: 36px 24px; }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .contact-actions .btn { justify-content: center; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }

  /* Section title */
  .section-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Role disclaimer */
  .role-disclaimer { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* --- Small phones (≤ 380px) --- */
@media (max-width: 380px) {
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-num { font-size: 1.8rem; }
  h1 { font-size: 1.9rem; }
  .btn { padding: 11px 18px; font-size: .85rem; }
}
