:root {
  --bg: #f7f1e9;
  --bg-alt: #f0e4d8;
  --accent: #b25a2b;
  --accent-soft: #e2a36e;
  --ink: #3a2a21;
  --ink-soft: #7a6355;
  --border-soft: rgba(58, 42, 33, 0.12);
  --pill-bg: rgba(178, 90, 43, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --max-width: 1120px;
}

/*, 
*::before, 
*::after {
  box-sizing: border-box;
}*/

html, 
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #fdf7ee 0, #f5ebdf 40%, #f1e1d3 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* Layout */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 241, 233, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58, 42, 33, 0.06);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Background slideshow wrapper under header */

.hero-bg-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0.5rem 0.5rem 1.5rem;
  margin: 0 -0.2rem 0.5rem;
}

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.75;
}

.hero-bg-slideshow .bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 20s ease-out;
}

.hero-bg-slideshow .bg-slide.active {
  opacity: 1;
  transform: scale(1.15);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  margin-right: 0.6rem;
}

/* New: make Home link match other nav pill styling for a consistent look */
.site-nav .home-link {
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-nav .home-link:hover {
  background: rgba(178, 90, 43, 0.08);
  color: var(--ink);
}

/* ensure logo-text remains compact for branding */
.logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
  font-weight: 600;
}

.site-nav a:hover {
  background: rgba(178, 90, 43, 0.08);
  color: var(--ink);
}

.site-nav a.active {
  background: var(--ink);
  color: #fdf7ee;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  padding: 0.25rem;
  border-radius: 999px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

/* Hero / Landing */

main.landing {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.1rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: center;
  margin-top: 0.75rem;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0.3rem 0 0.4rem;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 30rem;
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
}

.hero-logo {
  max-height: 300px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  font-size: 0.8rem;
  margin-top: 1.4rem;
  text-align: center;
  justify-items: center;
}

.hero-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.hero-meta p {
  margin: 0;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Hero image panel */

.hero-image-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(58, 42, 33, 0.06);
  background: radial-gradient(circle at 70% 0, #ffe3c0 0, #b25a2b 55%, #4a2a1f 100%);
  color: #fffaf2;
}

.hero-card-main h2 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.hero-card-main p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 18rem;
}

.hero-card-secondary {
  background: linear-gradient(135deg, #2c1811, #5a3422);
  color: #f8e7d4;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-card-secondary h3 {
  margin: 0;
  font-size: 0.95rem;
}

.hero-card-secondary p {
  margin: 0;
  font-size: 0.85rem;
}

/* Highlight strip */

.highlight-strip {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(247, 241, 233, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.highlight-item h3 {
  margin: 0.4rem 0 0.2rem;
  font-size: 0.95rem;
}

.highlight-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(178, 90, 43, 0.25);
}

/* CTA band */

.cta-band {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(178, 90, 43, 0.26);
  background: radial-gradient(circle at top right, #ffe4c7 0, #f4d3b0 35%, #f7f1e9 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cta-content h2 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.cta-content p {
  margin: 0;
  font-size: 0.85rem;
  max-width: 28rem;
  color: var(--ink-soft);
}

/* Pages */

main.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.1rem 3rem;
}

.page-hero {
  margin-bottom: 1.5rem;
}

.page-hero.narrow {
  max-width: 32rem;
}

.page-hero h1 {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.grid.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 1.8rem;
}

.grid.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

/* Cards and content blocks */

.story p {
  margin: 0 0 0.8rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.story h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.story h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.checklist li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0.35rem;
  top: 0;
  color: var(--accent);
}

.profile-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.profile-card {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(247, 241, 233, 0.98);
  border: 1px solid var(--border-soft);
}

.profile-card h3 {
  margin: 0 0 0.12rem;
}

.profile-role {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-soft);
}

.profile-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.event-card.fade-in {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUp 0.45s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Shop */

.cards {
  margin-top: 0.5rem;
}

.product-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(247, 241, 233, 0.96);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card h2 {
  margin: 0;
  font-size: 1rem;
}

.product-card .meta {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.product-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.product-card .price {
  margin-top: 0.4rem;
  font-weight: 600;
  color: var(--accent);
}

/* New: square image pill for shop cards */
.product-image-pill {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-card);
}

.product-image-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Menus */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 0.4rem;
}

.menu-section h2 {
  display: inline-block;
  margin: 0.5rem 0 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fdf7ee;
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.4rem;
  align-items: baseline;
  font-size: 0.9rem;
}

.menu-item span:first-child {
  font-weight: 500;
}

.menu-desc {
  margin: 0.1rem 0 0.55rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.dots {
  border-bottom: 1px dotted rgba(58, 42, 33, 0.3);
  margin: 0 0.4rem;
}

.price {
  font-size: 0.85rem;
  color: var(--ink);
}

.note-strip {
  margin-top: 1.8rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(178, 90, 43, 0.4);
  background: rgba(247, 241, 233, 0.9);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* New: pill header matching note-strip style for menu sections */
.menu-pill {
  display: inline-block;
  margin: 0.5rem 0 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--ink);
  font-size: 0.8rem;
  color: #fdf7ee;
  font-weight: 600;
}

/* Tabbed wine & beer menu */

.tabbed-menu {
  margin-top: 0.8rem;
}

.tab-list {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: var(--radius-pill);
  background: rgba(247, 241, 233, 0.9);
  border: 1px solid var(--border-soft);
  margin-bottom: 1rem;
}

.tab-button {
  border: none;
  background: transparent;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.tab-button.active {
  background: var(--ink);
  color: #fdf7ee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.tab-panels {
  margin-top: 0.4rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ensure dynamic-menu lists still use spacing */
.stacked-menu .dynamic-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dynamic-menu li:last-child .menu-desc {
  margin-bottom: 0;
}

/* Events */

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.event-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(247, 241, 233, 0.96);
}

.event-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.event-card .meta {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-soft);
}

.event-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.event-info .info-block {
  margin-bottom: 0.7rem;
}

/* Contact */

.contact-grid {
  align-items: flex-start;
}

.contact-form {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(247, 241, 233, 0.96);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  border-radius: 9px;
  border: 1px solid rgba(58, 42, 33, 0.2);
  padding: 0.55rem 0.6rem;
  font: inherit;
  background: #fdf7ee;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(178, 90, 43, 0.16);
}

.contact-details .info-block {
  margin-bottom: 0.75rem;
}

/* The Sisters page specific styling */
body.sisters-page main.page {
  position: relative;
  text-align: center;
  color: #231815; /* darker text for improved contrast */
  padding-top: 150px; /* push copy down from top of main section */
}

body.sisters-page main.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("SS_SistersMural_01.png") 50% 63px no-repeat;
background-size: 50%;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

body.sisters-page .page-hero,
body.sisters-page .story {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ensure story paragraphs also use the darker color */
body.sisters-page .story,
body.sisters-page .page-hero {
  color: #231815;
}

/* Increase body/story text size and weight (keep H2/H3 unchanged) */
body.sisters-page .story p,
body.sisters-page .page-hero p,
body.sisters-page .story,
body.sisters-page .page-hero {
  font-size: 1rem; /* slightly larger than default story text */
  font-weight: 600; /* make the body/story text bold */
  color: #231815;
}

/* Buttons, pills */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: var(--ink);
  color: #fdf7ee;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(58, 42, 33, 0.2);
  color: var(--ink);
}

.btn.ghost:hover {
  background: rgba(247, 241, 233, 0.9);
}

.btn.light {
  background: #fdf7ee;
  color: var(--ink);
  border-color: rgba(58, 42, 33, 0.1);
}

.btn.light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(178, 90, 43, 0.25);
}

.btn.block {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--pill-bg);
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Footer */

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.2rem 1.1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.social-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.82rem;
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
  .site-header-inner {
    padding: 0.7rem 0.9rem;
  }

  .site-nav {
    position: fixed;
    inset: 56px 0 auto;
    padding: 0.6rem 0.85rem 0.85rem;
    flex-direction: row;
    overflow-x: auto;
    background: rgba(247, 241, 233, 0.98);
    border-bottom: 1px solid rgba(58, 42, 33, 0.06);
    gap: 0.35rem;
    z-index: 15;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  main.landing,
  main.page {
    padding-top: 4.2rem;
  }

  .hero-bg-wrap {
    margin: 0;
    padding: 3rem 0 1.2rem;
    border-radius: 0;
    /* Use Sisters' mural logo as static background on mobile instead of slideshow */
    background: url("SS_SistersMural_Logo_03.png") 50% top / contain no-repeat;
    background-size: 80%;
    min-height: 260px;
  }

  /* Hide slideshow on mobile */
  .hero-bg-slideshow {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Ensure logo appears above hero cards on mobile */
  .hero-content {
    order: -1;
    margin-bottom: 0.75rem;
  }

  .hero-image-panel {
    order: 0;
  }

  /* Hide hero logo image on mobile */
  .hero-logo {
    display: none;
  }

  /* Hide main and secondary hero cards on mobile */
  .hero-card-main,
  .hero-card-secondary {
    display: none;
  }

  /* Scale down logo and hero card content on mobile */
  .hero-card {
    padding: 1rem 1.05rem;
  }

  .hero-card-main h2 {
    font-size: 1.1rem;
  }

  .hero-card-main p {
    font-size: 0.85rem;
  }

  .hero-card-secondary h3 {
    font-size: 0.9rem;
  }

  .hero-card-secondary p {
    font-size: 0.8rem;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 0.78rem;
  }

  /* Slightly smaller highlight cards and pills on mobile */
  /* Move highlight strip down and reduce sizing so it doesn't overlap mural logo on mobile */
  .highlight-strip {
    grid-template-columns: 1fr;
    margin-top: 3.6rem; /* push highlights lower on mobile to avoid covering mural logo */
  }

  .highlight-item {
    padding: 0.6rem; /* reduced padding */
    border-radius: 10px;
  }

  .highlight-item h3 {
    font-size: 0.86rem; /* slightly smaller heading */
    margin-top: 0.25rem;
  }

  .highlight-item p {
    font-size: 0.76rem; /* slightly smaller body copy */
    color: var(--ink-soft);
  }

  .pill {
    padding: 0.1rem 0.6rem;
    font-size: 0.7rem;
  }

  .grid.two-column {
    grid-template-columns: 1fr;
  }

  .grid.three-column,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .grid.three-column,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 1.4rem;
  }

  /* Further scale down hero area on very small screens */
  .hero-logo {
    max-height: 190px;
  }

  .hero-card {
    padding: 0.9rem 0.95rem;
  }

  .hero-card-main h2 {
    font-size: 1.05rem;
  }

  .hero-card-main p,
  .hero-card-secondary p {
    font-size: 0.78rem;
  }

  /* Tighter sizing on very small screens and extra spacing below mural */
  .highlight-strip {
    margin-top: 4.2rem;
  }

  .highlight-item {
    padding: 0.5rem;
  }

  .highlight-item h3 {
    font-size: 0.82rem;
  }

  .highlight-item p {
    font-size: 0.72rem;
  }

  .pill {
    font-size: 0.68rem;
  }
}