/* ============================================
   DIGITAL COMMERCE COALITION
   Truck-art inspired bold aesthetic
   ============================================ */

/* --- Palette --- */
:root {
  --burgundy: #5B1035;
  --burgundy-dark: #3D0A23;
  --coral: #E8827C;
  --lavender: #C9A5DC;
  --lavender-light: #E8D5F0;
  --yellow: #F0E68C;
  --lime: #C5D94A;
  --blue: #92B4E8;
  --white: #FDFAF6;
  --off-white: #F5F0EB;
  --black: #1A1A1A;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* --- Reveal Animation Base --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* stagger children */
.reveal.visible:nth-child(2) { transition-delay: 0.1s; }
.reveal.visible:nth-child(3) { transition-delay: 0.2s; }
.reveal.visible:nth-child(4) { transition-delay: 0.25s; }

/* Hero elements animate in via CSS on load — no JS dependency */
.hero .reveal {
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero .reveal:nth-child(1) { animation-delay: 0.1s; }
.hero .reveal:nth-child(2) { animation-delay: 0.3s; }
.hero .reveal:nth-child(3) { animation-delay: 0.5s; }
.hero .reveal:nth-child(4) { animation-delay: 0.7s; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(93, 16, 53, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--coral);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(61, 10, 35, 0.97);
  box-shadow: 0 4px 30px rgba(91, 16, 53, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform 0.3s;
}

.nav-logo:hover img {
  transform: rotate(-8deg) scale(1.05);
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  transition: color 0.3s, background 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 20px 60px;
}

/* Geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(232, 130, 124, 0.06) 40px,
      rgba(232, 130, 124, 0.06) 42px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(201, 165, 220, 0.06) 40px,
      rgba(201, 165, 220, 0.06) 42px
    );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  margin-bottom: 80px;
}

.diamond-frame {
  display: inline-block;
  position: relative;
  padding: 20px;
}

.diamond-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 3px solid var(--coral);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: diamondPulse 4s ease-in-out infinite;
}

.diamond-frame::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  border: 2px solid rgba(201, 165, 220, 0.4);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: diamondPulse 4s ease-in-out 0.5s infinite;
}

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

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  color: var(--coral);
  -webkit-text-stroke: 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border: 2px solid var(--coral);
  border-radius: 4px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.scroll-cta:hover {
  background: var(--coral);
  color: var(--burgundy);
  transform: translateY(-2px);
}

.scroll-cta svg {
  animation: bobDown 2s ease-in-out infinite;
}

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

/* Floating decorative diamonds */
.hero-diamond {
  position: absolute;
  border: 2px solid rgba(232, 130, 124, 0.15);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-diamond-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -100px;
  animation: floatDiamond 12s ease-in-out infinite;
}

.hero-diamond-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: -60px;
  border-color: rgba(201, 165, 220, 0.15);
  animation: floatDiamond 10s ease-in-out 2s infinite;
}

.hero-diamond-3 {
  width: 100px;
  height: 100px;
  top: 25%;
  right: 15%;
  border-color: rgba(240, 230, 140, 0.12);
  animation: floatDiamond 8s ease-in-out 1s infinite;
}

@keyframes floatDiamond {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  25% { transform: rotate(45deg) translate(10px, -15px); }
  50% { transform: rotate(45deg) translate(-5px, -25px); }
  75% { transform: rotate(45deg) translate(-15px, -10px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--burgundy);
  white-space: nowrap;
}

.section-title.light {
  color: #fff;
}

/* Truck-art inspired motif line */
.motif-line {
  flex: 1;
  max-width: 120px;
  height: 3px;
  position: relative;
  background: var(--burgundy);
}

.motif-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--coral);
  transform: translate(-50%, -50%) rotate(45deg);
}

.motif-line.light {
  background: rgba(255, 255, 255, 0.3);
}

.motif-line.light::before {
  background: var(--yellow);
}

/* Truck-art top border for sections */
.section-border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--burgundy) 0px,
    var(--burgundy) 20px,
    var(--coral) 20px,
    var(--coral) 28px,
    var(--lavender) 28px,
    var(--lavender) 36px,
    var(--yellow) 36px,
    var(--yellow) 44px,
    var(--lime) 44px,
    var(--lime) 52px,
    var(--blue) 52px,
    var(--blue) 60px
  );
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
  background: var(--white);
}

.about-lead {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--black);
}

.about-lead strong {
  color: var(--burgundy);
  font-weight: 700;
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  text-align: center;
  padding: 48px 36px;
  background: var(--off-white);
  border: 2px solid var(--burgundy);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 var(--burgundy);
}

/* Corner decorations — truck-art style */
.stat-card::before,
.stat-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--coral);
}

.stat-card::before {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
}

.stat-card::after {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--burgundy);
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #555;
}

.stat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-small {
  width: 16px;
  height: 16px;
  background: var(--coral);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================
   FOCUS AREAS
   ============================================ */
.section-focus {
  background: var(--burgundy);
  position: relative;
}

/* Subtle geometric background pattern */
.section-focus::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(232, 130, 124, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 165, 220, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.focus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  padding: 48px 36px 56px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s,
              border-color 0.4s;
}

.focus-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Coloured top stripe per card */
.focus-card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.focus-card[data-color="coral"] .focus-card-border { background: var(--coral); }
.focus-card[data-color="lavender"] .focus-card-border { background: var(--lavender); }
.focus-card[data-color="lime"] .focus-card-border { background: var(--lime); }

.focus-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.15;
  color: #fff;
}

.focus-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.focus-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

/* Decorative motif in corner of card */
.focus-motif {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-card:hover .focus-motif {
  transform: rotate(45deg) scale(1.3);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   HOW WE WORK
   ============================================ */
.section-how {
  background: var(--off-white);
}

.how-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  text-align: center;
  max-width: 720px;
  margin: -20px auto 56px;
  color: #555;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.how-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  background: var(--white);
  border: 2px solid transparent;
  border-left: 5px solid var(--burgundy);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.how-item:hover {
  transform: translateX(6px);
  border-color: var(--coral);
  box-shadow: -6px 6px 0 var(--lavender-light);
}

.how-diamond {
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: var(--coral);
  transform: rotate(45deg);
  margin-top: 5px;
  transition: background 0.3s;
}

.how-item:hover .how-diamond {
  background: var(--burgundy);
}

.how-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.how-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* ============================================
   MEMBERS — CAROUSEL
   ============================================ */
.section-members {
  background: var(--burgundy-dark);
  overflow: hidden;
}

.members-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: -20px auto 56px;
  color: rgba(255, 255, 255, 0.7);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: carouselScroll 25s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 24px;
  transition: transform 0.3s;
}

.carousel-slide:hover {
  transform: scale(1.08);
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECRETARIAT
   ============================================ */
.section-secretariat {
  background: var(--white);
  padding: clamp(60px, 10vw, 100px) 0;
}

.secretariat-content {
  max-width: 640px;
  margin: 0 auto;
}

.secretariat-frame {
  text-align: center;
  padding: 56px 48px;
  border: 3px solid var(--burgundy);
  position: relative;
}

/* Ornate corner caps */
.secretariat-frame::before,
.secretariat-frame::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--white);
}

.secretariat-frame::before {
  top: -6px;
  left: -6px;
  border-top: 4px solid var(--coral);
  border-left: 4px solid var(--coral);
}

.secretariat-frame::after {
  bottom: -6px;
  right: -6px;
  border-bottom: 4px solid var(--coral);
  border-right: 4px solid var(--coral);
}

.secretariat-frame h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.secretariat-frame p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 12px;
}

.secretariat-name strong {
  color: var(--burgundy);
  font-size: 1.1rem;
}

.secretariat-name a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--coral);
  transition: color 0.2s;
}

.secretariat-name a:hover {
  color: var(--coral);
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
  background: var(--burgundy);
  text-align: center;
  padding-bottom: 60px;
}

.contact-content {
  padding: 20px 0 40px;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--coral);
  padding: 18px 36px;
  border: 2px solid var(--coral);
  border-radius: 4px;
  margin-top: 10px;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  letter-spacing: 0.02em;
}

.contact-email:hover {
  background: var(--coral);
  color: var(--burgundy);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 130, 124, 0.3);
}

/* Decorative bottom border — truck art row of diamonds */
.contact-border-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 0 0;
}

.border-diamond {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.border-diamond:nth-child(1) { background: var(--coral); }
.border-diamond:nth-child(2) { background: var(--lavender); }
.border-diamond:nth-child(3) { background: var(--yellow); }
.border-diamond:nth-child(4) { background: var(--lime); }
.border-diamond:nth-child(5) { background: var(--blue); }

.contact-border-art:hover .border-diamond {
  transform: rotate(45deg) scale(1.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--burgundy-dark);
  border-top: 3px solid var(--coral);
  padding: 32px 0;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
  align-self: flex-start;
}

.footer p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.footer-secretariat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-koan-logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-koan-logo:hover {
  opacity: 1;
}

.footer-secretariat-text {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.85rem;
  text-align: right;
}

.footer-secretariat-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--burgundy-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 16px 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .about-stats {
    flex-direction: column;
  }

  .stat-divider {
    transform: rotate(90deg);
  }

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

  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header {
    flex-wrap: wrap;
  }

  .section-title {
    white-space: normal;
    text-align: center;
  }

  .motif-line {
    display: none;
  }

  .carousel-slide {
    width: 140px;
    height: 80px;
    padding: 12px 16px;
  }

  .carousel-track {
    gap: 40px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .secretariat-frame {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .stat-card {
    min-width: 100%;
  }
}
