/* =========================================================
   TERMINAL NAARDEN — Studio des Bouvrie (alt: image-forward)
   ========================================================= */

:root {
  --sage: #7b877b;
  --sage-dark: #5a655a;
  --sage-light: #c9d0c6;
  --sage-tint: #eef1ec;
  --dark: #14161a;
  --cream: #f5f4ef;
  --white: #ffffff;
  --ink: #212420;
  --ink-soft: #565b54;
  --line: rgba(33, 36, 32, 0.12);

  --font-head: 'Jost', 'Futura', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1200px;
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); padding: 10px 22px; }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 15px; }

/* ---------- Text reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Image reveal: curtain wipe + slow zoom ---------- */
.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform .9s cubic-bezier(.77, 0, .18, 1);
  z-index: 2;
}
.img-reveal.is-visible::after { transform: scaleX(0); }
.img-reveal img {
  transform: scale(1.12);
  transition: transform 1.4s cubic-bezier(.22, .61, .36, 1);
}
.img-reveal.is-visible img { transform: scale(1); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .3s ease;
}
.site-header.solid {
  background: rgba(20, 22, 26, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark { width: 30px; height: 26px; color: var(--white); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-subtitle {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--sage-light);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 36px; }
.nav-link {
  color: var(--white);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--sage-light);
  transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { color: var(--white); border-color: rgba(255,255,255,0.55); }
.nav-cta:hover { background: var(--white); color: var(--dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO — crossfading Ken Burns slideshow
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide.is-active img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.14); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,15,0.55) 0%, rgba(15,17,15,0.32) 45%, rgba(15,17,15,0.72) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 80px; }
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(48px, 9vw, 108px);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-lead {
  max-width: 520px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  right: 36px;
  bottom: 40px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}
.hero-dots button.active { background: var(--white); transform: scale(1.25); }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* =========================================================
   SECTIONS — shared
   ========================================================= */
.section { padding: 110px 0; position: relative; }
.dark-section { background: var(--dark); color: rgba(255,255,255,0.92); }
.dark-section .section-kicker { color: var(--sage-light); }
.dark-section .section-lead { color: rgba(255,255,255,0.75); }
.dark-section .feature-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.dark-section .feature-card h3 { color: var(--white); }
.dark-section .feature-card p { color: rgba(255,255,255,0.68); }
.dark-section .feature-icon { color: var(--sage-light); border-color: var(--sage-light); }
.dark-section .check-list li { border-color: rgba(255,255,255,0.14); }
.dark-section .unit-table th { color: var(--sage-light); border-color: rgba(255,255,255,0.18); }
.dark-section .unit-table td { border-color: rgba(255,255,255,0.1); }
.dark-section .plan-copy p, .dark-section .table-note { color: rgba(255,255,255,0.7); }

.section-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 22px;
}
.section-lead {
  max-width: 640px;
  font-size: 17px;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 20px;
}

/* Intro + stats band */
.intro-section { padding: 90px 0 0; text-align: center; }
.intro-grid { max-width: 780px; margin: 0 auto; }
.intro-text { font-size: 18px; color: var(--ink-soft); font-weight: 300; }

.stats-band {
  margin-top: 70px;
  background: var(--sage);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 40px;
  padding-bottom: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; text-align: center; border-left: 1px solid rgba(255,255,255,0.25); }
.stat:first-child { border-left: none; }
.stat-num { font-family: var(--font-head); font-size: clamp(26px, 3.4vw, 40px); }
.stat-label { font-size: 12.5px; letter-spacing: 0.04em; color: rgba(255,255,255,0.85); }

/* =========================================================
   FULL-BLEED PARALLAX IMAGE BANDS
   ========================================================= */
.image-band {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.image-band.tall-band { height: 85vh; }
.parallax-media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}
.parallax-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoom-band .parallax-media img {
  animation: slowZoom 18s ease-in-out infinite alternate;
}
html.is-touch .zoom-band .parallax-media img { animation: touchZoom 8s ease-in-out infinite alternate; }
@media (hover: none), (pointer: coarse) {
  .zoom-band .parallax-media img { animation: touchZoom 8s ease-in-out infinite alternate; }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.band-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(15,17,15,0) 0%, rgba(15,17,15,0.65) 100%);
}
.band-text {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* =========================================================
   DE UNITS — image mosaic
   ========================================================= */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 22px;
  margin: 55px auto 70px;
}
.mosaic-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.mosaic-large { grid-row: span 2; }
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (hover: hover) and (pointer: fine) {
  .mosaic-item:hover img { transform: scale(1.06) !important; transition: transform .8s ease; }
}
@keyframes touchZoom {
  from { transform: scale(1.08) translate(1.5%, 1%); }
  to { transform: scale(1.22) translate(-1.5%, -1%); }
}
@media (hover: none), (pointer: coarse) {
  .mosaic-item.is-visible img { animation: touchZoom 7s ease-in-out .9s infinite alternate; }
}
html.is-touch .mosaic-item.is-visible img { animation: touchZoom 7s ease-in-out .9s infinite alternate; }
.mosaic-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 3;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 0 70px;
}
.feature-card {
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.06); }
.feature-icon {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--sage);
  border: 1px solid var(--sage);
  border-radius: 50%;
  width: 34px; height: 34px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.feature-card p { font-size: 14.5px; color: var(--ink-soft); font-weight: 300; }

/* Plan block */
.plan-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 70px;
}
.plan-block.reverse { grid-template-columns: 1.15fr 0.85fr; }
.plan-block.reverse .plan-copy { order: 2; }
.plan-copy h3 { font-size: 22px; margin-bottom: 14px; }
.plan-copy p { color: var(--ink-soft); font-weight: 300; font-size: 15.5px; }
.lightbox-trigger { position: relative; display: block; overflow: hidden; border-radius: 4px; cursor: zoom-in; border: 1px solid var(--line); }
.lightbox-trigger img { width: 100%; }
.zoom-hint {
  position: absolute; right: 14px; bottom: 14px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(20,22,26,0.72);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 3;
}
.lightbox-trigger:hover .zoom-hint { opacity: 1; }

/* Unit table */
.unit-table-wrap { margin-bottom: 70px; }
.unit-table-wrap h3 { font-size: 22px; margin-bottom: 22px; }
.table-scroll { overflow-x: auto; }
.unit-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.unit-table th, .unit-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.unit-table th {
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--sage-dark);
}
.unit-table tbody tr:hover { background: rgba(123,135,123,0.08); }
.table-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { border-radius: 4px; }
.about-media img { border-radius: 4px; }
.about-copy p { margin-bottom: 18px; color: var(--ink-soft); font-weight: 300; font-size: 16px; }
.pull-quote {
  border-left: 3px solid var(--sage);
  padding: 6px 0 6px 22px;
  margin: 26px 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}
.pull-quote em { color: var(--sage-dark); font-style: italic; }

/* Locatie */
.locatie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.check-list { margin: 26px 0 34px; display: flex; flex-direction: column; }
.check-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  position: relative;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 10px; height: 10px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}
.maps-stack { display: flex; flex-direction: column; gap: 20px; }
.locatie-media { position: relative; display: block; overflow: hidden; border-radius: 4px; cursor: zoom-in; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.locatie-media img { width: 100%; }
@media (hover: hover) and (pointer: fine) {
  .locatie-media:hover img { transform: scale(1.04) !important; transition: transform .6s ease; }
}
@media (hover: none), (pointer: coarse) {
  .locatie-media.is-visible img { animation: touchZoom 8s ease-in-out .9s infinite alternate; }
}
html.is-touch .locatie-media.is-visible img { animation: touchZoom 8s ease-in-out .9s infinite alternate; }

/* Contact */
.contact-section { background: var(--sage-tint); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  align-self: start;
}
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.contact-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-dark); }
.contact-value { font-size: 16px; }
.contact-value a:hover { color: var(--sage-dark); }

/* FAQ */
.faq-section { background: var(--white); }
.faq-wrap { max-width: 780px; }
.faq-list { margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item dt {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.faq-item dd {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-item dd a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.faq-item dd a:hover { color: var(--sage); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 28px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { color: var(--white); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 13.5px; letter-spacing: 0.04em; }
.footer-nav a:hover { color: var(--sage-light); }
.footer-copy { text-align: center; font-size: 12.5px; margin-top: 26px; color: rgba(255,255,255,0.5); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--sage-dark); transform: translateY(-3px); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,11,10,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 1100px; width: 100%; }
.lightbox img { width: 100%; border-radius: 4px; }
.lightbox figcaption { color: rgba(255,255,255,0.7); text-align: center; margin-top: 16px; font-size: 14px; }
.lightbox-close {
  position: absolute; top: 26px; right: 32px;
  background: none; border: none; color: var(--white);
  font-size: 34px; line-height: 1; cursor: pointer;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide.is-active img { animation: none; }
  .zoom-band .parallax-media img { animation: none; }
  .mosaic-item img,
  .locatie-media img,
  html.is-touch .zoom-band .parallax-media img,
  html.is-touch .mosaic-item.is-visible img,
  html.is-touch .locatie-media.is-visible img { animation: none; }
  .img-reveal::after { transition: none; }
  .img-reveal img { transition: none; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .parallax-media { inset: 0; transform: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .locatie-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(340px, 82vw);
    background: rgba(16,18,17,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 44px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 26px; }
  .nav-link { font-size: 17px; }
  .nav-toggle { display: flex; }

  .about-grid, .locatie-grid, .contact-grid { grid-template-columns: 1fr; }
  .plan-block, .plan-block.reverse { grid-template-columns: 1fr; }
  .plan-block.reverse .plan-copy { order: 0; }
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 280px 280px;
  }
  .mosaic-large { grid-row: span 1; }
  .image-band { height: 55vh; min-height: 340px; }
  .image-band.tall-band { height: 60vh; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero-content { padding-top: 130px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .stat:nth-child(3) { border-left: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-details { padding: 28px; }
  .scroll-cue { display: none; }
  .hero-dots { right: 20px; bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; }
  .mosaic { grid-template-rows: 300px 240px 240px; }
}
