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

:root {
  --bg-dark: #070709;
  --bg-card: rgba(14, 14, 18, 0.78);
  --border-card: rgba(255, 255, 255, 0.08);
  --accent-red: #e62429;
  --accent-red-bright: #ff2a3b;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --font-heading: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-red) var(--bg-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 3px;
}

/* Canvas & Background Styling */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.canvas-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 40%, rgba(7, 7, 9, 0.35) 0%, rgba(7, 7, 9, 0.88) 100%);
  pointer-events: none;
}

/* Preloader */
.loader {
  position: fixed;
  inset: 0;
  background-color: #070709;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 280px;
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-red-bright);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.loader-bar-bg {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-bright));
  border-radius: 4px;
  transition: width 0.15s ease-out;
  box-shadow: 0 0 12px rgba(230, 36, 41, 0.6);
}

.loader-percent {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

/* Top Navigation Header */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(7, 7, 9, 0.85), rgba(7, 7, 9, 0));
  backdrop-filter: blur(8px);
}

.nav-left {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-main);
}

.nav-divider {
  margin: 0 8px;
  color: var(--accent-red);
}

.nav-subrole {
  color: var(--text-muted);
}

.availability-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
}

.star-icon, .sparkle-icon, .accent-sparkle {
  color: var(--accent-red-bright);
  margin-right: 4px;
}

/* Main Content Container */
.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px 60px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  overflow: hidden;
}

.watermark-title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 15rem);
  font-weight: 900;
  color: rgba(180, 20, 25, 0.38);
  letter-spacing: -0.02em;
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
  z-index: -1;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 32px;
  width: 100%;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.handwritten-intro {
  font-family: var(--font-hand);
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-main);
}

.highlight-name {
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-red-bright);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 420px;
}

.worldwide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-center-spacer {
  /* Gives space so balcony frame sequence canvas remains clearly visible */
  min-height: 350px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.idea-box {
  background: rgba(14, 14, 18, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 260px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent-red-bright);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  line-height: 1.3;
}

/* GENERAL SECTION STYLES */
.section {
  margin-bottom: 90px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-main);
}

.section-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-link:hover {
  color: var(--accent-red-bright);
}

/* SELECTED PROJECTS GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 36, 41, 0.4);
  box-shadow: 0 12px 32px rgba(230, 36, 41, 0.15);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background: #111116;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 7, 9, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.fashion-mockup {
  background: linear-gradient(135deg, #181820, #0a0a0e);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.mockup-content {
  text-align: center;
}

.mockup-tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--accent-red-bright);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.mockup-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
}

.project-footer {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-red-bright);
}

.project-info {
  flex: 1;
  margin: 0 16px;
}

.project-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.project-category {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.project-arrow {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.project-card:hover .project-arrow {
  transform: translateX(4px);
  color: var(--accent-red-bright);
}

/* TRIPLE GRID (Education/Skills, Process, Quote) */
.triple-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 24px;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 32px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-block {
  margin-bottom: 24px;
}

.sub-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-red-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.timeline-item {
  margin-bottom: 14px;
}

.item-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.item-date {
  font-size: 11px;
  color: var(--accent-red-bright);
}

.item-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.skill-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.skill-pill:hover {
  border-color: var(--accent-red-bright);
  color: var(--text-main);
}

/* WORK PROCESS LIST */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent-red-bright);
  min-width: 24px;
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.step-info h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-main);
}

.step-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  min-height: 240px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 36, 41, 0.4);
  box-shadow: 0 12px 28px rgba(230, 36, 41, 0.12);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.client-role {
  font-size: 11px;
  color: var(--accent-red-bright);
  letter-spacing: 0.05em;
}

/* RED QUOTE CARD */
.red-quote-card {
  background: linear-gradient(150deg, #8b0f13 0%, #50070a 100%);
  border: 1px solid rgba(230, 36, 41, 0.4);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 12px 32px rgba(139, 15, 19, 0.3);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-red-bright);
  opacity: 0.6;
}

.quote-body {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin: 16px 0 24px;
}

.quote-signature {
  font-family: var(--font-hand);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.quote-footer {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 40px;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 360px;
}

.cta-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-red-bright);
  text-decoration: none;
  border: 1px solid rgba(230, 36, 41, 0.4);
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-pill-btn:hover {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(230, 36, 41, 0.4);
}

.contact-items-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.contact-link-item {
  text-decoration: none;
}

.contact-link-item:hover {
  border-color: rgba(230, 36, 41, 0.5);
  background: rgba(230, 36, 41, 0.08);
  transform: translateX(6px);
}

.workspace-showcase-card {
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.laptop-graphic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.laptop-screen {
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, #181824, #0d0d14);
  border: 4px solid #22222d;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-align: center;
}

.screen-text {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-main);
}

.screen-bar {
  width: 40px;
  height: 4px;
  background: var(--accent-red-bright);
  margin-top: 8px;
  border-radius: 2px;
}

.laptop-base {
  width: 115%;
  height: 8px;
  background: #2a2a38;
  border-radius: 0 0 6px 6px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-center-spacer {
    display: none;
  }
  .hero-right {
    align-items: flex-start;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .triple-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .top-nav {
    padding: 16px 24px;
  }
}

@media (max-width: 768px) {
  .nav-divider, .nav-subrole {
    display: none; /* Hide extra roles on mobile */
  }
  .nav-left {
    font-size: 10px;
  }
  .availability-badge {
    padding: 6px 12px;
    font-size: 9px;
  }
  .content-wrapper {
    padding: 80px 16px 40px;
  }
  .watermark-title {
    font-size: 18vw;
    top: 20px;
  }
  .hero-name {
    font-size: 3.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .glass-card, .contact-grid, .red-quote-card {
    padding: 24px 20px;
  }
  .contact-heading {
    font-size: 2.5rem;
  }
  .quote-body {
    font-size: 1.1rem;
  }
  .quote-signature {
    font-size: 2.5rem;
  }
  .project-image-wrapper {
    height: 200px;
  }
}

/* SITE FOOTER STYLES */
.site-footer {
  position: relative;
  z-index: 10;
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
  color: var(--text-main);
  margin-top: 60px;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-founder-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.footer-founder-tag strong {
  color: var(--accent-red-bright);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--accent-red-bright);
  transform: translateX(4px);
}

.footer-contact-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact-info a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--accent-red-bright);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(230, 36, 41, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.copyright-text strong {
  color: var(--text-main);
}

.back-to-top-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.back-to-top-btn:hover {
  color: var(--accent-red-bright);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

