/* ═══════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:       #0c0c0e;
  --bg2:      #141416;
  --bg3:      #1b1b1e;
  --text:     #e4e2de;
  --text2:    #8a8886;
  --text3:    #4a4a4d;
  --accent:   #c8a97e;
  --green:    #4ade80;
  --border:   rgba(255, 255, 255, 0.07);
  --border2:  rgba(255, 255, 255, 0.12);

  --sans: 'Inter', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.15, 1);

  --r: 14px;
  --r2: 20px;
}

/* Light theme overrides */
[data-theme="light"] {
  --bg:       #f5f3ef;
  --bg2:      #edeae4;
  --bg3:      #e3e0d8;
  --text:     #1a1916;
  --text2:    #6b6763;
  --text3:    #b0ada8;
  --accent:   #9c7a4e;
  --border:   rgba(0, 0, 0, 0.08);
  --border2:  rgba(0, 0, 0, 0.14);
  --nav-bg:   rgba(245, 243, 239, 0.88);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  transition: opacity 0.4s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 169, 126, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    border-color 0.35s,
    opacity 0.3s;
  mix-blend-mode: exclusion;
}

.cursor.hovered {
  width: 64px;
  height: 64px;
  border-color: rgba(200, 169, 126, 0.8);
}

.cursor.hidden { opacity: 0; }

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot.hidden { opacity: 0; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 120px 0;
}

/* ═══════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════ */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--text2);
}

.section-head {
  margin-bottom: 64px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-decoration: none;
  border-radius: 100px;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition:
    background 0.3s var(--ease-out),
    color 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 169, 126, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border2);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   TEXT LINK
═══════════════════════════════════════ */
.text-link {
  display: inline-block;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 28px 0;
  transition:
    padding 0.45s var(--ease-out),
    background 0.45s,
    backdrop-filter 0.45s,
    border-color 0.45s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 16px 0;
  background: var(--nav-bg, rgba(12, 12, 14, 0.82));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text);
  z-index: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.855rem;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.25s, border-color 0.25s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--text) !important;
  color: var(--bg) !important;
  border-color: var(--text) !important;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  cursor: pointer;
  color: var(--text2);
  transition:
    background 0.3s var(--ease-out),
    color 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--bg3);
  color: var(--text);
  transform: rotate(20deg);
}

.theme-icon { display: flex; align-items: center; justify-content: center; }
.theme-icon-light { display: none; }

[data-theme="light"] .theme-icon-dark  { display: none; }
[data-theme="light"] .theme-icon-light { display: flex; }
[data-theme="light"] .grain { opacity: 0.02; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

.nav-toggle.open span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(12, 12, 14, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.25s;
}

.mobile-menu a:hover { color: var(--text); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 100px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease-out) 0.1s, transform 0.7s var(--ease-out) 0.1s;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: breathe 2.2s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 1.04;
  margin-bottom: 36px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .accent-line {
  font-style: italic;
  color: var(--text2);
}

.hero-title .word {
  display: inline-block;
  transform: translateY(108%);
  opacity: 0;
  transition:
    transform 1s var(--ease-out),
    opacity 1s var(--ease-out);
}

/* stagger per line */
.hero-title.play .line:nth-child(1) .word { transition-delay: 0.05s; }
.hero-title.play .line:nth-child(2) .word { transition-delay: 0.2s; }
.hero-title.play .line:nth-child(3) .word:nth-child(1) { transition-delay: 0.32s; }
.hero-title.play .line:nth-child(3) .word:nth-child(2) { transition-delay: 0.42s; }

.hero-title.play .word {
  transform: translateY(0);
  opacity: 1;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text2);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.55s, transform 0.9s var(--ease-out) 0.55s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.72s, transform 0.9s var(--ease-out) 0.72s;
}

/* triggered by JS */
.hero.play .hero-badge,
.hero.play .hero-sub,
.hero.play .hero-ctas {
  opacity: 1;
  transform: translateY(0);
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  writing-mode: vertical-rl;
}

.scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--text3) 0%, transparent 100%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.count { color: var(--text); }

.stat-sign {
  font-size: 2rem;
  color: var(--accent);
}

.stat p {
  font-size: 0.82rem;
  color: var(--text2);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.82;
  margin-bottom: 22px;
}

.about-text p:last-of-type { margin-bottom: 36px; }

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 30px;
  transition:
    border-color 0.3s,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}

.card:hover {
  border-color: rgba(200, 169, 126, 0.3);
  transform: translateX(8px);
  box-shadow: -8px 0 24px rgba(200, 169, 126, 0.06);
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.card p {
  font-size: 0.855rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   SKILLS
═══════════════════════════════════════ */
.skills {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
}

.skill-group h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 0.855rem;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  cursor: default;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    color 0.25s,
    border-color 0.25s,
    background 0.25s;
}

.tag.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tag:hover {
  color: var(--text);
  border-color: rgba(200, 169, 126, 0.4);
  background: rgba(200, 169, 126, 0.06);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 52px 40px;
  position: relative;
  transition:
    background 0.35s,
    opacity 0.7s var(--ease-out) var(--d, 0s),
    transform 0.7s var(--ease-out) var(--d, 0s);
}

.service-card:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}

.service-card:hover { background: var(--bg2); }

.svc-num {
  display: block;
  font-size: 0.72rem;
  color: var(--text3);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  font-weight: 500;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 18px;
}

.service-card > p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card li {
  font-size: 0.84rem;
  color: var(--text3);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.78rem;
  top: 1px;
}

/* ═══════════════════════════════════════
   EXPERIENCE
═══════════════════════════════════════ */
.experience {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 700px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border2) 0%, transparent 100%);
}

.tl-item {
  position: relative;
  padding-bottom: 60px;
  transition:
    opacity 0.7s var(--ease-out) var(--d, 0s),
    transform 0.7s var(--ease-out) var(--d, 0s);
}

.tl-item:not(.visible) {
  opacity: 0;
  transform: translateX(-20px);
}

.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -40px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg2);
  box-shadow: 0 0 0 4px rgba(200, 169, 126, 0.12);
}

.tl-date {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 500;
  margin-bottom: 10px;
}

.tl-body h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.tl-co {
  font-size: 0.84rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.tl-body > p:last-child {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  background: var(--bg);
}

.contact-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 14px 0 22px;
}

.contact-title em {
  font-style: italic;
  color: var(--text2);
}

.contact-block > p {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 52px;
}

.contact-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.footer-inner p {
  font-size: 0.78rem;
  color: var(--text3);
}

.footer-inner a {
  font-size: 0.82rem;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-inner a:hover { color: var(--text); }

/* ═══════════════════════════════════════
   SCROLL REVEAL CLASSES
═══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s var(--ease-out) var(--d, 0s),
    transform 0.85s var(--ease-out) var(--d, 0s);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.75s var(--ease-out) var(--d, 0s),
    transform 0.75s var(--ease-out) var(--d, 0s);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .skills-grid  { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section   { padding: 90px 0; }

  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .nav-inner { padding: 0 24px; }

  .hero {
    padding: 100px 24px 80px;
    min-height: 100svh;
  }

  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px solid var(--border); }
  .stat:nth-child(4) { border-right: none; }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }

  .hero-ctas { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
  .contact-ctas { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-title .word { transform: none; opacity: 1; }
  .hero-sub, .hero-ctas, .hero-badge { opacity: 1; transform: none; }
}
