:root {
  --ink: #071923;
  --ink-2: #0e2a38;
  --ink-3: #163a4a;
  --amber: #ffad1f;
  --amber-2: #f09500;
  --paper: #ffffff;
  --mist: #f2f5f6;
  --line: #d9e0e3;
  --text: #22343d;
  --muted: #64757d;
  --shadow: 0 20px 60px rgba(7, 25, 35, .12);
  --radius: 6px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.topbar { background: #031219; color: #cbd6da; font-size: .82rem; }
.topbar__inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 9px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(255,173,31,.12); }
.topbar__links { display: flex; align-items: center; gap: 26px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.topbar__links a:hover { color: var(--amber); }
.topbar__links svg { width: 15px; height: 15px; }

.site-header { position: absolute; z-index: 50; top: 42px; left: 0; right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.nav-wrap { min-height: 106px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { width: 270px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; color: #fff; font-size: .88rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.main-nav > a:not(.nav-call) { position: relative; padding: 12px 0; }
.main-nav > a:not(.nav-call)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--amber); transition: right .25s ease; }
.main-nav > a:not(.nav-call):hover::after, .main-nav > a:not(.nav-call):focus-visible::after { right: 0; }
.nav-call { padding: 14px 22px; color: var(--ink); background: var(--amber); border: 1px solid var(--amber); transition: background .2s, color .2s; }
.nav-call:hover { background: transparent; color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; background: #fff; transition: transform .25s, opacity .25s; }

.hero { position: relative; min-height: 820px; overflow: hidden; display: grid; align-items: center; color: #fff; }
.hero__media { position: absolute; inset: 0; background: url("assets/elko-hero.jpg") center 54% / cover no-repeat; transform: scale(1.015); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,25,.96) 0%, rgba(3,18,25,.78) 48%, rgba(3,18,25,.22) 100%), linear-gradient(0deg, rgba(3,18,25,.32), transparent 55%); }
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 760px) 290px; gap: 70px; align-items: end; padding-top: 150px; }
.hero__copy { padding: 82px 0 100px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--amber); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 38px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--amber-2); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5.6vw, 5.2rem); line-height: .98; letter-spacing: -.055em; font-weight: 800; text-wrap: balance; }
.hero__lead { max-width: 680px; margin: 30px 0 0; color: #e6ecee; font-size: 1.17rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 14px 24px; border: 1px solid transparent; border-radius: 1px; font-size: .91rem; font-weight: 800; letter-spacing: .025em; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; }
.button--primary { color: var(--ink); background: var(--amber); border-color: var(--amber); }
.button--primary:hover { background: #ffc056; border-color: #ffc056; }
.button--ghost { color: #fff; background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.55); }
.button--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.button--light { background: #fff; color: var(--ink); }
.button--light:hover { background: var(--amber); }
.button--full { width: 100%; }
.hero__panel { margin-bottom: 100px; display: flex; gap: 18px; padding: 25px; border-left: 3px solid var(--amber); background: rgba(3,18,25,.83); backdrop-filter: blur(8px); }
.hero__panel-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; color: var(--amber); border: 1px solid rgba(255,173,31,.5); }
.hero__panel-icon svg { width: 23px; height: 23px; }
.hero__panel strong { display: block; font-size: 1.05rem; }
.hero__panel p { margin: 5px 0 0; color: #cbd6da; font-size: .88rem; line-height: 1.55; }
.hero__scroll { position: absolute; z-index: 3; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: #d9e2e5; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll svg { width: 18px; height: 18px; animation: bounce 1.8s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.section-heading { display: grid; grid-template-columns: 1.1fr .8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .about h2, .emergency h2, .coverage h2, .contact h2 { margin: 0; color: var(--ink); font-size: clamp(2.25rem, 4vw, 3.7rem); line-height: 1.06; letter-spacing: -.045em; text-wrap: balance; }
.section-heading > p { max-width: 530px; margin: 0 0 5px; color: var(--muted); font-size: 1.03rem; }
.section-heading--center { display: block; max-width: 760px; margin: 0 auto 58px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p:last-child { margin: 20px auto 0; }

.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 365px; padding: 42px 32px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; overflow: hidden; transition: background .3s, color .3s, transform .3s; }
.service-card::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { z-index: 2; color: #fff; background: var(--ink-2); transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__number { position: absolute; top: 25px; right: 25px; color: #cbd4d8; font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.service-card:hover .service-card__number { color: rgba(255,255,255,.45); }
.service-card__icon { width: 65px; height: 65px; display: grid; place-items: center; margin-bottom: 50px; color: var(--amber-2); background: #fff5df; }
.service-card:hover .service-card__icon { background: rgba(255,173,31,.12); color: var(--amber); }
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { margin: 0 0 15px; color: var(--ink); font-size: 1.3rem; line-height: 1.25; }
.service-card:hover h3 { color: #fff; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-card:hover p { color: #c8d4d9; }

.about { padding: 140px 0 150px; background: var(--mist); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(72px, 8vw, 118px); align-items: center; }
.about__visual { position: relative; min-width: 0; min-height: 560px; display: flex; align-items: flex-end; justify-content: center; padding: 44px 28px 34px; }
.about__shape { position: absolute; inset: 42px 8px 12px 54px; background: var(--amber); clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
.about__visual::before { content: ""; position: absolute; top: 8px; left: 0; width: 36%; height: 34%; border-top: 7px solid var(--ink-2); border-left: 7px solid var(--ink-2); }
.about__visual img { position: relative; z-index: 1; width: 118%; max-width: 620px; height: auto; object-fit: contain; transform: translateX(-3%); }
.about__badge { position: absolute; z-index: 3; right: -12px; bottom: 12px; display: flex; align-items: center; gap: 16px; padding: 21px 24px; color: #fff; background: var(--ink-2); box-shadow: var(--shadow); }
.about__badge svg { width: 31px; height: 31px; color: var(--amber); }
.about__badge strong, .about__badge span { display: block; }
.about__badge strong { font-size: .98rem; }
.about__badge span { margin-top: 2px; color: #bfcdd3; font-size: .75rem; }
.about__copy { max-width: 610px; }
.about__copy .eyebrow { margin-bottom: 30px; }
.about__copy h2 { max-width: 570px; }
.about__intro { margin: 34px 0 22px; color: var(--ink-2); font-size: 1.16rem; font-weight: 650; line-height: 1.78; }
.about__copy > p:not(.eyebrow):not(.about__intro) { margin: 0; color: var(--muted); line-height: 1.88; }
.check-list { display: grid; gap: 17px; margin: 38px 0 40px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 15px; color: var(--ink-2); font-weight: 650; line-height: 1.5; }
.check-list span { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; color: var(--ink); background: var(--amber); }
.check-list svg { width: 15px; height: 15px; stroke-width: 2.5; }
.text-link { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); font-weight: 850; border-bottom: 2px solid var(--amber); padding-bottom: 4px; }
.text-link svg { width: 19px; height: 19px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.emergency { min-height: 550px; display: grid; grid-template-columns: 42% 58%; background: var(--ink-2); color: #fff; overflow: hidden; }
.emergency__image { position: relative; min-height: 550px; background: var(--amber); overflow: hidden; }
.emergency__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--ink-2) 100%); }
.emergency__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; mix-blend-mode: normal; }
.emergency__content { align-self: center; max-width: 690px; padding: 80px 72px; }
.emergency h2 { color: #fff; }
.emergency__content > p:not(.eyebrow) { max-width: 630px; margin: 24px 0 32px; color: #c8d4d9; font-size: 1.07rem; }
.emergency__call { display: flex; align-items: center; gap: 17px; }
.emergency__phone-icon { width: 58px; height: 58px; display: grid; place-items: center; background: var(--amber); color: var(--ink); }
.emergency__phone-icon svg { width: 27px; height: 27px; }
.emergency__call span { display: block; color: #aebfc6; font-size: .77rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.emergency__call a { display: block; margin-top: 1px; color: #fff; font-size: 1.45rem; font-weight: 850; }

.sectors { background: #fff; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector { min-height: 270px; padding: 32px 28px; border: 1px solid var(--line); background: linear-gradient(180deg, #fff, #f7f9f9); transition: border-color .25s, transform .25s, box-shadow .25s; }
.sector:hover { transform: translateY(-6px); border-color: var(--amber); box-shadow: var(--shadow); }
.sector > span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--amber-2); border: 1px solid #f2c268; font-weight: 850; font-size: .78rem; }
.sector h3 { margin: 58px 0 10px; color: var(--ink); font-size: 1.3rem; }
.sector p { margin: 0; color: var(--muted); }

.coverage { position: relative; padding: 78px 0; color: #fff; background: var(--amber-2); overflow: hidden; }
.coverage::before { content: ""; position: absolute; width: 400px; height: 400px; right: 4%; top: -180px; border: 80px solid rgba(255,255,255,.12); border-radius: 50%; }
.coverage__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.coverage__copy { max-width: 760px; }
.coverage .eyebrow { color: var(--ink); margin-bottom: 14px; }
.coverage h2 { color: #fff; font-size: clamp(2rem, 3.8vw, 3.25rem); }
.coverage__copy > p:last-child { max-width: 700px; margin: 17px 0 0; color: #fff8eb; }

.contact { background: var(--mist); }
.contact__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.contact__intro { margin: 24px 0 38px; color: var(--muted); font-size: 1.06rem; }
.contact-list { display: grid; gap: 12px; }
.contact-list a, .contact-list__item { display: flex; align-items: center; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-list a:hover strong { color: var(--amber-2); }
.contact-list > * > span { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; color: var(--ink); background: var(--amber); }
.contact-list svg { width: 21px; height: 21px; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--muted); font-size: .73rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { margin-top: 2px; color: var(--ink); font-size: .96rem; transition: color .2s; overflow-wrap: anywhere; }
.contact-form { padding: 45px; background: #fff; box-shadow: var(--shadow); border-top: 4px solid var(--amber); }
.contact-form__head { margin-bottom: 30px; }
.contact-form__head span { color: var(--amber-2); font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-form__head h3 { margin: 6px 0 0; color: var(--ink); font-size: 1.8rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; color: var(--ink); border: 1px solid #cbd5d9; border-radius: 0; outline: none; background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input, .field select { min-height: 52px; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber-2); box-shadow: 0 0 0 3px rgba(255,173,31,.16); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.form-status { min-height: 1.5em; margin: 8px 0 0; color: #287250; font-size: .83rem; font-weight: 700; }

.footer { color: #c1ced3; background: #031219; }
.footer__main { display: grid; grid-template-columns: 1.25fr .8fr 1fr; gap: 100px; padding: 75px 0 60px; }
.footer__brand img { width: 250px; height: auto; }
.footer__brand p { max-width: 390px; margin: 24px 0 0; color: #94a7af; }
.footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer__column h2 { margin: 5px 0 16px; color: #fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__column a, .footer__column p { margin: 0; color: #94a7af; font-size: .9rem; }
.footer__column a:hover { color: var(--amber); }
.footer__bottom { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #18303b; color: #728992; font-size: .78rem; }
.footer__bottom p { margin: 0; }
.footer__bottom a { color: #c3d0d5; }
.footer__bottom a:hover { color: var(--amber); }
.floating-call { display: none; position: fixed; z-index: 60; right: 18px; bottom: 18px; align-items: center; gap: 9px; min-height: 50px; padding: 10px 17px; color: var(--ink); background: var(--amber); box-shadow: 0 10px 30px rgba(3,18,25,.3); font-size: .85rem; font-weight: 850; }
.floating-call svg { width: 20px; height: 20px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { top: 42px; }
  .nav-wrap { min-height: 92px; }
  .brand { width: 235px; }
  .main-nav { gap: 22px; }
  .hero { min-height: 760px; }
  .hero__content { grid-template-columns: 1fr 250px; gap: 35px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about { padding: 120px 0 130px; }
  .about__grid { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 58px; }
  .about__visual { min-height: 500px; padding-inline: 20px; }
  .about__badge { right: 0; }
  .emergency { grid-template-columns: 42% 58%; }
  .emergency__content { padding: 65px 48px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { gap: 50px; }
  .footer__main { gap: 55px; }
}

@media (max-width: 820px) {
  .topbar__links a:last-child { display: none; }
  .menu-toggle { display: flex; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; padding: 145px 34px 40px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 5px; color: #fff; background: rgba(3,18,25,.98); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .main-nav > a:not(.nav-call) { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1rem; }
  .nav-call { margin-top: 18px; text-align: center; }
  .hero { min-height: 790px; }
  .hero__content { grid-template-columns: 1fr; padding-top: 145px; }
  .hero__copy { padding: 65px 0 25px; }
  .hero__panel { max-width: 460px; margin: 0 0 72px; }
  .hero__scroll { display: none; }
  .section { padding: 85px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 22px; }
  .about { padding: 100px 0 110px; }
  .about__grid { grid-template-columns: 1fr; gap: 72px; }
  .about__visual { width: 100%; max-width: 620px; min-height: 535px; margin-inline: auto; }
  .about__copy { max-width: 680px; }
  .emergency { grid-template-columns: 1fr; }
  .emergency__image { min-height: 390px; max-height: 480px; }
  .emergency__image::after { background: linear-gradient(0deg, var(--ink-2) 0%, transparent 35%); }
  .emergency__image img { object-position: center 32%; }
  .emergency__content { padding: 0 34px 75px; margin-top: -30px; position: relative; z-index: 2; }
  .coverage__inner { display: block; }
  .coverage .button { margin-top: 30px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { min-height: 38px; }
  .topbar__links { display: none; }
  .site-header { top: 38px; }
  .nav-wrap { min-height: 84px; }
  .brand { width: 205px; }
  .hero { min-height: 760px; }
  .hero__media { background-position: 63% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(3,18,25,.97), rgba(3,18,25,.7)); }
  .hero__content { padding-top: 120px; }
  .hero__copy { padding: 55px 0 20px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.45rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero__panel { margin-bottom: 48px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 42px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .about { padding: 78px 0 88px; }
  .about__grid { gap: 52px; }
  .about__visual { min-height: 390px; padding: 34px 8px 28px; }
  .about__shape { inset: 28px 0 10px 20px; }
  .about__visual::before { top: 0; width: 34%; height: 32%; border-width: 5px; }
  .about__visual img { width: 100%; transform: none; }
  .about__badge { right: 0; bottom: 0; padding: 16px 18px; }
  .about__badge svg { width: 27px; height: 27px; }
  .about__copy .eyebrow { margin-bottom: 23px; }
  .about__intro { margin: 27px 0 19px; font-size: 1.06rem; }
  .check-list { gap: 16px; margin: 31px 0 34px; }
  .check-list li { align-items: flex-start; }
  .emergency__image { min-height: 340px; }
  .emergency__content { padding: 0 20px 65px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector { min-height: 230px; }
  .sector h3 { margin-top: 40px; }
  .coverage { padding: 66px 0; }
  .contact__grid { gap: 45px; }
  .contact-form { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__main { grid-template-columns: 1fr; gap: 38px; padding: 60px 0 45px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; gap: 6px; }
  .floating-call { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
