@font-face {
  font-family: "Better Time";
  src: url("font/Better Time.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato Local";
  src: url("font/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato Local";
  src: url("font/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato Local";
  src: url("font/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors: zentral zum schnellen Anpassen */
  --bg: #ffffff;
  --bg-alt: #faf9fb;
  --surface: #ffffff;
  --text: #1f1a1d;
  --muted: #6f636a;
  --line: #8f1e3d;
  --accent: #9e1232;
  --accent-dark: #7f0f29;
  --footer-bg: #ffffff;
  --footer-text: #1f1a1d;
  --footer-meta: #6f636a;
  --shadow: 0 10px 28px rgba(59, 38, 46, 0.07);
  --font-display: "Better Time", "Times New Roman", serif;
  --font-body: "Lato Local", "Lato", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--text);
  background: var(--footer-bg);
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--accent-dark);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 92vw);
}

.text-center {
  text-align: center;
}

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

#ablauf,
.quote {
  padding: 6.4rem 0;
}

#geschenke,
#trauzeugen,
#faq {
  padding-bottom: 7.6rem;
}

.invitation {
  padding: 7rem 0;
  background: var(--surface);
  overflow: hidden;
}

.invitation::before,
.invitation::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: min(13vw, 150px);
  aspect-ratio: 0.75;
  opacity: 0.9;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.invitation::before {
  left: max(4vw, calc(50% - 560px));
  top: 50%;
  transform: translateY(-50%);
  background-image: url("images/plant02.png");
}

.invitation::after {
  right: max(4vw, calc(50% - 560px));
  top: 52%;
  transform: translateY(-50%) scaleX(-1);
  background-image: url("images/plant04.png");
}

.invitation-panel {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
}

.invitation-panel h2 {
  margin: 1.2rem 0 1rem;
}

.invitation-panel p {
  margin: 0 auto 1.2rem;
}

.invitation-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 50%, var(--line) 80%, transparent 100%);
}

.invitation-panel p + p {
  margin-top: 0.7rem;
}

.section.alt {
  background: var(--bg-alt);
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0;
  line-height: 1.3;
}

.section-head h2 + p {
  margin-top: 0;
  margin-bottom: 0;
}

#ablauf .section-head,
#locations .section-head,
#geschenke .section-head {
  margin-bottom: 3.2rem;
}

#ablauf .section-head h2,
#locations .section-head h2,
#geschenke .section-head h2 {
  margin-bottom: 1.15rem;
}

#ablauf .section-subdate,
#locations .section-head p,
#geschenke .section-head p {
  margin-top: 0.1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 280ms ease, transform 320ms ease;
}

body.scrolled .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  font-family: var(--font-display);
  text-decoration: none;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-ampersand {
  color: #830002;
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  border-bottom-color: var(--line);
  color: var(--line);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 80vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  text-align: center;
  color: #ffffff;
  background-image:
    linear-gradient(rgba(21, 14, 17, 0.24), rgba(21, 14, 17, 0.58)),
    url("images/we.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 14, 17, 0.1), rgba(21, 14, 17, 0.35));
  z-index: -1;
}

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

.hero-content::before,
.hero-content::after {
  content: none;
}

.hero-names {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  margin-bottom: 0.34em;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-ampersand {
  color: #830002;
  font-size: 0.9em;
}

.hero-date {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 1.15rem;
  margin-bottom: 0;
  color: #fff3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-date::before,
.hero-date::after {
  content: "";
  display: block;
  width: clamp(72px, 14vw, 150px);
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-content {
  padding-bottom: clamp(3rem, 10vh, 7rem);
}

.countdown-strip {
  background: #ffffff;
  padding: 3rem 0 2.9rem;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.countdown div {
  position: relative;
  padding: 0.8rem 0.75rem;
}

.countdown div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--line);
}

.countdown span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.9vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  color: #3a3028;
}

.countdown small {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--line);
}

.timeline {
  display: grid;
  gap: 0.35rem;
  position: relative;
  --timeline-gap: 2.2rem;
  --timeline-leaf-width: 22px;
  --timeline-leaf-half: 11px;
  padding: 1.6rem 0 0.4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline article {
  width: calc(50% - var(--timeline-gap));
  padding: 1.2rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
}

.timeline article:nth-child(odd) {
  justify-self: start;
  text-align: right;
}

.timeline article:nth-child(even) {
  justify-self: end;
  text-align: left;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  width: 22px;
  height: 30px;
  background-color: transparent !important;
  background-image: url("images/leaf.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 0 !important;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.14));
}

.timeline article:nth-child(odd)::before {
  right: calc((var(--timeline-gap) + var(--timeline-leaf-half)) * -1);
  transform: rotate(-14deg);
}

.timeline article:nth-child(even)::before {
  left: calc((var(--timeline-gap) + var(--timeline-leaf-half)) * -1);
  transform: rotate(12deg) scaleX(-1);
}

.card,
.guest-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.timeline h3,
.card h3 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-subdate {
  margin: -0.25rem 0 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#geschenke .cards.two {
  margin-top: 0.4rem;
}

.gift-item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.9rem;
}

.gift-copy p {
  margin-bottom: 0.7rem;
}

.gift-placeholder {
  width: 180px;
  min-width: 180px;
  min-height: 180px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #8e7f72;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(175, 131, 96, 0.08), rgba(237, 228, 218, 0.15)),
    repeating-linear-gradient(-45deg, rgba(175, 131, 96, 0.09), rgba(175, 131, 96, 0.09) 8px, transparent 8px, transparent 16px);
}

.locations-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 0.4rem;
}

.location-block {
  border-left: 2px solid var(--line);
  padding: 1.5rem;
  background: transparent;
  box-shadow: none;
}

.location-gut-obermuehle {
  border-left: 2px solid var(--line) !important;
  box-shadow: none !important;
}

.location-block h3 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.location-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
  grid-auto-rows: 280px;
}

.location-layout > * {
  border: 0 !important;
  box-shadow: none !important;
  height: 100%;
}

.location-info {
  border: 0;
  background: transparent;
  padding: 1rem;
  min-height: 280px;
  height: 100%;
}

.location-info h4 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.location-info p {
  margin: 0 0 1rem;
}

.location-info .location-address {
  margin-bottom: 0;
}

.location-media {
  display: contents;
}

.photo-placeholder {
  border: 1px solid var(--line);
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #8e7f72;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background:
    linear-gradient(135deg, rgba(175, 131, 96, 0.08), rgba(237, 228, 218, 0.15)),
    repeating-linear-gradient(-45deg, rgba(175, 131, 96, 0.09), rgba(175, 131, 96, 0.09) 8px, transparent 8px, transparent 16px);
}

.location-media iframe {
  width: 100%;
  min-height: 280px;
  height: 100%;
  border: 0 !important;
}

.location-media img {
  width: 100%;
  min-height: 280px;
  height: 100%;
  object-fit: cover;
  border: 0 !important;
}

.location-block a {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  margin: 0;
  width: fit-content;
}

.location-info a + h4 {
  margin-top: 2.8rem;
}

.quote {
  background: transparent;
  position: relative;
}

.quote::before,
.quote::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: min(13vw, 150px);
  aspect-ratio: 0.75;
  opacity: 0.9;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.quote::before {
  left: max(4vw, calc(50% - 560px));
  top: 48%;
  transform: translateY(-50%);
  background-image: url("images/plant02.png");
}

.quote::after {
  right: max(4vw, calc(50% - 560px));
  top: 52%;
  transform: translateY(-50%) scaleX(-1);
  background-image: url("images/plant04.png");
}

.quote-divider {
  height: 1px;
  width: 100%;
  margin: 0 0 1.2rem;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 50%, var(--line) 80%, transparent 100%);
  position: relative;
  z-index: 1;
}

blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.9vw, 1.8rem);
  font-style: italic;
  margin: 0 0 1rem;
}



.guest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.remove-guest {
  border: none;
  background: transparent;
  color: #9e6253;
  text-decoration: underline;
  cursor: pointer;
}

.full {
  grid-column: 1 / -1;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.55rem;
}

.checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.form-status {
  min-height: 1.2rem;
  color: #2c5282;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.9rem 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-list details[open] {
  border-color: #c7b29f;
  box-shadow: 0 8px 20px rgba(44, 29, 18, 0.08);
}

.witness-list {
  display: grid;
  gap: 1.2rem;
}

.witness-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  min-height: 220px;
  gap: 1rem;
}

.witness-text {
  text-align: left;
}

.witness-row.right-photo .witness-text {
  text-align: right;
}

.witness-text h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 1.2rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin-top: 1.15rem;
  animation: faqReveal 220ms ease;
  line-height: 1.7;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  padding: 3rem 0;
  background: var(--footer-bg);
  color: var(--footer-text);
  font-size: 0.875rem;
  font-weight: 300;
}

.footer-meta {
  margin-top: 0.7rem;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-variant-caps: normal !important;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--footer-meta);
}

.footer-names {
  text-transform: none !important;
  font-variant-caps: normal !important;
  letter-spacing: 0 !important;
}

.footer-ampersand {
  color: #830002;
}

#ueber-uns {
  position: relative;
  padding-bottom: 16rem;
}

#ueber-uns::before {
  content: none;
}

.leaf-drift-divider {
  padding: 2.5rem 0 2.1rem;
  background: transparent;
}

.leaf-drift-track {
  position: relative;
  min-height: 52px;
}

.drift-leaf {
  position: absolute;
  width: 27px;
  height: 27px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.drift-leaf.l1 {
  left: 31%;
  top: 14px;
  transform: rotate(-18deg) scale(0.72);
}

.drift-leaf.l2 {
  left: 38%;
  top: 5px;
  transform: rotate(12deg) scale(0.86);
}

.drift-leaf.l3 {
  left: 45%;
  top: 17px;
  transform: rotate(-8deg) scale(1.08);
}

.drift-leaf.l4 {
  left: 52%;
  top: 8px;
  transform: rotate(22deg) scale(1.1);
}

.drift-leaf.l5 {
  left: 59%;
  top: 19px;
  transform: rotate(-15deg) scale(0.88);
}

.drift-leaf.l6 {
  left: 66%;
  top: 6px;
  transform: rotate(18deg) scale(0.74);
}

.timeline-location-divider {
  padding: 2.4rem 0 2.7rem;
}

.timeline-location-divider .drift-leaf.l1 {
  left: 30%;
  top: 13px;
  transform: rotate(-24deg) scale(0.68);
}

.timeline-location-divider .drift-leaf.l2 {
  left: 37%;
  top: 4px;
  transform: rotate(16deg) scale(0.84);
}

.timeline-location-divider .drift-leaf.l3 {
  left: 44%;
  top: 16px;
  transform: rotate(-5deg) scale(1.06);
}

.timeline-location-divider .drift-leaf.l4 {
  left: 51%;
  top: 6px;
  transform: rotate(27deg) scale(1.12);
}

.timeline-location-divider .drift-leaf.l5 {
  left: 58%;
  top: 18px;
  transform: rotate(-19deg) scale(0.86);
}

.timeline-location-divider .drift-leaf.l6 {
  left: 65%;
  top: 8px;
  transform: rotate(13deg) scale(0.7);
}

.section p {
  margin: 0 0 1.5rem;
  font-weight: 300;
}

body.js-ready .countdown-strip,
body.js-ready .section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.js-ready .in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .cards.two,


  .location-media,
  .witness-row {
    grid-template-columns: 1fr;
  }

  .gift-placeholder {
    width: 160px;
    min-width: 160px;
    min-height: 160px;
  }

  .location-layout {
    grid-template-columns: 1fr;
  }

  .witness-row {
    min-height: 0;
  }

  .witness-row.left-photo > :nth-child(1),
  .witness-row.right-photo > :nth-child(3) {
    order: 1;
  }

  .witness-row .witness-text {
    order: 2;
    text-align: left;
  }

  .timeline::before {
    left: 0.4rem;
  }

  .timeline article {
    width: 100%;
    justify-self: stretch;
    text-align: left;
    padding: 0.75rem 0 0.75rem 2rem;
  }

  .timeline article:nth-child(odd),
  .timeline article:nth-child(even) {
    text-align: left;
  }

  .timeline article:nth-child(odd)::before,
  .timeline article:nth-child(even)::before {
    left: calc(0.4rem - var(--timeline-leaf-half));
    right: auto;
    top: 1.05rem;
    transform: rotate(-10deg);
  }
}

@media (max-width: 760px) {
  .section-head h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .hero-names {
    font-size: 1.6rem;
    max-width: 85vw;
  }

  .hero-date {
    font-size: 1.3rem;
  }

  .menu-toggle {
    display: block;
    border: 0;
    border-bottom: 1px solid #830002;
    background: transparent;
    color: var(--text);
    padding: 0.45rem 0 0.35rem 0;
    line-height: 1;
  }

  .main-nav {
    position: absolute;
    inset: 72px 0 auto;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 4vw;
    display: none;
    flex-direction: column;
    gap: 0.6rem;
  }

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

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .countdown div {
    padding: 0.85rem 0.25rem;
  }

  .countdown div:nth-child(2)::after {
    display: none;
  }

  .countdown div::after {
    top: 22%;
    bottom: 22%;
  }

  .countdown small {
    font-size: 0.75rem;
    margin-top: 0.62rem;
  }

  .countdown span {
    font-size: 1.65rem;
  }

  .attendance-options {
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: 5% center;
  }

  .section {
    padding: 4rem 0;
  }

  #ablauf,
  .quote {
    padding: 2rem 0;
  }

  #geschenke,
  #trauzeugen,
  #faq {
    padding-bottom: 2.4rem;
  }

  .hero-date {
    margin-top: 0.9rem;
    gap: 0.6rem;
  }

  .hero-date::before,
  .hero-date::after {
    width: clamp(40px, 12vw, 78px);
  }

  .invitation::before,
  .invitation::after,
  .quote::before,
  .quote::after {
    display: none;
  }

  .leaf-drift-track {
    min-height: 42px;
  }

  .leaf-drift-divider {
    padding: 1.8rem 0 1.7rem;
  }

  .timeline-location-divider {
    padding: 1.8rem 0 2rem;
  }

  .drift-leaf {
    width: 21px;
    height: 21px;
  }

  .drift-leaf.l1 {
    left: 24%;
    top: 15px;
    transform: rotate(-18deg) scale(0.72);
  }

  .drift-leaf.l2 {
    left: 34%;
    top: 5px;
    transform: rotate(12deg) scale(0.86);
  }

  .drift-leaf.l3 {
    left: 44%;
    top: 16px;
    transform: rotate(-8deg) scale(1.08);
  }

  .drift-leaf.l4 {
    left: 54%;
    top: 6px;
    transform: rotate(22deg) scale(1.1);
  }

  .drift-leaf.l5 {
    left: 64%;
    top: 16px;
    transform: rotate(-15deg) scale(0.88);
  }

  .drift-leaf.l6 {
    left: 74%;
    top: 5px;
    transform: rotate(18deg) scale(0.74);
  }

  #ueber-uns {
    padding-bottom: 8rem;
  }
}
