/* ============================================================
   모바일 청첩장 — 귀염발랄 파스텔 피크닉 테마 🌼
   ============================================================ */

:root {
  --cream: #fffdf6;
  --mint-bg: #eef6ec;
  --yellow-bg: #fbf3de;
  --pink-bg: #fdf0f2;
  --pink: #f0a6b3;
  --pink-deep: #e08a9a;
  --pink-soft: #fadde3;
  --green: #8bb489;
  --green-soft: #cfe3c9;
  --yellow: #f2d691;
  --yellow-soft: #f8ecc7;
  --blue-soft: #d7e9f5;
  --ink: #6b6153;
  --ink-soft: #a89d8d;
  --line: #efe7d6;
  --round: 'Jua', 'Apple SD Gothic Neo', sans-serif;
  --hand: 'Gaegu', 'Apple SD Gothic Neo', sans-serif;
  --body: 'Gowun Dodum', 'Apple SD Gothic Neo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: #f3ecdb;
  line-height: 1.7;
  word-break: keep-all;
}

.invitation {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 40px rgba(111, 185, 111, 0.18);
  overflow: hidden;
}

/* ---------- 공통 ---------- */

.section {
  position: relative;
  padding: 72px 28px;
  text-align: center;
}

/* 파스텔 섹션 + 스캘럽(물결 반원) 테두리 */
.section--mint { background: var(--mint-bg); }
.section--yellow { background: var(--yellow-bg); }

.section--mint::before,
.section--yellow::before,
.section--mint::after,
.section--yellow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background-size: 28px 14px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}

.section--mint::before {
  top: -13px;
  background-image: radial-gradient(circle at 14px 14px, var(--mint-bg) 13px, transparent 13.5px);
}
.section--mint::after {
  bottom: -13px;
  background-image: radial-gradient(circle at 14px 0, var(--mint-bg) 13px, transparent 13.5px);
}
.section--yellow::before {
  top: -13px;
  background-image: radial-gradient(circle at 14px 14px, var(--yellow-bg) 13px, transparent 13.5px);
}
.section--yellow::after {
  bottom: -13px;
  background-image: radial-gradient(circle at 14px 0, var(--yellow-bg) 13px, transparent 13.5px);
}

.section__eyebrow { margin-bottom: 16px; }

/* 스티커 배지 */
.sticker {
  display: inline-block;
  font-family: var(--round);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--yellow-soft);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 16px;
  box-shadow: 2px 2px 0 var(--green-soft);
  transform: rotate(-1deg);
}

.sticker--pink {
  background: var(--pink-soft);
  box-shadow: 2px 2px 0 var(--yellow-soft);
  transform: rotate(1deg);
}

.section__title {
  font-family: var(--round);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--green-soft);
  margin: 18px 0 28px;
  font-size: 20px;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 52px;
  height: 0;
  border-top: 2.5px dotted var(--green-soft);
}

/* 아이콘 (정적 — 은은하게) */
.wiggle,
.bounce {
  display: inline-block;
}

.bounce--delay { animation-delay: 0; }

.btn {
  display: inline-block;
  font-family: var(--round);
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--pink-soft);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--pink-soft);
}

/* ---------- 사진 자리 표시 ---------- */

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(var(--pink-soft) 2.5px, transparent 3px),
    radial-gradient(var(--green-soft) 2.5px, transparent 3px),
    #fff;
  background-size: 36px 36px, 36px 36px;
  background-position: 0 0, 18px 18px;
  border: 2.5px dashed var(--pink);
  border-radius: 20px;
  color: var(--ink-soft);
}

.photo-placeholder__icon { font-size: 30px; }

.photo-placeholder__text {
  font-family: var(--hand);
  font-size: 16px;
  font-weight: 700;
}

/* 메인 사진: 아치(문) 모양 프레임 */
.photo-placeholder--main {
  aspect-ratio: 3 / 4;
  margin: 26px 0 34px;
  border-radius: 999px 999px 26px 26px;
}

.cover-photo {
  aspect-ratio: 3 / 4;
  margin: 26px auto 34px;
  max-width: 320px;
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  border: 2.5px solid var(--pink);
}

.cover-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder--gallery { aspect-ratio: 1 / 1; }
.photo-placeholder--map { aspect-ratio: 16 / 10; margin: 26px 0 20px; }

/* 약도 */
.map-image {
  display: block;
  margin: 26px 0 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid var(--pink);
}

.map-image__img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 2.5px solid var(--pink);
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 갤러리는 파스텔 번갈아 배치 */
.gallery-item:nth-child(3n + 1) { border-color: var(--pink); }
.gallery-item:nth-child(3n + 2) { border-color: var(--yellow); }
.gallery-item:nth-child(3n)     { border-color: var(--green); }

/* ---------- 1. 표지 ---------- */

.cover {
  position: relative;
  padding: 84px 28px 96px;
  text-align: center;
  background:
    linear-gradient(180deg, #e9f6ff 0%, var(--cream) 34%);
}

.cover__sky {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
}

.cover__names {
  font-family: var(--round);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.cover__amp {
  display: inline-block;
  font-size: 20px;
  margin: 0 8px;
}

.cover__cheer {
  font-family: var(--hand);
  font-size: 21px;
  font-weight: 700;
  color: var(--pink-deep);
  margin: 4px 0 18px;
}

.cover__date {
  font-family: var(--round);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.cover__venue {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* 잔디밭 */
.grass {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  font-size: 21px;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  pointer-events: none;
}

.grass--top {
  position: static;
  margin-bottom: 26px;
}

/* 톡톡 터지는 하트 (JS 생성) */
.heart-pop {
  position: fixed;
  font-size: 22px;
  pointer-events: none;
  z-index: 60;
  animation: heart-pop 0.9s ease-out both;
}

@keyframes heart-pop {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.4); }
  60% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -140px) scale(1.15) rotate(14deg); }
}

/* ---------- 2. 글귀 (말풍선) ---------- */

.bubble {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 4px 4px 0 var(--green-soft);
}

.bubble__text {
  font-family: var(--hand);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
}

.bubble__tail {
  position: absolute;
  bottom: -12px;
  left: 48px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) skew(8deg, 8deg);
}

.bubble-from {
  margin-top: 26px;
  font-family: var(--hand);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ---------- 3. 인사말 ---------- */

.greeting {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
}

.parents {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.parents__line {
  font-size: 15px;
  background: var(--pink-bg);
  border-radius: 999px;
  padding: 8px 22px;
}

.parents__names { letter-spacing: 0.04em; }
.parents__relation { color: var(--ink-soft); font-size: 13px; margin: 0 8px 0 4px; }
.parents__person { font-family: var(--round); font-weight: 400; font-size: 16px; letter-spacing: 0.08em; }

/* ---------- 4. 신랑 & 신부 소개 ---------- */

.couple {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.couple-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 24px 14px 20px;
}

.couple-card--groom { box-shadow: 3px 3px 0 var(--blue-soft); transform: rotate(-0.5deg); }
.couple-card--bride { box-shadow: 3px 3px 0 var(--pink-soft); transform: rotate(0.5deg); }

.couple-card__avatar {
  font-size: 44px;
  line-height: 1;
}

.couple-card__role {
  font-family: var(--round);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  margin-top: 10px;
}

.couple-card__name {
  font-family: var(--round);
  font-size: 19px;
  margin: 2px 0 6px;
}

.couple-card__tagline {
  display: inline-block;
  font-family: var(--hand);
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-deep);
  background: var(--pink-bg);
  border-radius: 999px;
  padding: 2px 12px;
  margin-bottom: 10px;
}

.couple-card--groom .couple-card__tagline {
  color: #4e8fb8;
  background: #eaf5fc;
}

.couple-card__intro {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink);
}

.couple-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  z-index: 3;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.08));
}

/* ---------- 5. 연락처 ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.contact-grid--parents { grid-template-columns: 1fr 1fr; margin-top: 12px; }

.contact-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 20px 14px;
}

.contact-card--small { padding: 14px 12px; }

.contact-card__role {
  font-family: var(--round);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.2em;
}

.contact-card__name {
  font-family: var(--round);
  font-size: 18px;
  margin: 4px 0 12px;
}

.contact-card--small .contact-card__name { font-size: 15px; margin-bottom: 8px; }

.contact-card__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.contact-card__actions a {
  font-family: var(--round);
  font-size: 12px;
  color: var(--ink);
  text-decoration: none;
  background: var(--yellow-bg);
  border: 1.5px solid var(--yellow);
  border-radius: 999px;
  padding: 6px 14px;
  transition: transform 0.15s;
}

.contact-card__actions a:active { transform: scale(0.92); }

.contact-card--small .contact-card__actions a { padding: 5px 12px; }

/* ---------- 6. 예식 안내 ---------- */

.wedding-date { font-family: var(--round); font-size: 18px; }
.wedding-venue { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

/* 달력 */
.calendar {
  margin: 30px auto 0;
  max-width: 330px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 4px 4px 0 var(--yellow-soft);
  padding: 22px 18px;
}

.calendar__month {
  font-family: var(--round);
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--pink-deep);
  margin-bottom: 14px;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 8px;
  font-family: var(--round);
  font-size: 13px;
}

.calendar__dow { color: var(--ink-soft); font-size: 11px; padding-bottom: 6px; }
.calendar__dow--sun, .calendar__day--sun { color: var(--pink-deep); }

.calendar__day {
  position: relative;
  height: 32px;
  line-height: 32px;
}

.calendar__day--wedding {
  color: #fff;
  z-index: 1;
}

.calendar__day--wedding::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  z-index: -1;
}

.calendar__day--wedding::after {
  content: "💍";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 1;
}

/* 카운트다운 */
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.countdown__item {
  width: 66px;
  padding: 12px 0 10px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
}

.countdown__item--pink   { background: var(--pink-bg);   box-shadow: 3px 3px 0 var(--pink-soft); }
.countdown__item--yellow { background: var(--yellow-bg); box-shadow: 3px 3px 0 var(--yellow-soft); }
.countdown__item--mint   { background: #f0faee;          box-shadow: 3px 3px 0 var(--green-soft); }
.countdown__item--blue   { background: #eef7fd;          box-shadow: 3px 3px 0 var(--blue-soft); }

.countdown__num {
  display: block;
  font-family: var(--round);
  font-size: 24px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-family: var(--round);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

.countdown__message {
  margin-top: 20px;
  font-family: var(--hand);
  font-size: 18px;
  font-weight: 700;
  color: var(--pink-deep);
}

.countdown__message strong {
  font-family: var(--round);
  font-weight: 400;
  font-size: 20px;
}

/* ---------- 7. 갤러리 ---------- */

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---------- 8. 오시는 길 ---------- */

.venue-name { font-family: var(--round); font-size: 18px; }
.venue-address { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.venue-tel { margin-top: 4px; }
.venue-tel a {
  font-family: var(--round);
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
}

.map-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.transport {
  text-align: left;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 6px 16px;
}

.transport__row {
  display: flex;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 2px dotted var(--line);
}

.transport__row:last-child { border-bottom: none; }

.transport__row dt {
  flex: 0 0 76px;
  font-family: var(--round);
  font-size: 13px;
  color: var(--ink);
}

.transport__row dd { font-size: 14px; color: var(--ink); }

/* ---------- 9. 마음 전하실 곳 ---------- */

.account-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 14px 0 28px;
}

.accordion {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--pink-soft);
  margin-bottom: 14px;
  overflow: hidden;
  text-align: left;
}

.accordion:last-of-type { box-shadow: 3px 3px 0 var(--blue-soft); }

.accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--round);
  font-size: 15px;
  color: var(--ink);
  background: none;
  border: none;
  padding: 16px 18px;
  cursor: pointer;
}

.accordion__arrow { color: var(--pink); transition: transform 0.25s; }

.accordion.is-open .accordion__arrow { transform: rotate(180deg); }

.accordion__body {
  display: none;
  border-top: 2px dotted var(--line);
  padding: 6px 18px 14px;
}

.accordion.is-open .accordion__body { display: block; }

.account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 2px dotted var(--line);
}

.account-row:last-child { border-bottom: none; }

.account-row__holder { font-size: 14px; font-weight: 700; }

.account-row__number {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.btn--copy {
  flex-shrink: 0;
  font-size: 12px;
  padding: 7px 14px;
  box-shadow: 2px 2px 0 var(--yellow-soft);
}

/* ---------- 10. 방명록 ---------- */

.guestbook-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.guestbook-form {
  display: grid;
  gap: 10px;
  text-align: left;
}

.guestbook-form__name,
.guestbook-form__message {
  width: 100%;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.guestbook-form__name:focus,
.guestbook-form__message:focus {
  border-color: var(--pink);
}

.guestbook-form__name::placeholder,
.guestbook-form__message::placeholder {
  color: var(--ink-soft);
  opacity: 0.7;
}

.btn--solid {
  background: var(--pink);
  border-color: var(--ink);
  color: #fff;
  padding: 13px 22px;
  box-shadow: 3px 3px 0 var(--yellow-soft);
}

.btn--solid:active { background: var(--pink-deep); }

.btn--solid:disabled {
  opacity: 0.5;
  cursor: default;
}

.guestbook-demo-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 12px;
}

.guestbook-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.guestbook-item {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}

/* 방명록 카드도 옹기종기 삐뚤빼뚤 */
.guestbook-item:nth-child(odd) { transform: rotate(-0.5deg); }
.guestbook-item:nth-child(even) { transform: rotate(0.5deg); }

.guestbook-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.guestbook-item__name {
  font-family: var(--round);
  font-size: 14px;
  color: var(--ink);
}

.guestbook-item__name::before {
  content: "💬 ";
  font-size: 12px;
}

.guestbook-item__date {
  font-size: 11px;
  color: var(--ink-soft);
}

.guestbook-item__message {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  white-space: pre-wrap;
  word-break: break-word;
}

.guestbook-empty {
  margin-top: 34px;
  font-family: var(--hand);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 2;
}

/* ---------- 11. 마무리 ---------- */

.closing {
  padding: 56px 28px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--mint-bg) 100%);
}

.closing__thanks {
  font-family: var(--round);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

.closing__names {
  font-family: var(--round);
  font-size: 21px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.closing__message {
  font-family: var(--hand);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ---------- 토스트 ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%) translateY(16px);
  background: var(--pink);
  color: #fff;
  font-family: var(--round);
  font-size: 14px;
  padding: 11px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(91, 81, 66, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- 꽃잎 떨어지는 효과 ---------- */

.petals-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

/* ---------- 스크롤 등장 애니메이션 ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* 패럴랙스 대상: transform은 JS가 제어하므로 opacity/blur로만 등장 */
.reveal--fade {
  transform: none;
  filter: blur(10px);
  transition: opacity 1.2s ease, filter 1.2s ease;
}

.reveal--fade.is-visible {
  transform: none;
  filter: blur(0);
}

/* 사진: 폴짝 뛰며 자리잡기 */
.reveal--photo {
  transform: translateY(22px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--photo.is-visible {
  transform: translateY(0) scale(1);
}

/* 점선 장식: 가운데에서 양쪽으로 펼쳐지며 그려짐 */
.ornament.reveal::before,
.ornament.reveal::after {
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.ornament.reveal.is-visible::before,
.ornament.reveal.is-visible::after {
  width: 52px;
}

/* 표지 이름: 폴짝 등장 */
.cover__names.reveal {
  transform: translateY(24px);
  transition: opacity 0.9s ease,
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.cover__names.reveal.is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--fade,
  .reveal--photo {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .ornament.reveal::before,
  .ornament.reveal::after { width: 52px; transition: none; }
}
