:root {
  --ink: #06111d;
  --ink-soft: #0d1d2e;
  --ink-card: rgba(11, 27, 45, 0.84);
  --navy: #102b4e;
  --navy-bright: #1f4d84;
  --gold: #e3c27a;
  --gold-soft: #f5ddab;
  --ivory: #f7f2e8;
  --white: #ffffff;
  --muted: rgba(247, 242, 232, 0.72);
  --muted-dark: #667b92;
  --line: rgba(255, 255, 255, 0.12);
  --shadow-xl: 0 28px 90px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1200px, calc(100% - 2rem));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(circle at top left, rgba(227, 194, 122, 0.12), transparent 16%),
    linear-gradient(180deg, #07111b 0%, #091726 40%, #08121d 100%);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-nav,
.hero-shell,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  transition: all 220ms ease;
}

.site-nav.scrolled {
  padding: 1rem;
  background: rgba(6, 17, 29, 0.88);
  backdrop-filter: blur(18px);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ivory);
}

.brand span {
  color: var(--gold);
  font-style: italic;
}

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

.nav-links a {
  color: rgba(247, 242, 232, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-cta,
.mobile-cta,
.btn,
.package-footer a,
.quick-chip,
#aiSend {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta:hover,
.btn:hover,
.package-footer a:hover,
.quick-chip:hover,
#aiSend:hover,
.wa-float:hover,
.ai-bubble:hover {
  transform: translateY(-2px);
}

.nav-toggle,
.menu-close {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ivory);
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 69;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(6, 17, 29, 0.97);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
}

.mobile-cta {
  margin-top: 1rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  font-weight: 800;
}

.menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: block;
  font-size: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.hero-slides,
.hero-overlay,
.cta-bg,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img,
.cta-bg img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(6, 17, 29, 0.9) 8%, rgba(6, 17, 29, 0.42) 44%, rgba(6, 17, 29, 0.2) 100%),
    linear-gradient(100deg, rgba(6, 17, 29, 0.78), transparent 52%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 2rem;
  align-items: end;
  padding-top: 8rem;
  padding-bottom: 4.5rem;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-badge,
.eyebrow.light {
  color: var(--gold-soft);
}

.eyebrow {
  color: var(--gold);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(227, 194, 122, 0.08);
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
  color: var(--ivory);
}

.hero-sub {
  max-width: 42rem;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.95;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  box-shadow: 0 18px 40px rgba(227, 194, 122, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ivory);
  backdrop-filter: blur(10px);
}

.hero-sidecard {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl);
}

.sidecard-top p,
.sidecard-stats span,
.hero-scroll p {
  color: rgba(247, 242, 232, 0.68);
}

.sidecard-top a,
.sidecard-stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
}

.sidecard-top a {
  margin-top: 0.35rem;
  font-size: 2rem;
}

.sidecard-stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
}

.sidecard-stats div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidecard-stats strong {
  font-size: 2rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero-scroll span {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.1s ease-in-out infinite;
}

.hero-scroll p {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  padding: 0.95rem 0;
  background: rgba(12, 27, 45, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-track span {
  color: rgba(247, 242, 232, 0.76);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.85rem;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  position: relative;
  padding: 5.8rem 0 0;
}

.section-head {
  margin-bottom: 2.1rem;
}

.section-head.center {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  color: var(--ivory);
}

.intro-grid,
.package-grid,
.destination-grid,
.review-grid,
.footer-grid {
  display: grid;
  gap: 1.35rem;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-card,
.experience-card,
.review-card,
.footer-grid > div,
.search-shell {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.intro-card,
.experience-card,
.review-card,
.footer-grid > div {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.intro-card img {
  height: 250px;
  object-fit: cover;
}

.intro-copy,
.review-copy,
.experience-copy,
.footer-grid > div {
  padding: 1.45rem;
}

.intro-copy h3,
.package-copy h3,
.destination-copy h3,
.review-copy strong,
.ai-header h3 {
  font-size: 1.9rem;
  line-height: 1;
}

.intro-copy p,
.review-copy p,
.experience-copy p,
.footer-grid p,
.footer-grid a,
.ai-header p,
.message-bubble {
  color: var(--muted);
  line-height: 1.8;
}

.search-shell {
  display: flex;
  width: min(420px, 100%);
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.search-shell input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ivory);
  padding: 0.85rem 1rem;
}

.search-shell input::placeholder,
#aiInput::placeholder {
  color: rgba(247, 242, 232, 0.35);
}

.search-shell button,
#aiSend {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  font-weight: 800;
}

.search-shell button {
  padding: 0.85rem 1.15rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.filter-btn,
.quick-chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  border-color: transparent;
}

.package-grid {
  grid-template-columns: 1.18fr 1fr 1fr;
}

.package-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.package-card.featured {
  grid-row: span 2;
  min-height: 660px;
}

.package-card img,
.destination-card img,
.experience-image img,
.review-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.package-card:hover img,
.destination-card:hover img,
.experience-card:hover img,
.review-card:hover img {
  transform: scale(1.05);
}

.package-shade,
.destination-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 29, 0.06), rgba(6, 17, 29, 0.9));
}

.package-copy,
.destination-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.package-copy {
  padding: 1.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag.hot {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  border-color: transparent;
}

.package-copy p {
  margin-top: 0.75rem;
  color: rgba(247, 242, 232, 0.78);
  line-height: 1.72;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.meta-row span {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 242, 232, 0.9);
  font-size: 0.74rem;
}

.package-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.price small {
  display: block;
  margin-top: 0.25rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  color: rgba(247, 242, 232, 0.68);
}

.package-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  font-size: 0.76rem;
  font-weight: 800;
}

.destination-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 245px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.destination-card.tall {
  grid-row: span 2;
}

.destination-card.wide {
  grid-column: span 2;
}

.destination-copy {
  padding: 1.3rem;
}

.destination-copy p {
  color: rgba(247, 242, 232, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.destination-copy h3 {
  margin-top: 0.35rem;
}

.experience-card {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
}

.luxury-points {
  margin-top: 1.2rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-image {
  height: 220px;
  overflow: hidden;
}

.review-copy strong {
  display: block;
  margin-top: 1rem;
  color: var(--ivory);
}

.review-copy span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-dark);
}

.cta-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 5rem;
  padding: 0;
}

.cta-overlay {
  background: linear-gradient(180deg, rgba(6, 17, 29, 0.68), rgba(6, 17, 29, 0.92));
}

.cta-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 6.2rem 0;
  text-align: center;
}

.cta-content h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.cta-content p {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.82;
}

.site-footer {
  padding: 4rem 0 2rem;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer-grid > div {
  padding: 1.6rem;
}

.footer-grid h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-grid a {
  display: block;
  margin-top: 0.75rem;
}

.footer-note {
  margin-top: 1.7rem;
  text-align: center;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.wa-float,
.ai-bubble {
  position: fixed;
  right: 1.4rem;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  font-weight: 800;
}

.wa-float {
  bottom: 1.4rem;
  background: #25d366;
  color: var(--white);
}

.ai-bubble {
  bottom: 5.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  border: 0;
  cursor: pointer;
}

.ai-panel {
  position: fixed;
  right: 1.4rem;
  bottom: 6.6rem;
  z-index: 79;
  width: min(380px, calc(100vw - 2rem));
  max-height: min(620px, calc(100vh - 7rem));
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(6, 17, 29, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl);
}

.ai-panel.open {
  display: flex;
}

.ai-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-header h3 {
  color: var(--ivory);
}

.ai-header button {
  background: transparent;
  border: 0;
  color: var(--ivory);
  cursor: pointer;
}

.ai-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.message {
  display: flex;
}

.message.user {
  justify-content: end;
}

.message-bubble {
  max-width: 88%;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
}

.message.bot .message-bubble {
  background: rgba(255, 255, 255, 0.08);
}

.message.user .message-bubble {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
}

.ai-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.ai-input-row {
  display: flex;
  gap: 0.7rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#aiInput {
  flex: 1;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  outline: 0;
}

#aiSend {
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.is-hidden {
  display: none;
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: scaleY(0.65);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .site-nav,
  .hero-shell,
  .section,
  .site-footer,
  .cta-content {
    width: min(100% - 1.5rem, 1200px);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-shell,
  .intro-grid,
  .package-grid,
  .destination-grid,
  .experience-card,
  .review-grid,
  .footer-grid,
  .section-head.split {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    grid-row: span 1;
    min-height: 360px;
  }

  .destination-grid {
    grid-auto-rows: 260px;
  }

  .destination-card.tall,
  .destination-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-shell {
    padding-top: 7rem;
  }

  .hero-sidecard {
    max-width: 420px;
  }

  .search-shell {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .hero-shell,
  .section,
  .site-footer,
  .cta-content {
    width: min(100% - 1.2rem, 1200px);
  }

  h1 {
    font-size: 3.2rem;
  }

  h2,
  .intro-copy h3,
  .package-copy h3,
  .destination-copy h3,
  .review-copy strong,
  .ai-header h3 {
    font-size: 2rem;
  }

  .hero-actions,
  .cta-actions,
  .package-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-footer a,
  .btn {
    width: 100%;
  }

  .intro-copy,
  .review-copy,
  .experience-copy,
  .footer-grid > div {
    padding: 1.2rem;
  }

  .ai-panel {
    right: 0.6rem;
    left: 0.6rem;
    bottom: 5.6rem;
    width: auto;
    max-height: calc(100vh - 7rem);
    border-radius: 22px;
  }

  .wa-float,
  .ai-bubble {
    right: 0.8rem;
  }

  .hero-sub,
  .cta-content p,
  .intro-copy p,
  .experience-copy p,
  .review-copy p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .filter-bar,
  .ai-quick {
    gap: 0.45rem;
  }

  .filter-btn,
  .quick-chip {
    padding: 0.65rem 0.85rem;
    font-size: 0.68rem;
  }

  .search-shell,
  .ai-input-row {
    flex-direction: column;
  }

  .search-shell button,
  #aiSend {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-nav,
  .hero-shell,
  .section,
  .site-footer,
  .cta-content {
    width: calc(100% - 1rem);
  }

  .hero-shell {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2,
  .intro-copy h3,
  .package-copy h3,
  .destination-copy h3,
  .review-copy strong,
  .ai-header h3 {
    font-size: 1.75rem;
  }

  .package-copy,
  .intro-copy,
  .review-copy,
  .experience-copy,
  .footer-grid > div {
    padding: 1rem;
  }

  .hero-sidecard {
    padding: 1.15rem;
  }

  .sidecard-top a,
  .sidecard-stats strong {
    font-size: 1.7rem;
  }

  .ai-panel {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 5.2rem;
    max-height: calc(100vh - 6.4rem);
  }
}
