/* ============================================
   Lucky Lot. — Landing Page Styles
   Page-specific styles only. Base design system
   inherited from ../styles.css
   ============================================ */

/* --- Additional font faces --- */
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../assets/fonts/PPNeueMontreal-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --- LP Hero --- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8% 80px;
  background: var(--color-lime);
}

.lp-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.lp-hero-resolve {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.55;
  max-width: 680px;
  margin-bottom: 48px;
  opacity: 0.75;
}

.lp-hero-resolve .accent {
  font-family: var(--font-heading);
  font-style: normal;
}

.lp-hero-arrow {
  position: absolute;
  right: 8%;
  bottom: 80px;
  display: block;
  width: 40px;
  height: 40px;
  color: var(--color-black);
  opacity: 0.4;
  transition: opacity 0.5s ease;
  animation: arrowBounce 2s ease-in-out infinite;
}

.lp-hero-arrow:hover {
  opacity: 0.8;
  animation-play-state: paused;
}

.lp-hero-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- LP Problem + Services (floating module on lime) --- */
.lp-problem-services {
  background: var(--color-lime);
  padding: 0 5% 120px;
}

.lp-services-module {
  background: var(--color-purple);
  border-radius: 16px;
  padding: 80px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.lp-problem-inner {
  padding: 0 8%;
}

.lp-problem-statements {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 740px;
}

.lp-problem-statement {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.55;
  opacity: 0.75;
}

.lp-services-top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 0 8%;
  margin-bottom: 48px;
}

.lp-problem-statements {
  flex: 1;
}

.lp-services-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  color: var(--color-lime);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-align: right;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: -0.15em;
}

/* --- Service Tier Bands --- */
.service-tier {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: transparent;
  transition: background 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-tier-number {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 400;
  color: var(--color-lime);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.4s ease, top 0.5s cubic-bezier(0.76, 0, 0.24, 1), transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.service-tier.expanded .service-tier-number {
  left: auto;
  right: 8%;
  top: auto;
  bottom: 20px;
  transform: translateY(0);
  color: var(--color-black);
  opacity: 0.15;
}

.service-tier:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (hover: hover) {
  .service-tier:not(.expanded):hover {
    background: var(--color-lime);
  }
}

.service-tier.expanded {
  background: var(--color-lime);
  border-color: rgba(0, 0, 0, 0.08);
}

.service-tier.expanded + .service-tier.expanded {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.service-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 8%;
  gap: 40px;
}

.service-tier-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-shrink: 0;
}

.service-tier-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.service-tier-name .tier-suffix {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.75em;
}

@media (hover: hover) {
  .service-tier:not(.expanded):hover .service-tier-name {
    transform: translateX(6px);
  }
}

@media (hover: hover) {
  .service-tier:not(.expanded):hover .service-tier-number {
    opacity: 0.25;
  }
}

.service-tier-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.service-tier-desc {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--color-black);
  opacity: 0.75;
  line-height: 1.5;
  text-align: right;
  transition: opacity 0.3s ease;
}

.service-tier.expanded .service-tier-desc {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.service-tier-toggle {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-black);
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
  user-select: none;
}

.service-tier.expanded .service-tier-toggle {
  transform: rotate(45deg);
  opacity: 0.7;
}

/* Expandable content */
.service-tier-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.service-tier-body-inner {
  padding: 0 8% 48px;
  display: flex;
  gap: 60px;
}

.service-tier-detail {
  flex: 1;
}

.service-tier-detail p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--color-black);
  opacity: 0.75;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 780px;
}

.service-tier-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.service-tier-deliverables li {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--color-black);
  opacity: 0.75;
  line-height: 1.55;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-tier-deliverables li::before {
  content: '.';
  position: absolute;
  left: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-purple);
  top: 2px;
}

.service-tier-deliverables li.no-bullet::before {
  content: none;
}

.service-tier-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.service-tier-price,
.service-tier-duration {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: -0.01em;
  opacity: 0.7;
}

.service-tier-duration {
  opacity: 0.4;
}

.service-tier-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.service-tier-cta:hover {
  background: var(--color-purple);
  transform: translateY(-2px);
}

.service-tier-cta:active {
  transform: translateY(0);
}

/* About expandable */
.lp-about-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 16px 0;
  margin-top: 48px;
  border: none;
  background: none;
}

.lp-about-trigger-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.lp-about-toggle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-white);
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 20px;
  text-align: center;
  line-height: 1;
}

.lp-about-trigger[aria-expanded="true"] .lp-about-toggle {
  display: none;
}

.lp-about-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.lp-about-body .lp-about-credential,
.lp-about-body .lp-about-inner,
.lp-about-body .portfolio-btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lp-about-body[aria-hidden="false"] .lp-about-credential,
.lp-about-body[aria-hidden="false"] .lp-about-inner,
.lp-about-body[aria-hidden="false"] .portfolio-btn {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.lp-about-close {
  display: none;
  position: absolute;
  top: 32px;
  right: 8%;
  z-index: 2;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-white);
  opacity: 0.5;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.lp-about-close:hover {
  opacity: 1;
}

.lp-about-close.visible {
  display: block;
}

.lp-about-credential {
  padding-top: 24px;
  margin-bottom: 40px;
}

.lp-about-credential p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--color-white);
  line-height: 1.55;
  max-width: 900px;
  opacity: 0.8;
}

.lp-about-inner {
  display: flex;
  gap: 60px;
}

.lp-bio {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-bio-photo {
  display: none;
}

.lp-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-bio-text {
  flex: 1;
}

.lp-bio-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 4px;
}

.lp-bio-role {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.5;
  margin-bottom: 16px;
}

.lp-bio-text p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--color-white);
  line-height: 1.55;
  opacity: 0.8;
  margin-bottom: 12px;
  max-width: 480px;
}

/* --- LP CTA (photo module) --- */
.lp-cta-wrapper {
  background: var(--color-lime);
  padding: 0 5% 120px;
}

.lp-cta {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 80px 8%;
  background: var(--color-black);
}

.lp-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lp-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.65) 0%,
    rgba(13, 13, 13, 0.4) 50%,
    rgba(13, 13, 13, 0.15) 100%
  );
}

.lp-cta > *:not(.lp-cta-bg):not(.lp-about-close) {
  position: relative;
  z-index: 1;
}

.lp-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lp-cta-subtext {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--color-white);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.lp-cta-email {
  margin-bottom: 0;
}

.lp-email-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
  text-align: center;
}

.lp-email-pill:hover {
  background: var(--color-purple);
  transform: translateY(-2px);
}

.lp-email-pill.about-open {
  background: var(--color-purple);
}

.lp-email-pill.about-open:hover {
  background: var(--color-lime);
}

.lp-email-pill:active {
  transform: translateY(0);
}

.lp-email-pill.copied {
  background: var(--color-lime);
}

/* --- Portfolio overlay --- */
.portfolio-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(13, 13, 13, 0.95);
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.portfolio-overlay.active {
  transform: translateY(0);
  pointer-events: auto;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  flex-shrink: 0;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--color-white);
}

.portfolio-close {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 8px 0;
}

.portfolio-close:hover {
  opacity: 1;
}

.portfolio-gallery {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 0 calc(50vw - 35vh) 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.portfolio-gallery:active {
  cursor: grabbing;
}

.portfolio-gallery::-webkit-scrollbar {
  height: 2px;
}

.portfolio-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.portfolio-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.portfolio-slide {
  flex-shrink: 0;
  height: 80vh;
  scroll-snap-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.portfolio-slide img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.portfolio-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-purple);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.portfolio-btn:hover {
  background: var(--color-lime);
  transform: translateY(-2px);
}

.portfolio-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio-header {
    padding: 20px 24px;
  }

  .portfolio-gallery {
    padding: 0 calc(50vw - 25vh) 24px;
    gap: 16px;
  }

  .portfolio-slide {
    height: 60vh;
  }
}

/* --- Site overlay (logo click → "site coming soon") --- */
.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

.site-overlay.active {
  transform: translateY(0);
  pointer-events: auto;
}

.site-overlay-content {
  max-width: 1100px;
  padding: 0 8%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.site-overlay-content p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.55;
  margin-bottom: 64px;
}

.site-overlay-back {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.site-overlay-back:hover {
  background: var(--color-purple);
  transform: translateY(-2px);
}

.site-overlay-back:active {
  transform: translateY(0);
}

/* --- LP Footer override (tighter padding, smaller text) --- */
.lp-page .site-footer {
  padding: 48px 57px 24px;
}

.lp-page .footer-name,
.lp-page .footer-location,
.lp-page .footer-email a {
  font-size: 1.125rem;
}

.lp-page .footer-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-end;
  margin-bottom: 2px;
}

/* --- LP Header override (static, not fixed) --- */
.lp-page .site-header {
  opacity: 1;
  position: absolute;
  background: transparent;
}

.lp-page .site-header .logo-light { display: none; }
.lp-page .site-header .logo-dark  { display: block; }
.lp-page .site-header .location { color: var(--color-black); }

/* --- Mobile-only line breaks --- */
.mobile-br { display: none; }

/* ============================================
   Responsive — Landing Page
   ============================================ */

@media (max-width: 768px) {
  .mobile-br { display: inline; }

  .lp-page .site-header {
    padding: 24px;
  }

  .lp-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 120px 24px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lp-hero-headline {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }

  .lp-hero-arrow {
    display: none;
  }

  .service-tier-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 8px;
  }

  .service-tier-left {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .service-tier-right {
    width: 100%;
    justify-content: space-between;
  }

  .service-tier-desc {
    text-align: left;
  }

  .service-tier-toggle {
    position: absolute;
    top: 28px;
    right: 24px;
  }

  .service-tier-header {
    position: relative;
  }

  .service-tier-body-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px 40px;
  }

  .lp-about-inner {
    flex-direction: column;
    gap: 40px;
  }


  .lp-problem-services {
    padding: 0 16px 80px;
  }

  .lp-services-module {
    border-radius: 12px;
    padding: 60px 0;
  }

  .lp-problem-inner {
    padding: 0 24px;
  }

  .lp-services-top {
    flex-direction: column;
    padding: 0 24px;
  }

  .lp-services-heading {
    max-width: 100%;
    text-align: left;
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    order: -1;
    margin-bottom: 12px;
    justify-content: flex-start;
    margin-top: 0;
  }

  .service-tier-number {
    display: none;
  }

  .lp-cta-wrapper {
    padding: 0 16px 80px;
  }

  .lp-cta {
    border-radius: 12px;
    padding: 60px 24px;
  }

  .lp-cta-bg img {
    object-position: 60% top;
  }

  .lp-cta {
    transition: background 0.5s ease;
  }

  .lp-cta.about-expanded {
    background: var(--color-sand);
  }

  .lp-cta.about-expanded .lp-cta-bg {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .lp-cta.about-expanded .lp-cta-heading,
  .lp-cta.about-expanded .lp-cta-subtext,
  .lp-cta.about-expanded .lp-about-trigger-text,
  .lp-cta.about-expanded .lp-about-credential p,
  .lp-cta.about-expanded .lp-bio-name,
  .lp-cta.about-expanded .lp-bio-role,
  .lp-cta.about-expanded .lp-bio-text p,
  .lp-cta.about-expanded .lp-about-close {
    color: var(--color-black);
  }

  .lp-cta.about-expanded .lp-about-toggle {
    color: var(--color-black);
  }

  .lp-cta-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0.7) 0%,
      rgba(13, 13, 13, 0.5) 40%,
      rgba(13, 13, 13, 0.6) 100%
    );
  }

  /* Footer mobile */
  .lp-page .footer-bottom {
    align-items: center;
  }

  .lp-page .footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    aspect-ratio: 1;
  }

  .lp-page .copyright {
    font-size: 0.5625rem;
  }

  /* Portfolio mobile */
  .portfolio-gallery {
    padding: 0 16px 24px;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .portfolio-header {
    padding: 20px 24px 0;
  }

  .portfolio-gallery {
    align-items: center;
    padding: 0 16px;
    height: 100%;
  }

  .portfolio-slide {
    flex-shrink: 0;
    width: calc(100vw - 32px);
    height: auto;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
  }

  .portfolio-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .portfolio-gallery {
    align-items: center;
    padding: 0 calc(50vw - 35vh);
    height: 100%;
  }

  .portfolio-slide {
    width: auto;
    height: 65vh;
    display: flex;
    align-items: center;
  }

  .portfolio-slide img {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .lp-hero-headline {
    font-size: 3.375rem;
  }

  .service-tier-name {
    font-size: 1.3rem;
  }

  .lp-services-heading,
  .lp-proof-heading,
  .lp-cta-heading {
    font-size: 2rem;
  }

  .lp-cta-heading {
    font-size: 2rem;
  }
}
