/* =====================================================================
   Stella's Pizza & Italian Grill — Site Styles
   Palette drawn from the logo: tomato red, basil green, warm cream.
   ===================================================================== */

:root {
  --red:        #C8202E;
  --red-dark:   #A2161F;
  --red-ink:    #7C0F16;
  --green:      #2E7D4F;
  --green-dark: #1F5A38;
  --cream:      #FBF6EC;
  --cream-2:    #F3E9D8;
  --paper:      #FFFFFF;
  --ink:        #211B17;
  --ink-soft:   #4B403A;
  --muted:      #7A6C61;
  --line:       #E6DAC6;
  --gold:       #E4A93C;
  --shadow:     0 18px 50px -20px rgba(40, 20, 10, .35);
  --shadow-sm:  0 6px 20px -10px rgba(40, 20, 10, .3);
  --radius:     16px;
  --radius-lg:  26px;
  --maxw:       1180px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }
.section--cream2 { background: var(--cream-2); }
.section--ink { background: var(--ink); color: #F6EEE2; }
.section--ink h2, .section--ink h3 { color: #fff; }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red);
  --bgh: var(--red-dark);
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: .85em 1.6em;
  border-radius: 999px;
  background: var(--bg);
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--bgh); color: #fff; transform: translateY(-2px); }
.btn--green { --bg: var(--green); --bgh: var(--green-dark); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light {
  background: #fff; color: var(--red-dark);
}
.btn--light:hover { background: var(--cream-2); color: var(--red-dark); }
.btn--lg { padding: 1.05em 2em; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 236, .9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--green-dark);
  color: #EAF5EE;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex; flex-wrap: wrap; gap: .4em 1.6em;
  align-items: center; justify-content: center;
  padding-block: 8px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--gold); }
.topbar span { display: inline-flex; align-items: center; gap: .45em; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 12px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img { height: 60px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--red-dark);
  letter-spacing: -.01em;
}
.brand-text small { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-dark); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 600;
  color: var(--ink);
  padding: .5em .85em;
  border-radius: 10px;
  font-size: .96rem;
}
.nav-links a:hover { background: var(--cream-2); color: var(--red-dark); }
.nav-links a[aria-current="page"] { color: var(--red-dark); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px;
  position: relative; transition: .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px clamp(18px,5vw,40px) 20px;
    gap: .25rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8em 1em; font-size: 1.05rem; }
  .nav-actions .btn--phone-text { display: none; }
  .nav { gap: .5rem; }
  .nav-actions .btn { padding: .65em 1em; font-size: .85rem; }
  .brand img { height: 48px; }
  .brand-text b { font-size: 1rem; }
}
@media (max-width: 420px) {
  .brand-text { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(46,125,79,.16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(200,32,46,.12), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero::after {
  /* subtle checker ribbon at the bottom */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 14px;
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%),
    linear-gradient(-45deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--red) 75%),
    linear-gradient(-45deg, transparent 75%, var(--red) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 7px, 14px -7px, -14px 0;
  opacity: .9;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
}
.hero h1 { margin-bottom: .35em; }
.hero h1 .accent { color: var(--red); display: block; }
.hero-rating {
  display: inline-flex; align-items: center; gap: .6em;
  background: #fff; border: 1px solid var(--line);
  padding: .5em .9em; border-radius: 999px; box-shadow: var(--shadow-sm);
  font-weight: 600; font-size: .9rem; margin-bottom: 1.4rem;
}
.stars { color: var(--gold); letter-spacing: 1px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-meta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .92rem; color: var(--ink-soft); }
.hero-meta b { color: var(--ink); }

.hero-art {
  position: relative;
  display: grid; place-items: center;
}
.hero-art .disc {
  position: absolute; inset: 0; margin: auto;
  width: min(108%, 460px); aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--green) 0 25%, var(--red) 0 50%, var(--green) 0 75%, var(--red) 0);
  opacity: .12;
  filter: blur(2px);
}
.hero-art img.logo-big {
  position: relative;
  width: min(100%, 440px);
  filter: drop-shadow(0 22px 30px rgba(40,20,10,.28));
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-block: 40px 56px; }
  .hero-rating, .eyebrow { }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img.logo-big { width: min(78%, 320px); }
}

/* ---------- Hero photo ---------- */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  border: 6px solid #fff;
  rotate: 1.5deg;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .badge {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(33,27,23,.82); color: #fff; backdrop-filter: blur(4px);
  font-size: .8rem; font-weight: 600; padding: .45em .9em; border-radius: 999px;
}
.hero-art .disc { z-index: -1; }
@media (max-width: 820px){ .hero-photo { rotate: 0deg; max-width: 460px; margin-inline: auto; } }

/* ---------- Dish (photo) cards ---------- */
.dish-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.dish-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dish-card:hover .dish-card__media img { transform: scale(1.06); }
.dish-card__body { padding: 18px 20px 22px; }
.dish-card__body h3 { margin: 0 0 .25em; font-size: 1.2rem; }
.dish-card__body p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery a {
  display: block; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.07); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 860px){ .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .gallery .wide { grid-column: span 2; } }
@media (max-width: 520px){ .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; } .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; } }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: clamp(18px, 3vw, 28px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--red-dark);
  margin-bottom: 1rem;
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

.section-head { max-width: 64ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { }

/* ---------- Menu ---------- */
.menu-cat { margin-bottom: clamp(34px, 5vw, 56px); }
.menu-cat__head {
  display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 2px dashed var(--line);
  padding-bottom: .5rem; margin-bottom: 1.4rem;
}
.menu-cat__head h3 { color: var(--red-dark); margin: 0; }
.menu-cat__head p { margin: 0; color: var(--muted); font-size: .9rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 3rem; }
@media (max-width: 760px){ .menu-list { grid-template-columns: 1fr; } }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .3rem .8rem;
  align-items: baseline;
  padding: .7rem 0;
  border-bottom: 1px dotted var(--line);
}
.menu-item__name { font-weight: 700; color: var(--ink); }
.menu-item__price { font-family: var(--font-display); font-weight: 600; color: var(--green-dark); white-space: nowrap; }
.menu-item__desc { grid-column: 1 / -1; color: var(--muted); font-size: .88rem; margin: 0; }
.tag {
  display: inline-block; font-size: .62rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; vertical-align: middle;
  background: var(--green); color: #fff; padding: .15em .5em; border-radius: 6px; margin-left: .4em;
}
.tag--hot { background: var(--red); }

.menu-toc { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.4rem; }
.menu-toc a {
  font-weight: 600; font-size: .9rem;
  padding: .45em 1em; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
}
.menu-toc a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------- Reviews ---------- */
.review {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px,3vw,30px);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
}
.review .stars { font-size: 1.05rem; margin-bottom: .6rem; }
.review p { color: var(--ink-soft); font-style: italic; }
.review__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: 1rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-family: var(--font-display); flex: none;
}
.review__who b { display: block; line-height: 1.2; }
.review__who small { color: var(--muted); }

/* ---------- Info / hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .65rem .2rem; border-bottom: 1px solid var(--line); }
.hours-table th { font-weight: 600; color: var(--ink); }
.hours-table td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--red-dark); font-weight: 700; }
.hours-table tr.today { background: linear-gradient(90deg, rgba(200,32,46,.06), transparent); }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ico {
  width: 42px; height: 42px; flex: none; border-radius: 11px;
  display: grid; place-items: center; background: var(--cream-2); color: var(--red-dark);
}
.info-list .ico svg { width: 22px; height: 22px; }
.info-list b { display: block; }
.info-list span, .info-list a { color: var(--ink-soft); }

.map-embed {
  border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); display: block;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(46,125,79,.4), transparent 60%),
    var(--red);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(46,125,79,.18), transparent 60%),
    var(--cream-2);
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px,6vw,64px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { margin-bottom: .3em; }
.page-hero .lead { margin-inline: auto; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--green-dark); font-weight: 600; }
.breadcrumb span { margin: 0 .4em; }

/* prose */
.prose { max-width: 70ch; }
.prose p { color: var(--ink-soft); }
.prose h2 { margin-top: 1.8em; }
.prose ul { color: var(--ink-soft); padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #D8CDBF; padding: clamp(48px,7vw,80px) 0 28px; }
.site-footer a { color: #EADfce; }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.logo-plate {
  display: inline-block;
  background: #fff;
  padding: 14px 22px;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  box-shadow: 0 14px 34px -14px rgba(0,0,0,.55);
}
.logo-plate img { height: 82px; width: auto; display: block; }
@media (max-width: 480px){ .logo-plate img { height: 70px; } }
.footer-brand p { font-size: .92rem; color: #B6A99A; max-width: 34ch; }
.site-footer h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 0 0 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .94rem; }
.footer-contact { font-size: .94rem; display: grid; gap: .7rem; }
.footer-contact a { display: inline-flex; gap: .5em; align-items: flex-start; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  padding-top: 24px; font-size: .82rem; color: #9C8F80;
}
.powered { display: inline-flex; align-items: center; gap: .6rem; }
.powered img { width: 100px; height: 60px; object-fit: contain; }
.social { display: flex; gap: .6rem; }
.social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff;
}
.social a:hover { background: var(--red); }
.social svg { width: 18px; height: 18px; }

/* ---------- Promo popup ---------- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 12, 8, .62);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -24px rgba(0,0,0,.6);
  overflow: hidden;
  text-align: center;
  transform: translateY(16px) scale(.97);
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.popup-overlay.show .popup { transform: translateY(0) scale(1); }
.popup__top {
  background:
    radial-gradient(600px 200px at 50% -40%, rgba(46,125,79,.5), transparent 70%),
    var(--red);
  padding: 26px 24px 18px;
}
.popup__top img { height: 84px; width: auto; margin: 0 auto; background: #fff; padding: 10px 16px; border-radius: 14px; box-shadow: 0 10px 24px -12px rgba(0,0,0,.5); }
.popup__body { padding: 22px 26px 28px; }
.popup__body h3 { font-size: 1.55rem; margin: 0 0 .3em; }
.popup__body p { color: var(--ink-soft); margin: 0 0 1.2rem; font-size: .98rem; }
.popup__actions { display: grid; gap: .6rem; }
.popup__actions .btn { width: 100%; justify-content: center; }
.btn--fb { --bg: #1877F2; --bgh: #0d63d4; }
.popup__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--ink);
  font-size: 1.3rem; line-height: 1; display: grid; place-items: center;
  transition: background .15s ease, transform .15s ease;
}
.popup__close:hover { background: #fff; transform: rotate(90deg); }
.popup__dismiss {
  display: inline-block; margin-top: 1rem; background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: .85rem; text-decoration: underline; font-family: var(--font-body);
}
.popup__dismiss:hover { color: var(--ink); }

/* ---------- Footer social ---------- */
.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background .15s ease;
}
.footer-social a:hover { background: #1877F2; color: #fff; }
.footer-social svg { width: 20px; height: 20px; }

/* utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--muted); }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
.disclaimer { font-size: .8rem; color: var(--muted); }
