
:root {
  /* Brand palette - Malen Studio */
  --brand-orange: #e79215;
  --brand-dark: #2d2928;
  --brand-white: #ffffff;
  --brand-accent: #e79215;
  --brand-accent-hover: #d08513;
  --brand-accent-weak: #fef7eb;
  --brand-warm: #f4e4d4;

  /* Base */
  --bg: #faf9f7;
  --bg-alt: #ffffff;
  --text: #2d2928;
  --text-light: #5c5856;
  --muted: #8a8785;
  --border: #e5e2df;

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(45,41,40,0.06);
  --shadow-lg: 0 20px 60px rgba(45,41,40,0.1);

  /* Typography */
  --font-sans: 'Corbel', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Corbel', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container.narrow {
  max-width: var(--container-narrow);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo {
  font-family: 'Corbel', var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-orange);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo .studio {
  color: var(--brand-white);
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-orange);
}

.nav a.cta-nav {
  background: var(--brand-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav a.cta-nav:hover {
  background: var(--brand-accent);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  text-align: center;
  background: 
    radial-gradient(circle at 20% 20%, rgba(231, 146, 21, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(231, 146, 21, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(45, 41, 40, 0.02) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(231, 146, 21, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero h1 span {
  font-style: italic;
  color: var(--brand-accent);
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brand-dark);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--brand-dark);
  transform: translateY(-3px);
}

.scroll-indicator {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.scroll-indicator:hover {
  color: var(--brand-orange);
}

.scroll-indicator:hover .scroll-line {
  background: linear-gradient(to bottom, var(--brand-orange), transparent);
}

.scroll-indicator .scroll-line {
  width: 3px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brand-dark), transparent);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 8rem 2rem;
}

.section.alt {
  background: var(--bg-alt);
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: center;
}

.section .subtitle {
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

/* ===== FOUNDERS ===== */
.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.founder {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.founder:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-accent-hover));
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.founder .role {
  color: var(--brand-accent);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.founder p:not(.role) {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.founder p:not(.role):last-of-type {
  margin-bottom: 1rem;
}

.founder .social-link {
  margin-top: auto;
  padding-top: 0.5rem;
  align-self: center;
}

/* ===== KEY FACTS ===== */
.facts-section {
  background: var(--brand-dark);
  color: white;
  padding: 6rem 2rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.fact-item {
  text-align: center;
}

.fact-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.fact-circle span {
  font-size: 2.5rem;
}

.fact-dark {
  background: #4a4744;
  color: white;
}

.fact-white {
  background: white;
  color: var(--brand-dark);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.fact-white span {
  font-size: 2rem;
}

.fact-orange {
  background: var(--brand-orange);
  color: white;
}

.fact-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: white;
}

.fact-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}

.facts-divider {
  height: 3px;
  background: var(--brand-orange);
  margin-top: 4rem;
  max-width: 100%;
}

@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .fact-circle {
    width: 140px;
    height: 140px;
  }
}

/* ===== PROBLEMS TILES ===== */
#services {
  background: var(--brand-white);
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tile {
  position: relative;
  height: 180px;
  padding: 1.5rem;
  background: #f5f4f3;
  border: none;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.tile:hover {
  box-shadow: var(--shadow);
}

.tile-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  transition: opacity 0.3s ease;
}

.tile-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  transition: opacity 0.3s ease;
}

.tile-detail {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  margin: 0;
  background: #d9d7d5;
  color: var(--brand-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tile:hover .tile-icon,
.tile:hover .tile-title {
  opacity: 0;
}

.tile:hover .tile-detail,
.tile.active .tile-detail {
  opacity: 1;
}

.tile.active .tile-icon,
.tile.active .tile-title {
  opacity: 0;
}

@media (max-width: 1024px) {
  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tile {
    height: 170px;
  }
  
  .tile-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .tile {
    height: 150px;
    padding: 1rem;
  }
  
  .tile-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
  }
  
  .tile-title {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .tile-detail {
    font-size: 0.85rem;
    padding: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 400px) {
  .tiles-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .tile {
    height: auto;
    min-height: 100px;
    padding: 1.25rem;
  }
  
  .tile-title {
    font-size: 0.9rem;
  }
  
  .tile-detail {
    font-size: 0.9rem;
    padding: 1.25rem;
  }
}

/* ===== CLIENTS ===== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.client-item:hover {
  border-color: var(--brand-accent);
  transform: translateX(8px);
}

.client-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-accent-weak), var(--brand-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.client-icon i,
.client-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-dark);
}

.client-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-item span {
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.contact-section h2 {
  color: var(--text);
}

.contact-section .subtitle {
  color: var(--text-light);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--brand-dark);
  color: var(--brand-white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-actions a:hover {
  background: var(--brand-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-actions .linkedin-company {
  background: #0A66C2;
}

.contact-actions .linkedin-company:hover {
  background: #004182;
}

.contact-info {
  margin-top: 3rem;
  color: var(--text-light);
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0A66C2;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-linkedin:hover {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

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

/* ===== SOCIAL LINK ===== */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--brand-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.2s ease;
}

.social-link::before {
  content: 'in';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #0A66C2;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 3px;
}

.social-link:hover {
  border-color: #0A66C2;
  color: #0A66C2;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--brand-dark);
  color: var(--brand-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brand-orange);
  transform: translateY(-3px);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav.nav-open {
    right: 0;
  }

  .nav a {
    font-size: 1.5rem;
  }

  .nav a.cta-nav {
    margin-top: 1rem;
  }

  .nav-open-body {
    overflow: hidden;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .founders {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    display: none;
  }

  .footer-left {
    align-items: center;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero animation on load */
.hero-content {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid items */
.founders .founder.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.founders .founder.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }

.tiles-grid .tile.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.tiles-grid .tile.animate-on-scroll:nth-child(2) { transition-delay: 0.05s; }
.tiles-grid .tile.animate-on-scroll:nth-child(3) { transition-delay: 0.1s; }
.tiles-grid .tile.animate-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.tiles-grid .tile.animate-on-scroll:nth-child(5) { transition-delay: 0.2s; }
.tiles-grid .tile.animate-on-scroll:nth-child(6) { transition-delay: 0.25s; }
.tiles-grid .tile.animate-on-scroll:nth-child(7) { transition-delay: 0.3s; }
.tiles-grid .tile.animate-on-scroll:nth-child(8) { transition-delay: 0.35s; }

.client-grid .client-item.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.client-grid .client-item.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.client-grid .client-item.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.client-grid .client-item.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.facts-grid .fact-item.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.facts-grid .fact-item.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.facts-grid .fact-item.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

/* ===== PORTFOLIO PAGE ===== */
.portfolio-page {
  padding-top: 100px;
}

.portfolio-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.portfolio-hero--minimal {
  padding-bottom: 1rem;
}

.portfolio-hero--minimal h1 {
  margin-bottom: 0;
}

.portfolio-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
}

.portfolio-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

/* Project Content - Overview + Video/Sidebar Layout */
.project-content {
  padding-top: 0;
  padding-bottom: 4rem;
}

.project-content .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-overview .project-description {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 900px;
}

.project-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.project-media {
  width: 100%;
}

.project-image,
.project-video {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.project-video {
  cursor: pointer;
}

.project-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-sidebar h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
}

.project-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-features li {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.project-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.project-technologies .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.project-technologies .tech-tags span {
  background: #f5f4f3;
  color: var(--text);
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Portfolio Mobile */
@media (max-width: 768px) {
  .portfolio-hero h1 {
    font-size: 1.75rem;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
