:root {
  --ink: #181611;
  --paper: #f5f0e8;
  --muted: #756d62;
  --charcoal: #22211e;
  --charcoal-2: #12110f;
  --gold: #caa35b;
  --gold-2: #f1d18a;
  --sage: #687969;
  --clay: #a55f45;
  --line: rgba(24, 22, 17, 0.14);
  --shadow: 0 24px 70px rgba(24, 22, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  height: 3px;
  width: calc(var(--scroll, 0) * 100%);
  background: linear-gradient(90deg, var(--gold), var(--clay));
}

.topbar {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 58px);
  color: #fffaf0;
  transition: background 0.25s ease, padding 0.25s ease, border 0.25s ease;
}

.topbar.scrolled {
  padding-block: 13px;
  background: rgba(18, 17, 15, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
}

.brand strong {
  color: var(--gold-2);
}

.navlinks {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 250, 240, 0.78);
}

.navlinks a:hover {
  color: var(--gold-2);
}

.nav-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 42px;
  padding: 130px clamp(20px, 5vw, 72px) 68px;
  color: #fffaf0;
}

.hero-video,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.08) translate3d(0, calc(var(--hero-drift, 0) * 1px), 0);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.9), rgba(18, 17, 15, 0.52) 48%, rgba(18, 17, 15, 0.7)),
    linear-gradient(0deg, rgba(18, 17, 15, 0.82), transparent 45%);
}

.hero-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  max-width: 950px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(45px, 7.1vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

.hero-actions,
.footer-actions,
.assistant-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 13px 19px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #17130c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 38px rgba(202, 163, 91, 0.3);
}

.button.ghost {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button.ghost.dark {
  color: var(--ink);
  border-color: var(--line);
}

.button.light {
  color: var(--ink);
  background: rgba(24, 22, 17, 0.08);
}

.assistant-card .button.light {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 17, 15, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.live-dot,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.live-dot span,
.status-pill i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #62d486;
  box-shadow: 0 0 0 7px rgba(98, 212, 134, 0.13);
}

.panel-title,
.panel-note {
  color: rgba(255, 250, 240, 0.64);
}

.panel-metric strong {
  display: block;
  color: #fffaf0;
  font-size: 32px;
  margin-bottom: 5px;
}

.panel-metric span {
  color: rgba(255, 250, 240, 0.72);
}

.sound-card {
  height: 82px;
  margin: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.sound-card i {
  display: block;
  width: 8px;
  height: 18px;
  border-radius: 99px;
  background: var(--gold-2);
  animation: pulse-bars 1.15s ease-in-out infinite;
}

.sound-card i:nth-child(2n) {
  animation-delay: 0.12s;
}

.sound-card i:nth-child(3n) {
  animation-delay: 0.24s;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.strip div {
  padding: 24px clamp(15px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.strip strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
}

.strip span {
  color: var(--muted);
}

.cinematic {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(165, 95, 69, 0.1), transparent 45%),
    var(--paper);
  scroll-margin-top: 92px;
}

.cinematic h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.cinematic p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.motion-wall {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-auto-rows: 250px;
  gap: 14px;
  perspective: 900px;
}

.motion-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 22px 58px rgba(24, 22, 17, 0.16);
  transform:
    translate3d(0, calc(var(--parallax-y, 0) * 1px), 0)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.motion-tile.tall {
  grid-row: span 2;
}

.motion-tile.wide {
  grid-column: span 2;
}

.motion-tile img,
.motion-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

.motion-tile video {
  filter: saturate(1.08) contrast(1.04);
}

.motion-tile.premium-static img {
  object-position: center top;
}

.motion-tile:hover img,
.motion-tile:hover video {
  transform: scale(1.1);
}

.motion-tile.kinetic img,
.motion-tile.wide img,
.motion-tile.premium-pan img {
  animation: kenburns 8s ease-in-out infinite alternate;
}

.motion-tile.video-tile::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f1d18a;
  box-shadow: 0 0 0 0 rgba(241, 209, 138, 0.55);
  animation: live-pulse 1.8s ease-out infinite;
}

.motion-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 17, 15, 0.78), transparent 48%);
}

.motion-tile figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fffaf0;
  font-weight: 900;
}

.image-ribbon {
  overflow: hidden;
  padding: 24px 0;
  background: var(--charcoal-2);
}

.ribbon-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ribbon 34s linear infinite;
}

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

.ribbon-track img {
  width: clamp(220px, 28vw, 420px);
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.96) contrast(1.03);
}

.motion-tour {
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0;
  color: #fffaf0;
  background:
    linear-gradient(180deg, #12110f, #211d18 56%, #12110f);
}

.tour-copy {
  display: block;
  padding: 0 clamp(20px, 5vw, 72px) 34px;
}

.tour-copy h2 {
  margin: 0;
  max-width: 900px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.tour-reel {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-inline: clamp(20px, 5vw, 72px);
  animation: tour-slide 28s linear infinite;
}

.tour-reel:hover {
  animation-play-state: paused;
}

.tour-reel video,
.tour-photo {
  overflow: hidden;
  width: clamp(250px, 30vw, 470px);
  height: clamp(360px, 42vw, 620px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.tour-reel video,
.tour-photo img {
  object-fit: cover;
}

.tour-photo img {
  width: 100%;
  height: 100%;
  animation: kenburns 8s ease-in-out infinite alternate;
}

.section {
  padding: clamp(70px, 9vw, 122px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section h2,
.footer h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.section-head p:not(.eyebrow),
.voice-copy p,
.calc-shell p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section:not(.voice-zone):not(.finance) .eyebrow,
.cinematic .eyebrow,
.calculator .eyebrow {
  color: #9d6843;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.property-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 1px 0 var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.property-media {
  overflow: hidden;
  height: 360px;
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: card-pan 9s ease-in-out infinite alternate;
}

.property-card div {
  padding: 22px;
}

.property-card span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.property-card h3 {
  margin: 9px 0;
  font-size: 22px;
}

.property-card p {
  color: var(--muted);
  line-height: 1.55;
}

.property-card strong {
  color: var(--clay);
}

.voice-zone {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 520px);
  gap: 46px;
  align-items: center;
  color: #fffaf0;
  background: var(--charcoal-2);
}

.voice-copy p {
  color: rgba(255, 250, 240, 0.68);
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.voice-list span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.assistant-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.03)),
    #25231f;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.assistant-card.open {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: min(440px, calc(100vw - 32px));
}

.assistant-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.assistant-top h3 {
  margin: 10px 0 0;
  font-size: 28px;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.orb {
  width: min(260px, 68vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 26px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(241, 209, 138, 0.94), rgba(202, 163, 91, 0.24) 36%, transparent 62%),
    conic-gradient(from var(--spin, 0deg), var(--gold), var(--sage), var(--clay), var(--gold));
  filter: saturate(1.08);
  animation: rotate-orb 8s linear infinite;
}

.orb span {
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(18, 17, 15, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.assistant-card.listening .orb {
  animation: rotate-orb 2.5s linear infinite, breathe 1.2s ease-in-out infinite;
}

.transcript {
  max-height: 160px;
  overflow: auto;
  padding: 15px;
  color: rgba(255, 250, 240, 0.78);
  background: rgba(18, 17, 15, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.55;
}

.fine-print {
  margin: 16px 0 0;
  color: rgba(255, 250, 240, 0.46);
  font-size: 12px;
  line-height: 1.5;
}

.finance {
  position: relative;
  overflow: hidden;
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.94), rgba(18, 17, 15, 0.78) 46%, rgba(18, 17, 15, 0.62)),
    url("./assets/premium-tower-ai.png") center right / cover;
}

.finance::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 209, 138, 0.8), transparent);
}

.finance .section-head {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

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

.finance .section-head p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.72);
}

.finance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.finance-item {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.finance-item strong {
  display: block;
  color: var(--gold);
  font-size: 54px;
  margin-bottom: 20px;
}

.finance-item span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

.calculator {
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 209, 138, 0.14), transparent 32%),
    linear-gradient(180deg, var(--charcoal-2), #1f1c18);
  color: #fffaf0;
}

.calc-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 36px;
  align-items: center;
  padding: clamp(24px, 5vw, 56px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.04)),
    rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.calc-shell h2 {
  color: #fffaf0;
}

.calc-shell p {
  color: rgba(255, 250, 240, 0.72);
}

.calc-form {
  display: grid;
  gap: 22px;
}

.calc-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 700;
}

.calc-form input {
  width: 100%;
  accent-color: var(--clay);
}

.calc-form output {
  color: #fffaf0;
  font-size: 20px;
  font-weight: 900;
}

.calc-result {
  padding: 22px;
  border-radius: 8px;
  color: #17130c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 42px rgba(202, 163, 91, 0.25);
}

.calc-result span {
  display: block;
  color: rgba(23, 19, 12, 0.62);
  margin-bottom: 8px;
}

.calc-result strong {
  font-size: clamp(30px, 4vw, 46px);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: #fffaf0;
  border-top: 1px solid var(--line);
}

.footer-actions {
  margin: 0;
}

.floating-voice {
  position: fixed;
  z-index: 88;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--charcoal);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
}

.floating-voice span {
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 10px rgba(241, 209, 138, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulse-bars {
  0%,
  100% {
    height: 18px;
    opacity: 0.55;
  }
  50% {
    height: 58px;
    opacity: 1;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.08) translate3d(-1%, -1%, 0);
  }
  to {
    transform: scale(1.15) translate3d(1.5%, 1%, 0);
  }
}

@keyframes live-pulse {
  to {
    box-shadow: 0 0 0 14px rgba(241, 209, 138, 0);
  }
}

@keyframes rotate-orb {
  to {
    --spin: 360deg;
  }
}

@keyframes breathe {
  50% {
    transform: scale(1.05);
  }
}

@keyframes ribbon {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes tour-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% + 50vw));
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.04) translate3d(-1.5%, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(2%, -1.5%, 0);
  }
}

@keyframes card-pan {
  from {
    transform: scale(1.04) translateX(-1.2%);
  }
  to {
    transform: scale(1.11) translateX(1.2%);
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .navlinks {
    display: none;
  }

  .hero,
  .cinematic,
  .voice-zone,
  .calc-shell,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .property-grid,
  .finance-grid {
    grid-template-columns: 1fr;
  }

  .motion-wall {
    grid-template-columns: 1fr 1fr;
  }

  .property-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .property-card img {
    min-height: 260px;
  }

  .tour-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 14px 16px;
  }

  .brand {
    font-size: 15px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 92svh;
    padding: 126px 18px 42px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.5vw, 54px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .voice-list,
  .property-card {
    grid-template-columns: 1fr;
  }

  .motion-wall {
    grid-auto-rows: 210px;
  }

  .motion-tile.tall,
  .motion-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .ribbon-track img {
    height: 200px;
  }

  .tour-reel video,
  .tour-photo {
    width: 250px;
    height: 360px;
  }

  .property-card img {
    min-height: 310px;
  }

  .assistant-card.open {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .floating-voice {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }

  .floating-voice span {
    width: 17px;
    height: 17px;
    box-shadow: 0 0 0 8px rgba(241, 209, 138, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
