@layer reset, base, components, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  ul,
  ol {
    padding: 0;
    list-style: none;
  }

  img,
  picture,
  video,
  svg {
    display: block;
    max-width: 100%;
    height: auto;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }

  a {
    color: inherit;
  }

  button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
}

@layer base {
  :root {
    --ink: #121212;
    --ink-soft: #3a3a3a;
    --paper: #ffffff;
    --paper-alt: #f4f6f5;
    --paper-deep: #e8ecea;
    --emerald: #00a86b;
    --emerald-deep: #007a4d;
    --emerald-soft: #e6f7f0;
    --line: #d5dbd8;
    --focus: #00a86b;
    --radius-card: 1rem;
    --radius-btn: 999px;
    --shadow-soft: 0 18px 40px rgba(18, 18, 18, 0.08);
    --font-display: "Nunito", "Fredoka", system-ui, sans-serif;
    --font-body: "Source Sans 3", "DM Sans", system-ui, sans-serif;
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2.5rem;
    --space-5: 4rem;
    --space-6: 6rem;
    --max: 72rem;
    --edge-rule: 3px solid var(--emerald);
    --header-h: 4.25rem;
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    min-height: 100vh;
    position: relative;
    overflow-x: clip;
  }

  body::before,
  body::after {
    content: "";
    position: fixed;
    width: 9rem;
    height: 9rem;
    pointer-events: none;
    z-index: 0;
    opacity: 0.14;
    will-change: transform;
  }

  body::before {
    top: 4rem;
    left: 0.75rem;
    background:
      linear-gradient(135deg, var(--emerald) 0 28%, transparent 28% 42%, var(--ink) 42% 48%, transparent 48%),
      repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 168, 107, 0.35) 10px, rgba(0, 168, 107, 0.35) 12px);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    transform: translate3d(0, var(--parallax-y, 0px), 0);
  }

  body::after {
    right: 1rem;
    bottom: 3rem;
    background:
      radial-gradient(circle at 30% 30%, var(--emerald) 0 18%, transparent 19%),
      linear-gradient(225deg, transparent 45%, var(--ink) 45% 52%, transparent 52%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 80%);
    transform: translate3d(0, calc(var(--parallax-y, 0px) * -0.6), 0);
  }

  [data-parallax] .section__inner,
  [data-parallax] .hero__inner {
    transform: translate3d(0, var(--parallax-content, 0px), 0);
  }

  .page {
    position: relative;
    z-index: 1;
  }

  :focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
  }

  h1,
  h2,
  h3,
  .display {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
  }

  h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  }

  h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
  }

  p + p {
    margin-top: 1rem;
  }

  .lede {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--ink-soft);
    max-width: 42rem;
  }

  a:not(.btn):not(.site-nav__link):not(.logo):not(.skip-link) {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 0.22em;
    text-decoration-thickness: 1.5px;
    transition: text-decoration-style 0.15s ease, color 0.15s ease;
  }

  a:not(.btn):not(.site-nav__link):not(.logo):not(.skip-link):hover,
  a:not(.btn):not(.site-nav__link):not(.logo):not(.skip-link):focus-visible {
    text-decoration-style: solid;
    color: var(--emerald-deep);
  }

  a[href^="http"]:not(.btn)::after,
  a[rel~="external"]:not(.btn)::after {
    content: " ↗";
    font-size: 0.75em;
    speak: none;
  }

  .skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    background: var(--ink);
    color: var(--paper);
    padding: 0.75rem 1rem;
    z-index: 1000;
    border-radius: 0.35rem;
    text-decoration: none;
  }

  .skip-link:focus {
    top: 1rem;
  }
}

@layer components {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
  }

  .site-header.is-solid {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--line);
  }

  .site-header__inner {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    letter-spacing: -0.03em;
  }

  .logo span {
    color: var(--emerald);
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .site-nav__list {
    display: none;
    gap: 0.15rem 1rem;
    align-items: center;
  }

  @media (min-width: 920px) {
    .site-nav__list {
      display: flex;
    }
  }

  .site-nav__link {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.35rem 0;
    opacity: 0.9;
  }

  .site-nav__link:hover,
  .site-nav__link[aria-current="page"] {
    color: var(--emerald-deep);
    opacity: 1;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.75);
  }

  @media (min-width: 920px) {
    .nav-toggle {
      display: none;
    }
  }

  .nav-toggle__bar {
    display: block;
    width: 1.15rem;
    height: 2px;
    background: var(--ink);
    position: relative;
  }

  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ink);
  }

  .nav-toggle__bar::before {
    top: -6px;
  }

  .nav-toggle__bar::after {
    top: 6px;
  }

  .site-nav.is-open .site-nav__list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    right: 1rem;
    left: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }

  .hero {
    position: relative;
    padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
    color: var(--paper);
    overflow: hidden;
  }

  .hero--band {
    background: linear-gradient(135deg, #0d1f18 0%, #123528 42%, #00a86b 100%);
  }

  .hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(120deg, rgba(10, 28, 22, 0.88) 0%, rgba(0, 168, 107, 0.55) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
  }

  .hero__kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    margin-bottom: 1.25rem;
    opacity: 0.92;
  }

  .hero h1 {
    max-width: 16ch;
    margin-bottom: 1rem;
  }

  .hero .lede {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .notice-strip {
    background: var(--emerald-soft);
    border-bottom: 1px solid #c6eadb;
    padding: 0.85rem 0;
    font-size: 0.95rem;
  }

  .notice-strip__inner {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
  }

  .section {
    position: relative;
    padding: var(--space-5) 0;
  }

  .section--alt {
    background: var(--paper-alt);
  }

  .section--ink {
    background: var(--ink);
    color: var(--paper);
  }

  .section--ink .lede,
  .section--ink p {
    color: rgba(255, 255, 255, 0.86);
  }

  .section--diagonal {
    clip-path: polygon(0 2.5rem, 100% 0, 100% calc(100% - 2.5rem), 0 100%);
    padding-block: calc(var(--space-5) + 2rem);
    margin-block: -1rem;
  }

  .section__edge {
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 0;
    border-left: var(--edge-rule);
  }

  .section__inner {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
  }

  .section__head {
    margin-bottom: var(--space-4);
    max-width: 40rem;
  }

  .section__head--left {
    text-align: left;
    margin-right: auto;
  }

  .section__head--right {
    text-align: right;
    margin-left: auto;
  }

  @media (max-width: 700px) {
    .section__head--right {
      text-align: left;
      margin-left: 0;
    }
  }

  .heading-with-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .copy-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald-deep);
    text-decoration: underline;
    text-decoration-style: dotted;
    opacity: 0.75;
  }

  .copy-link:hover,
  .copy-link:focus-visible {
    opacity: 1;
  }

  .copy-link.is-copied {
    color: var(--emerald);
    opacity: 1;
  }

  .btn {
    --btn-bg: var(--ink);
    --btn-fg: var(--paper);
    --btn-icon: var(--emerald);
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    min-height: 3rem;
    border-radius: var(--radius-btn);
    overflow: hidden;
    text-decoration: none !important;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn__label,
  .btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
  }

  .btn__label {
    background: var(--btn-bg);
    color: var(--btn-fg);
    clip-path: polygon(0 0, 100% 0, calc(100% - 0.9rem) 100%, 0 100%);
    padding-right: 1.5rem;
  }

  .btn__icon {
    background: var(--btn-icon);
    color: var(--paper);
    margin-left: -0.9rem;
    padding-left: 1.35rem;
    clip-path: polygon(0.9rem 0, 100% 0, 100% 100%, 0 100%);
    min-width: 3rem;
  }

  .btn--light {
    --btn-bg: var(--paper);
    --btn-fg: var(--ink);
    --btn-icon: var(--emerald-deep);
  }

  .btn--ghost {
    box-shadow: none;
  }

  .btn--ghost .btn__label {
    background: transparent;
    color: inherit;
    border: 1px solid currentColor;
    border-right: 0;
  }

  .btn--ghost .btn__icon {
    border: 1px solid currentColor;
    border-left: 0;
    background: transparent;
    color: inherit;
  }

  .card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  }

  .venue-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
  }

  .venue-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .venue-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .venue-card__body {
    padding: 1.35rem 1.35rem 1rem;
    flex: 1;
  }

  .venue-card__body h3 {
    margin-bottom: 0.55rem;
  }

  .venue-card__body p {
    color: var(--ink-soft);
    font-size: 0.98rem;
  }

  .venue-card__footer {
    margin-top: auto;
    padding: 0.85rem 1.35rem;
    background: var(--paper-deep);
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
  }

  .badge {
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    letter-spacing: 0.02em;
  }

  .method-strip {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }

  .method-step {
    padding: 1.35rem;
    border-radius: var(--radius-card);
    background: var(--paper);
    border: 1px solid var(--line);
  }

  .method-step__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 0.65rem;
  }

  .media-offset {
    position: relative;
    display: inline-block;
    max-width: 100%;
  }

  .media-offset::before {
    content: "";
    position: absolute;
    inset: 0.85rem -0.85rem -0.85rem 0.85rem;
    background: var(--emerald);
    border-radius: 0.35rem;
    z-index: -1;
  }

  .media-offset--ink::before {
    background: var(--ink);
  }

  .media-offset img {
    border-radius: 0.25rem;
    width: 100%;
  }

  .media-offset > figcaption {
    margin-top: 0.65rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.4;
    max-width: 36rem;
  }

  .gallery {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
  }

  @media (max-width: 800px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 520px) {
    .gallery {
      grid-template-columns: 1fr;
    }
  }

  .gallery__item {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .gallery__item figcaption {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.4;
  }

  .gallery__frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .gallery__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .glance {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--paper);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-4);
  }

  .glance__title {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .glance__grid {
    display: grid;
    gap: 0.85rem 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }

  .glance dt {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--emerald-deep);
    margin-bottom: 0.2rem;
  }

  .glance dd {
    color: var(--ink-soft);
  }

  .chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--emerald-soft);
    color: var(--emerald-deep);
    border: 1px solid #bfe9d7;
  }

  .checklist li,
  .crosslist li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.65rem;
  }

  .checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--emerald);
    font-weight: 800;
  }

  .crosslist li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 0;
    color: #b42318;
    font-weight: 800;
  }

  .split {
    display: grid;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 860px) {
    .split {
      grid-template-columns: 1.05fr 0.95fr;
    }

    .split--reverse {
      grid-template-columns: 0.95fr 1.05fr;
    }

    .split--reverse .split__media {
      order: 2;
    }
  }

  .prose > * + * {
    margin-top: 1rem;
  }

  .prose h2,
  .prose h3 {
    margin-top: 2rem;
  }

  .data-table {
    width: 100%;
    border: 1px solid var(--ink);
    background: var(--paper);
    font-size: 0.95rem;
  }

  .data-table th,
  .data-table td {
    border: 1px solid var(--ink);
    padding: 0.75rem 0.9rem;
    text-align: left;
    vertical-align: top;
  }

  .data-table th {
    background: var(--paper-deep);
    font-weight: 700;
  }

  .faq details {
    border-bottom: 1px solid var(--line);
    padding: 0.95rem 0;
  }

  .faq summary {
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-display);
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
  }

  .faq summary::-webkit-details-marker {
    display: none;
  }

  .faq summary::after {
    content: "+";
    color: var(--emerald);
    font-size: 1.4rem;
    line-height: 1;
  }

  .faq details[open] summary::after {
    content: "−";
  }

  .faq details p {
    margin-top: 0.75rem;
    color: var(--ink-soft);
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .site-footer {
    background: #0d1411;
    color: rgba(255, 255, 255, 0.88);
    padding: var(--space-5) 0 var(--space-4);
  }

  .site-footer a {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-footer__inner {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
  }

  .footer-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    margin-bottom: 2rem;
  }

  .footer-grid h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    color: var(--emerald);
  }

  .footer-grid ul {
    display: grid;
    gap: 0.4rem;
  }

  .footer-grid a {
    text-decoration: none;
    font-size: 0.95rem;
  }

  .footer-grid a:hover {
    text-decoration: underline;
    text-decoration-style: solid;
  }

  .footer-note {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    display: grid;
    gap: 0.75rem;
  }

  .form {
    display: grid;
    gap: 1rem;
    max-width: 32rem;
  }

  .form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
  }

  .form input,
  .form textarea {
    border: 1px solid var(--line);
    border-radius: 0.55rem;
    padding: 0.75rem 0.9rem;
    background: var(--paper);
  }

  .form textarea {
    min-height: 9rem;
    resize: vertical;
  }

  .page-hero {
    padding: calc(var(--header-h) + 3rem) 0 2.5rem;
    background: linear-gradient(160deg, var(--paper-alt), var(--paper));
    border-bottom: 1px solid var(--line);
  }

  .page-hero__inner {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
  }

  .page-hero .chip {
    margin-bottom: 1rem;
  }

  .sources {
    font-size: 0.92rem;
  }

  .sources li {
    margin-bottom: 0.55rem;
    padding-left: 1rem;
    position: relative;
  }

  .sources li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--emerald);
  }

  .band-images {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }

  @media (max-width: 700px) {
    .band-images {
      grid-template-columns: 1fr;
    }
  }

  .band-images figure {
    margin: 0;
  }

  .band-images figcaption {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    color: var(--ink-soft);
  }
}

@layer utilities {
  .u-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .u-mt-0 {
    margin-top: 0 !important;
  }

  .u-mb-2 {
    margin-bottom: var(--space-2);
  }

  .u-mb-3 {
    margin-bottom: var(--space-3);
  }

  .u-mb-4 {
    margin-bottom: var(--space-4);
  }

  .u-center {
    text-align: center;
  }

  .u-narrow {
    max-width: 42rem;
  }

  .u-wide {
    max-width: 56rem;
  }
}

@media print {
  @page {
    margin: 1.4cm;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  body::before,
  body::after,
  .site-header,
  .nav-toggle,
  .copy-link,
  .skip-link,
  .hero__media,
  .hero__overlay {
    display: none !important;
  }

  .site-header {
    position: static;
  }

  .hero,
  .page-hero,
  .section,
  .section--alt,
  .section--ink,
  .section--diagonal {
    background: #fff !important;
    color: #000 !important;
    clip-path: none !important;
    padding: 1rem 0 !important;
    margin: 0 !important;
  }

  .hero .lede,
  .section--ink .lede,
  .section--ink p {
    color: #000 !important;
  }

  .btn {
    box-shadow: none;
    border: 1px solid #000;
  }

  .btn__label,
  .btn__icon {
    background: #fff !important;
    color: #000 !important;
    clip-path: none !important;
    margin: 0 !important;
  }

  a {
    text-decoration: underline !important;
    color: #000 !important;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    word-break: break-all;
  }

  .venue-card,
  .glance,
  .method-step {
    box-shadow: none;
    break-inside: avoid;
  }

  .site-footer {
    background: #fff !important;
    color: #000 !important;
    border-top: 1px solid #000;
  }

  .site-footer a {
    color: #000 !important;
  }

  .gallery,
  .band-images,
  .card-grid {
    break-inside: avoid;
  }

  .media-offset::before {
    display: none;
  }
}
