/* Booking-app-specific additions on top of css/style.css (kept separate so
   copying a fresh style.css from the marketing site never clobbers these). */

:root {
  --leaf-green: #26451f;
  --brass: #c49a52;
}

/* ============ Section rhythm for this campaign only ============ */
/* The shared site-wide .section (style.css) uses 88px top/bottom padding
   and .page-banner uses min-height:46vh - both sized for long marketing
   pages, not a booking flow where every extra px of vertical padding is
   scrolling the customer has to do before they can act. Scoped overrides
   so the main marketing site's spacing is untouched. */
.page-jubilaeum .section { padding: 36px 0; }
.page-jubilaeum .section--alt { padding: 32px 0; }
.page-jubilaeum .section--tight { padding: 24px 0; }
.page-jubilaeum .container { max-width: 1360px; }
.page-jubilaeum .section-head { margin-bottom: 22px; }
/* One-colour wordmark for this campaign only (style.css's shared .brand
   splits "aa"/"haa" into cream/terracotta for the main site's dark hero -
   here the ask is a single terracotta wordmark, so override scoped to this
   page rather than touching the site-wide rule other pages still use). */
.page-jubilaeum .brand,
.page-jubilaeum .brand span { color: var(--terracotta-light); }
/* Event cards get ~12.5% more width on large screens (within the site's
   1360px .container everywhere else) while keeping the 3+2+statement grid
   unchanged - grid-template-columns stays repeat(3,1fr), cards just each
   get a larger equal share of the wider row. */
#events.section > .container { max-width: 1530px; }
/* Language switcher - a sibling of .header-phone inside the shared
   .header-actions flex row (style.css), so it inherits that row's gap.
   Deliberately not covered by style.css's @media(max-width:720px) rule
   that hides .header-phone/.nav-links, since switching language must stay
   reachable at every width. */
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .5px; }
.lang-switch a { color: rgba(255,250,240,.55); }
.lang-switch a:hover { color: var(--cream); }
.lang-switch a.is-active { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.lang-switch span { color: rgba(255,250,240,.3); }

/* ============ Placeholder photo slots ============ */
/* Reusable until real aahaa food photography replaces these - each slot
   carries the exact filename it expects (see build_anniversary docs / chat)
   as a background-image; the pattern+label below is what shows until that
   file exists at public/assets/<name>, and simply disappears underneath a
   real photo once one loads (no broken-image icon either way). */
.photo-slot {
  position: relative; overflow: hidden; border-radius: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(173,79,44,.08) 0 14px, rgba(173,79,44,.14) 14px 28px),
    var(--paper-deep);
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.photo-slot::after {
  content: attr(data-label);
  display: block; width: 100%; padding: 10px 14px; box-sizing: border-box;
  background: rgba(23,19,15,.55); color: var(--cream);
  font-size: 11px; font-weight: 700; letter-spacing: .3px; text-align: center;
}
/* views.js only renders data-label when the real photo file is missing -
   once a slot's photo is added, the attribute (and this whole bar, which
   would otherwise still show as an empty translucent strip) disappears
   automatically, for every photo slot, with no per-slot CSS needed. */
.photo-slot:not([data-label])::after { content: none; }

/* ============ Full-bleed hero with gradient scrim (hub page) ============ */
/* One continuous background photo (placeholder until real photography is
   supplied) with a dark scrim strongest over the text side - not two hard
   boxes. On mobile the photo sits below the text instead (see media query),
   since a scrim-over-photo composition needs width to read well. */
.jub-hero {
  position: relative; overflow: hidden; color: var(--cream);
  background: var(--ink); padding: 32px 20px 0;
}
.jub-hero-photo {
  aspect-ratio: 4 / 3; margin: 0 -20px; border-radius: 0;
  /* Mobile crops left/right (box narrower than the wide source) - anchor
     right so it grabs the same food-holding region the desktop crop uses,
     instead of the default center (which could land on the transition
     zone between food and negative space). */
  background-position: right center;
}
.jub-hero-content { position: relative; z-index: 1; padding: 28px 0 32px; text-align: center; }
.jub-hero-brand { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.jub-hero-brand span { color: var(--terracotta-light); }
.jub-hero-kicker { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brass); margin-bottom: 4px; }
.jub-hero-title {
  font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700;
  font-size: clamp(34px, 2.4vw + 22px, 64px); line-height: 1.03; color: var(--cream); margin: 0 0 10px;
}
.jub-hero-dates { font-size: clamp(15px, .8vw + 12px, 20px); font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.jub-hero-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center; font-size: 12.5px; font-weight: 600; letter-spacing: .3px; color: rgba(255,250,240,.78); margin-bottom: 12px; }
.jub-hero-meta span { white-space: nowrap; }
.jub-hero-tagline { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: clamp(14px, .3vw + 13px, 17px); color: rgba(255,250,240,.85); max-width: 440px; margin: 0 auto 16px; }
.jub-hero .btn-cta { width: 100%; max-width: 320px; }
.jub-hero-cuisine-side { display: none; }

@media (min-width: 900px) {
  .jub-hero { padding: 0; min-height: 480px; display: flex; align-items: center; }
  /* Note: background-size:cover on a full-width box only ever crops
     top/bottom here (the box is always wider than any reasonable photo, so
     there's never horizontal slack to reposition - background-position-x
     would be a no-op). To genuinely bias the food right, the image is fit
     to the hero's height instead and anchored to the right edge; the ink
     background (not a stretched photo) fills whatever's left on the left
     side, which the gradient blends into. */
  .jub-hero-photo {
    position: absolute; inset: 0; margin: 0; aspect-ratio: auto; z-index: 0;
    background-size: auto 100%; background-position: right center; background-repeat: no-repeat;
    background-color: var(--ink);
  }
  .jub-hero-photo::after { content: none; } /* placeholder label off here - it would sit mid-photo */
  .jub-hero-photo::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 40%, rgba(23,19,15,.5) 50%, rgba(23,19,15,.15) 64%, rgba(23,19,15,0) 78%);
  }
  .jub-hero-content {
    text-align: left; max-width: 1360px; margin: 0 auto; padding: 64px 24px;
    width: 100%; box-sizing: border-box;
  }
  .jub-hero-content > * { max-width: 560px; }
  .jub-hero-tagline { margin: 0 0 16px; }
  .jub-hero .btn-cta { width: auto; }
}

/* This decorative side-label only fits comfortably once the gutter between
   the viewport edge and jub-hero-content's own left edge is wide enough for
   its longest line - which depends on the active language (German's lines
   run noticeably wider than English's). Rather than resize/rewrap the text
   to fit a shrinking gutter down to 900px (illegible at the narrow end,
   language-dependent to get right), it simply doesn't render until there's
   room: hidden through the whole 900-1650px range, where jub-hero-content
   is a fixed 1360px column with too little gutter to its left. */
@media (min-width: 1650px) {
  /* jub-hero-content's own left edge sits at max(24px, 50% - 680px) (680px
     = half its 1360px centred column) - call that D. Anchoring this box by
     `right` instead of `left` pins its right edge to exactly D too (via the
     identity right = 100% - D, distributed through max() as the min() of
     two terms below), regardless of how wide this box's own text renders -
     it grows leftward into the now-generous gutter instead of rightward
     into the headline. */
  .jub-hero-cuisine-side {
    display: block; position: absolute; z-index: 1;
    right: min(calc(100% - 24px), calc(50% + 680px)); top: 50%; transform: translateY(-50%);
    font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    line-height: 1.9; color: rgba(255,250,240,.75); border-left: 2px solid var(--terracotta-light); padding-left: 14px;
    max-width: 220px;
  }
}

/* ============ Event page banner (event/menu/booking page) ============ */
/* A short, wide atmospheric strip - not the shared site-wide .page-banner
   (that's sized for long marketing pages with min-height:46vh; this page's
   job is to get the visitor into the menu quickly). Reuses the hub hero's
   right-anchored photo technique at a fraction of the height: content
   fixed to the left, photo biased right, dark gradient between them. */
.event-hero {
  position: relative; overflow: hidden; color: var(--cream);
  background: var(--ink); min-height: 220px; display: flex; align-items: center;
  padding: 90px 20px 28px;
}
.event-hero-photo {
  position: absolute; inset: 0; aspect-ratio: auto; z-index: 0;
  background-size: auto 100%; background-position: right center; background-repeat: no-repeat;
  background-color: var(--ink);
}
/* Until the real banner photo exists, .photo-slot's filename label (useful
   for us during setup) must not read as customer-facing text on a live
   page - suppressed here the same way the hub hero already suppresses its
   own placeholder label, leaving just the plain colour/pattern fallback. */
.event-hero-photo::after { content: none; }
.event-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 38%, rgba(23,19,15,.55) 54%, rgba(23,19,15,.18) 72%, rgba(23,19,15,0) 88%);
}
.event-hero-content { position: relative; z-index: 2; max-width: 480px; }
.event-hero-content .eyebrow { color: var(--terracotta-light); }
.event-hero-content h1 {
  font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700;
  font-size: clamp(26px, 2vw + 18px, 38px); color: var(--cream); margin: 6px 0 8px; line-height: 1.08;
}
.event-hero-content p { color: rgba(255,250,240,.85); font-size: 14.5px; margin: 0 0 14px; }
.event-hero-content .breadcrumb { margin-top: 0; }
@media (min-width: 900px) {
  .event-hero { min-height: 300px; padding: 0 24px; }
  .event-hero-content { max-width: 1360px; margin: 0 auto; width: 100%; box-sizing: border-box; }
  .event-hero-content > * { max-width: 480px; }
}

/* ============ Primary CTA button ============ */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--terracotta); color: var(--cream); border: none; border-radius: 999px;
  padding: 16px 32px; font-size: 16px; font-weight: 700; letter-spacing: .2px;
  cursor: pointer; transition: background .15s ease, transform .15s ease; box-shadow: var(--shadow-soft);
}
.btn-cta:hover:not(:disabled) { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-cta:disabled { opacity: .5; cursor: not-allowed; }
.btn-cta.btn-cta-block { width: 100%; }

/* ============ Event choice cards (hub page) ============ */
/* 3 cards, then a 2nd row of 2 cards + one non-card "campaign statement"
   item occupying the grid's 3rd slot instead of leaving it empty/centering
   the row - same grid, one extra child. */
.event-card-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .event-card-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 980px) { .event-card-grid { grid-template-columns: repeat(3, 1fr); } }

/* Photo-top, text-below at every breakpoint (not just mobile) - this is
   what makes the photo slot a fixed, predictable 4:3 everywhere instead of
   stretching to whatever height the card's text happens to need. One
   photograph, one crop shape, same composition survives all screen sizes. */
.event-card {
  background: var(--cream); border: 1px solid var(--ornament); border-radius: 10px;
  overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--terracotta); }
.event-card-photo { flex: none; width: 100%; aspect-ratio: 4 / 3; border-radius: 0; }
.event-card-body { flex: 1; min-width: 0; padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 4px; }
.event-card-date { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--terracotta); }
.event-card-title { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700; font-size: clamp(18px, 1vw + 14px, 21px); color: var(--ink); margin: 2px 0 3px; line-height: 1.2; }
.event-card-time { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.event-card-desc { font-size: 12.5px; color: var(--muted); margin: 4px 0 4px; line-height: 1.4; }
.event-card-price { font-size: 12.5px; font-weight: 700; color: var(--leaf-green); margin-bottom: 10px; }
.event-card .btn-cta { margin-top: auto; padding: 10px 18px; font-size: 13px; width: fit-content; }

/* ============ Campaign statement (fills the grid's empty slot) ============ */
.campaign-statement {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px 16px; gap: 10px; min-height: 140px;
}
.campaign-statement svg { width: 40px; height: 40px; color: var(--terracotta); opacity: .8; }
.campaign-statement p {
  font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700;
  font-size: clamp(19px, 1.2vw + 15px, 24px); color: var(--terracotta-dark); line-height: 1.3; margin: 0;
}
.campaign-statement .rule { width: 44px; height: 2px; background: var(--brass); }

/* ============ Benefits row (below event cards) ============ */
.benefits-row { display: grid; grid-template-columns: 1fr; gap: 28px; text-align: center; }
@media (min-width: 720px) {
  .benefits-row { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .benefit-item { display: flex; align-items: flex-start; gap: 14px; padding: 0 20px; position: relative; }
  .benefit-item + .benefit-item::before {
    content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--ornament);
  }
}
.benefit-item { display: flex; align-items: center; flex-direction: column; gap: 10px; }
@media (min-width: 720px) { .benefit-item { flex-direction: row; } }
.benefit-item svg { width: 30px; height: 30px; color: var(--terracotta); flex: none; }
.benefit-item h4 { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-size: 17px; margin: 0 0 2px; color: var(--ink); }
.benefit-item p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ============ Menu stages (event page) - 3/2/1 editorial columns ======= */
/* Native CSS multicol (not a manual grid/bucketing algorithm) balances
   column heights on its own; break-inside:avoid on each stage is what keeps
   a category's number/title/items together as one unit rather than letting
   the browser split it mid-list across two columns. */
.menu-stages { max-width: 640px; margin: 0 auto; }
@media (min-width: 700px) {
  .menu-stages { columns: 2; column-gap: 40px; max-width: none; }
}
@media (min-width: 1100px) {
  .menu-stages { columns: 3; column-gap: 40px; }
}
.menu-stage { margin: 0 0 30px; break-inside: avoid; }
.menu-stage-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
/* Small terracotta capsule, not a plain number - and not a button/link, so
   no cursor/hover/focus styling is applied to it or the title beside it. */
.menu-stage-number {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--terracotta); color: var(--cream);
  font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700; font-size: 12.5px;
  display: flex; align-items: center; justify-content: center;
}
.menu-stage-title { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700; font-size: clamp(17px, 1.6vw + 13px, 21px); color: var(--terracotta-dark); }
.menu-stage-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--brass), rgba(196,154,82,0)); }
.menu-stage-items { display: grid; gap: 12px; }
.menu-dish-name { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; }
/* Description is secondary to the dish name - one compact muted line in
   the active language only; absent entirely (no empty <p>) when that
   language has no description for this item, per views.js. */
.menu-dish-desc { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* ============ Sitting selector (event page) ============ */
.sitting-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
@media (min-width: 560px) { .sitting-grid.has-choice { grid-template-columns: 1fr 1fr; } }
.sitting-card {
  cursor: pointer; background: var(--cream); border: 1.5px solid var(--ornament); border-radius: 10px;
  padding: 18px 20px; text-align: left; font: inherit; transition: border-color .15s ease, background .15s ease;
}
.sitting-card:hover:not(:disabled) { border-color: var(--terracotta); }
.sitting-card.is-selected { border-color: var(--terracotta); border-width: 2px; background: #fffaf0; }
.sitting-card:disabled { opacity: .4; cursor: not-allowed; }
.sitting-card-label { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.sitting-card-time { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.sitting-card-note { font-size: 13.5px; color: var(--terracotta-dark); font-weight: 700; }
.sitting-card.is-info { cursor: default; }
.sitting-card.is-info:hover { border-color: var(--ornament); }

/* ============ Pricing cards (event page) ============ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.pricing-card {
  position: relative; cursor: pointer; background: var(--cream); border: 1.5px solid var(--ornament);
  border-radius: 10px; padding: 22px 14px 18px; text-align: center; font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.pricing-card:hover:not(:disabled) { border-color: var(--terracotta); transform: translateY(-2px); }
.pricing-card:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.pricing-card.is-selected { border-color: var(--terracotta); border-width: 2px; box-shadow: var(--shadow); }
.pricing-card.is-recommended { border-color: var(--brass); background: #fffaf0; }
.pricing-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: var(--cream); font-size: 10.5px; font-weight: 800;
  letter-spacing: .6px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.pricing-card-label { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; line-height: 1.3; }
.pricing-card-original { font-size: 12.5px; color: var(--muted); text-decoration: line-through; opacity: .75; }
.pricing-card-price { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700; font-size: clamp(20px, 5vw, 32px); color: var(--terracotta-dark); }

.pricing-card-pp { font-size: 11.5px; color: var(--muted); margin-bottom: 4px; }
.pricing-card-savings { font-size: 12px; font-weight: 800; color: var(--leaf-green); }

#checkout-status.status-error { color: #b3261e; }
#checkout-status.status-ok { color: #2e7d32; }
#checkout-status.status-pending { color: var(--muted); }

.guest-field { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.guest-field input {
  margin-top: 6px; width: 100%; padding: 11px 12px; border: 1px solid var(--ornament);
  border-radius: 4px; font: inherit; background: var(--cream);
}
.guest-field-checkbox { display: flex; align-items: flex-start; gap: 8px; font-weight: 600; }
.guest-field-checkbox input { margin-top: 3px; width: auto; }

/* ============ Reservation panel (event page "Almost There") ============ */
/* Replaces the old reuse of .ticket-cta (a shared 560px-capped "buy now"
   card style, fought back with inline style overrides) with a dedicated,
   wider two-column layout: guest details + terms on the left, payment on
   the right - collapsing to one column on narrow screens. */
.reservation-panel {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  max-width: 1040px; margin: 0 auto; text-align: left;
}
@media (min-width: 860px) {
  .reservation-panel { grid-template-columns: 2.1fr 1fr; align-items: start; gap: 40px; }
}
.reservation-panel-fields { display: flex; flex-direction: column; }
/* align-items:end is a safety net, not the primary fix - the real fix was
   shortening the phone label so it never wraps to a 2nd line in the first
   place (see i18n.js's fieldPhone comment). This just protects against the
   same class of bug if a future translation is long enough to wrap anyway. */
.reservation-panel-row { display: grid; grid-template-columns: 1fr; gap: 0 20px; align-items: end; }
@media (min-width: 560px) { .reservation-panel-row { grid-template-columns: 1fr 1fr; } }
.reservation-panel-pay {
  background: var(--cream); border: 1px solid var(--ornament); border-radius: 10px;
  padding: 26px 20px; text-align: center;
}
.reservation-panel-pay h3 {
  font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700;
  font-size: 15px; color: var(--terracotta-dark); margin: 0 0 14px;
}
.reservation-panel-pay #checkout-status { margin-top: 10px; }
@media (min-width: 860px) {
  .reservation-panel-pay { position: sticky; top: 20px; }
}

.set-menu-group { max-width: 640px; margin: 0 auto 36px; }
.set-menu-group-heading {
  font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 700;
  font-size: 19px; color: var(--terracotta-dark); text-align: center; margin-bottom: 16px;
}

.terms-box {
  background: var(--paper-deep); border: 1px solid var(--ornament); border-radius: 4px;
  padding: 16px 18px; margin-bottom: 16px; max-height: 220px; overflow-y: auto;
}
.terms-box h4 { margin: 0 0 8px; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: var(--terracotta-dark); }
.terms-box p { margin: 0 0 8px; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.terms-box p:last-child { margin-bottom: 0; }

.hidden { display: none !important; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(23,19,15,.72);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-card {
  background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 420px; width: 100%; padding: 32px 28px; text-align: center;
}
.modal-card h3 { font-size: 22px; font-style: italic; color: var(--terracotta-dark); margin-bottom: 6px; }
.modal-card p { color: var(--muted); font-size: 14.5px; margin: 0 0 8px; }
.modal-card a { color: var(--terracotta-dark); font-weight: 700; }
.modal-summary { text-align: left; background: var(--paper-deep); border-radius: 8px; padding: 16px 18px; margin: 16px 0; }
.modal-summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; padding: 5px 0; border-bottom: 1px dashed var(--ornament); }
.modal-summary-row:last-child { border-bottom: none; }
.modal-summary-row dt { color: var(--muted); font-weight: 600; }
.modal-summary-row dd { margin: 0; font-weight: 700; color: var(--ink); text-align: right; }
.modal-links { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ticket-pending-note { font-size: 12.5px; color: var(--muted); font-style: italic; }
