@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #f4efe4;
  --cream-deep: #e8dfcf;
  --paper: #fffdf8;
  --ink: #292824;
  --muted: #625f57;
  --terracotta: #c46a3a;
  --terracotta-dark: #74351f;
  --green: #6e8b3d;
  --green-dark: #354b25;
  --yellow: #e6d28c;
  --line: rgba(41, 40, 36, 0.16);
  --shell: min(1180px, calc(100% - 48px));
  --font-heading: "Montserrat", "Arial", sans-serif;
  --font-body: "Inter", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--terracotta-dark);
  outline-offset: 4px;
}

h1,
h2,
h3,
strong {
  font-family: var(--font-heading);
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  text-decoration: none;
}

.brand > img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span:last-child {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}

.desktop-nav a,
.header-phone {
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a {
  padding-block: 8px;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: var(--terracotta-dark);
}

.header-phone {
  padding: 10px 14px;
  border: 1px solid var(--terracotta-dark);
  border-radius: 999px;
  color: var(--terracotta-dark);
  white-space: nowrap;
}

.mobile-menu {
  display: none;
}

.hero,
.section {
  scroll-margin-top: 76px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(90px, 13vh, 150px) 0;
  color: white;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 27, 19, 0.78) 0%, rgba(25, 27, 19, 0.62) 38%, rgba(25, 27, 19, 0.08) 70%),
    linear-gradient(0deg, rgba(25, 27, 19, 0.3), transparent 42%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background,
.hero-background img {
  width: 100%;
  height: 100%;
}

.hero-background img {
  object-fit: cover;
  object-position: center 52%;
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  min-width: 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--terracotta-dark);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead,
.lead {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero .hero-lead {
  color: rgba(255, 255, 255, 0.9);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--paper);
  color: var(--terracotta-dark);
}

.button-primary:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-facts div {
  display: grid;
  gap: 1px;
}

.hero-facts dt {
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.narrow {
  max-width: 700px;
  margin-bottom: 48px;
}

.home {
  background: var(--paper);
}

.home-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px 84px;
}

.home-copy {
  padding-top: 34px;
}

.registry {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 0.8fr 0.8fr 1.3fr;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.registry div {
  padding: 24px 24px 24px 0;
}

.registry div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.registry dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registry dd {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.territory {
  background: var(--cream);
}

.territory-wide {
  margin: 0;
}

.territory-wide img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

figure figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.photo-strip figure:nth-child(even) {
  transform: translateY(24px);
}

.more-link {
  margin: 62px 0 0;
}

.more-link a,
.text-link {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.history {
  background: var(--green-dark);
}

.history .eyebrow,
.history h2,
.history h3,
.history time {
  color: white;
}

.history .section-heading {
  margin-bottom: 54px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 22px 8px 0 0;
  border-top: 3px solid var(--yellow);
}

.timeline time {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.achievements {
  background: var(--paper);
}

.achievement-list {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  margin-top: 54px;
}

.achievement {
  display: grid;
  gap: 26px;
  padding-top: 24px;
  border-top: 3px solid var(--terracotta);
}

.achievement-primary {
  grid-template-columns: minmax(280px, 1.08fr) minmax(250px, 0.92fr);
  align-items: start;
}

.achievement-secondary {
  grid-template-columns: 1fr 0.72fr;
  align-items: start;
}

.achievement figure {
  margin: 0;
}

.achievement img {
  width: 100%;
  object-fit: cover;
}

.achievement-primary img {
  aspect-ratio: 4 / 3;
}

.achievement-secondary img {
  aspect-ratio: 3 / 4;
}

.achievement-year {
  display: block;
  margin-bottom: 12px;
  color: var(--terracotta-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.achievement h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.achievement h3 strong {
  display: block;
  margin-bottom: 5px;
  color: var(--terracotta-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.achievement p {
  font-size: 0.94rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.source-links a {
  font-size: 0.82rem;
}

.result-type {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-type-sign {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.openness {
  background: var(--cream-deep);
}

.openness-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.5fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.openness .section-heading {
  grid-column: 1 / -1;
  max-width: 850px;
  margin-bottom: 18px;
}

.collection {
  display: grid;
  gap: 12px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.collection strong {
  color: var(--terracotta-dark);
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 0.92;
}

.collection span {
  max-width: 200px;
  color: var(--muted);
  font-size: 0.9rem;
}

.finance {
  display: grid;
  gap: 15px;
  margin-bottom: 0;
}

.finance div {
  display: grid;
  gap: 5px;
}

.finance dt {
  font-size: 0.82rem;
  font-weight: 700;
}

.finance dd {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 10px;
}

.finance dd::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(41, 40, 36, 0.1);
}

.finance dd span {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  width: var(--value);
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.finance b {
  font-size: 0.8rem;
}

.governance {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.governance p {
  font-size: 0.92rem;
}

.contacts {
  background: var(--terracotta-dark);
  color: white;
}

.contacts .eyebrow,
.contacts h2 {
  color: white;
}

.contacts .lead,
.contacts p {
  color: rgba(255, 255, 255, 0.76);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.contact-list {
  display: grid;
  margin: 0;
  font-style: normal;
}

.contact-list a,
.contact-list p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
  text-decoration: none;
}

.contact-list a:hover strong {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contacts a:focus-visible {
  outline-color: var(--yellow);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.contact-list small {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-list .contact-main strong {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.privacy-main {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--paper);
}

.privacy-content {
  max-width: 820px;
}

.privacy-content h1 {
  margin-bottom: 28px;
}

.privacy-content h2 {
  margin-top: 48px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}

.privacy-content li {
  margin-bottom: 10px;
  color: var(--muted);
}

.privacy-updated {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.site-footer {
  padding: 52px 0;
  background: #24231f;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.35fr;
  gap: 50px;
  align-items: start;
}

.footer-grid p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-brand {
  max-width: 280px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
}

.footer-brand-copy strong {
  color: white;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-brand-copy small {
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-footer a,
.footer-cookie-button {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  width: min(920px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(41, 40, 36, 0.2);
  border-top: 4px solid var(--terracotta);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(41, 40, 36, 0.26);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.cookie-consent p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-consent a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--green-dark);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button-primary,
.cookie-button-secondary {
  background: var(--paper);
  color: var(--green-dark);
}

.cookie-button:hover {
  background: var(--cream-deep);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 20px;
    height: 2px;
    display: block;
    margin-inline: auto;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: min(320px, calc(100vw - 48px));
    display: grid;
    padding: 12px 20px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 50px rgba(41, 40, 36, 0.16);
  }

  .mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    text-decoration: none;
  }

  .registry {
    grid-template-columns: 1.8fr 0.7fr 0.7fr 1.2fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .achievement-list {
    grid-template-columns: 1fr;
  }

  .achievement-secondary {
    grid-template-columns: minmax(220px, 0.55fr) 1fr;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .header-row {
    min-height: 66px;
    gap: 12px;
  }

  .header-phone {
    margin-left: auto;
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .hero,
  .section {
    scroll-margin-top: 66px;
  }

  .hero {
    min-height: 0;
    display: block;
    padding: 0;
    background: var(--ink);
  }

  .hero-copy {
    max-width: 590px;
    padding: 42px 0 58px;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 4.3rem);
  }

  .hero::after {
    display: none;
  }

  .hero-background {
    position: relative;
    z-index: 0;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .hero-background img {
    object-fit: contain;
    object-position: center;
  }

  .home-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-copy {
    padding-top: 0;
  }

  .registry {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .registry div,
  .registry div + div {
    padding: 18px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .registry div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .photo-strip figure:nth-child(even) {
    transform: none;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .achievement-primary,
  .achievement-secondary {
    grid-template-columns: 1fr 1fr;
  }

  .openness-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .openness .section-heading,
  .governance {
    grid-column: 1 / -1;
  }

  .governance {
    padding: 30px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contacts-grid {
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .brand small {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero-facts {
    gap: 20px;
  }

  .section {
    padding: 76px 0;
  }

  .registry,
  .photo-strip,
  .timeline,
  .achievement-primary,
  .achievement-secondary,
  .openness-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .registry div:nth-child(even) {
    border-left: 0;
  }

  .territory-wide img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .photo-strip {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .photo-strip figure {
    min-width: 0;
  }

  .timeline li {
    padding-top: 16px;
  }

  .timeline time {
    margin-bottom: 10px;
  }

  .achievement-list {
    gap: 48px;
  }

  .achievement-secondary figure {
    max-width: 76%;
  }

  .collection {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection span {
    max-width: none;
  }

  .footer-grid {
    gap: 24px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 1.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
