:root {
  --ink: #161616;
  --ink-soft: #373737;
  --paper: #f8f7f4;
  --white: #ffffff;
  --mist: #ece9e2;
  --line: #d8d3ca;
  --accent: #8b7b63;
  --accent-dark: #4f4738;
  --shadow: 0 18px 50px rgba(18, 18, 18, 0.12);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-ui: "Manrope", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 2000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: linear-gradient(90deg, #111111, #1a1a1a);
  color: var(--white);
  padding: 8px 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.topbar-left,
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.topbar-link,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.topbar-link i,
.social-link i {
  color: #d6b77a;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.24);
}

.topbar-link:hover,
.social-link:hover {
  color: var(--white);
}

.site-nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(22, 22, 22, 0.1);
  box-shadow: 0 10px 32px rgba(18, 18, 18, 0.06);
  backdrop-filter: blur(20px);
  font-family: var(--font-ui);
  top: 0;
  z-index: 1030;
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  will-change: background-color, box-shadow;
}

.site-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(18, 18, 18, 0.12);
}

.nav-shell {
  min-height: 96px;
  transition: min-height 220ms ease;
}

.site-nav.nav-scrolled .nav-shell {
  min-height: 76px;
}

.navbar-brand img {
  width: 178px;
  height: auto;
  transition: width 220ms ease, transform 220ms ease;
}

.site-nav.nav-scrolled .navbar-brand img {
  width: 154px;
}

.navbar-toggler {
  border-color: rgba(22, 22, 22, 0.18);
  border-radius: 6px;
  padding: 9px 11px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(139, 123, 99, 0.22);
}

.navbar-nav .nav-link {
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0 2px;
  padding: 12px 14px;
  transition: color 180ms ease, background-color 180ms ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--ink);
  background: rgba(22, 22, 22, 0.06);
}

.navbar-nav .nav-link.active {
  color: var(--white);
  background: var(--ink);
}

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-family: var(--font-ui);
  padding: 10px;
}

.dropdown-item {
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 12px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--mist);
  color: var(--ink);
}

.treatment-menu {
  min-width: 280px;
  max-height: 75vh;
  overflow-y: auto;
}

@media (min-width: 992px) {
  .site-nav .dropdown-menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .site-nav .dropdown:hover > .dropdown-menu,
  .site-nav .dropdown:focus-within > .dropdown-menu,
  .site-nav .dropdown-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
}

.btn {
  border-radius: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-dark:hover {
  background: #000;
  border-color: #000;
}

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-cta {
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.16);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-hero,
.page-hero {
  position: relative;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.16)), var(--hero-image);
  background-size: cover;
  background-position: center 42%;
}

.home-hero {
  min-height: calc(100vh - 126px);
  display: flex;
  align-items: center;
}

.home-hero-inner,
.hero-inner {
  padding-top: 76px;
  padding-bottom: 76px;
  max-width: 760px;
  width: 100%;
}

.home-hero h1,
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.home-hero h1 {
  font-size: 4.65rem;
  margin: 14px 0 20px;
}

.page-hero h1 {
  font-size: 4rem;
  margin: 12px 0 16px;
}

.home-hero p,
.page-hero p {
  font-size: 1.13rem;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.dark-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--mist);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.service-copy h2,
.info-panel h2,
.contact-band h2,
.empty-blog h2,
.timing-box h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: 3rem;
  margin: 8px 0 12px;
}

.section-heading p,
.intro-copy p,
.service-copy p,
.info-panel p,
.empty-blog p {
  color: var(--ink-soft);
}

p,
h1,
h2,
h3,
li,
a {
  overflow-wrap: anywhere;
}

.eyebrow {
  display: block;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.split-grid,
.service-detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
}

.split-grid {
  align-items: center;
}

.split-grid > *,
.service-detail-grid > *,
.contact-grid > *,
.mission-grid > *,
.heading-row > *,
.testimonial-head > * {
  min-width: 0;
}

.image-stack {
  position: relative;
}

.portrait-img,
.feature-img,
.service-detail-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stat-strip span {
  padding: 14px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.heading-row .section-heading {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.gallery-tile {
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.09);
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.045);
  filter: contrast(1.04);
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 3px 0 18px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.testimonial-head .section-heading {
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.testimonial-nav {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.08);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.testimonial-nav:hover:not(:disabled),
.testimonial-nav:focus-visible:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.testimonial-nav:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

.testimonial-card,
.service-card,
.info-panel,
.contact-form,
.timing-box,
.empty-blog {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(18, 18, 18, 0.07);
}

.testimonial-card {
  padding: 24px;
  min-height: 270px;
  scroll-snap-align: start;
}

.testimonial-card p {
  color: var(--ink-soft);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: #777;
  font-size: 0.85rem;
}

.stars {
  color: #b48c48;
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.service-card-body {
  padding: 23px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body span {
  color: var(--accent-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.12;
  margin: 9px 0;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 20px;
}

.text-link {
  margin-top: auto;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.text-link:hover {
  color: var(--accent-dark);
}

.contact-band {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0;
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-band h2 {
  font-size: 2.5rem;
  max-width: 790px;
  margin: 10px 0 0;
}

.contact-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}

.map-section iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
  filter: grayscale(1);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
}

.info-panel {
  padding: 30px;
}

.dark-panel {
  color: var(--white);
  background: var(--ink);
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.checked-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checked-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: var(--ink-soft);
}

.checked-list i {
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.intro-copy {
  max-width: 900px;
  margin-bottom: 42px;
}

.service-detail-grid {
  align-items: start;
}

.service-copy h2 {
  font-size: 2.75rem;
  margin: 10px 0 22px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-side {
  position: sticky;
  top: 120px;
}

.quick-contact {
  margin-top: 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  padding: 22px;
}

.quick-contact span,
.quick-contact a {
  display: block;
}

.quick-contact span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
}

.quick-contact a {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1.1;
  margin-top: 5px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.contact-list a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ink-soft);
}

.contact-list i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.timing-box {
  padding: 24px;
}

.timing-box h3 {
  font-size: 1.9rem;
}

.timing-box p {
  margin: 4px 0;
  color: var(--ink-soft);
}

.contact-form {
  padding: 28px;
}

.contact-form label {
  display: block;
  font-weight: 800;
  font-size: 0.84rem;
  margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf7;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(139, 123, 99, 0.25);
  border-color: var(--accent);
}

.was-validated input:invalid,
.was-validated textarea:invalid {
  border-color: #8b1e1e;
}

.honeypot {
  display: none;
}

.form-alert {
  display: none;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 16px;
  font-weight: 700;
}

.form-alert.success {
  display: block;
  background: #e8f3e5;
  color: #23461e;
}

.form-alert.error {
  display: block;
  background: #f6e6e6;
  color: #672020;
}

.empty-blog {
  max-width: 760px;
  padding: 42px;
  margin: 0 auto;
  text-align: center;
}

.empty-blog h2 {
  font-size: 2.75rem;
  margin-top: 10px;
}

.narrow {
  max-width: 760px;
}

.gallery-modal .modal-content {
  border: 0;
  background: transparent;
  position: relative;
}

.gallery-modal img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: var(--ink);
  border-radius: 8px;
}

.gallery-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 4px;
  padding: 10px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  background: #101010;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.9fr;
  gap: 34px;
}

.footer-logo {
  width: 190px;
  background: var(--paper);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.site-footer h2 {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  font-size: 0.94rem;
  margin-bottom: 9px;
}

.site-footer p {
  font-size: 0.96rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  display: grid;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  .preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .nav-shell {
    min-height: 88px;
  }

  .site-nav.nav-scrolled .nav-shell {
    min-height: 74px;
  }

  .site-nav.nav-scrolled .navbar-brand img,
  .navbar-brand img {
    width: 148px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 14px 0 18px;
  }

  .navbar-nav .nav-link {
    margin: 3px 0;
    padding: 12px 14px;
  }

  .treatment-menu {
    max-height: 360px;
    min-width: 100%;
    box-shadow: none;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero h1 {
    font-size: 3.55rem;
  }

  .page-hero h1 {
    font-size: 3.15rem;
  }

  .split-grid,
  .service-detail-grid,
  .contact-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .service-side {
    position: static;
  }

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

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

  .contact-band-inner,
  .heading-row {
    align-items: start;
    flex-direction: column;
  }

  .contact-band-actions {
    justify-content: start;
  }
}

@media (max-width: 767px) {
  .topbar .container-xl {
    justify-content: center !important;
  }

  .topbar .social-link {
    display: none;
  }

  .topbar-location,
  .topbar-divider {
    display: none;
  }

  .nav-shell {
    min-height: 78px;
  }

  .site-nav.nav-scrolled .nav-shell {
    min-height: 68px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 78px);
  }

  .section {
    padding: 66px 0;
  }

  .home-hero,
  .page-hero {
    background-position: 36% center;
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero-inner,
  .hero-inner {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 100%;
  }

  .home-hero h1 {
    font-size: 2.62rem;
    max-width: 12ch;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .home-hero p,
  .page-hero p {
    font-size: 1rem;
    max-width: 34ch;
  }

  .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.08em;
  }

  .hero-actions,
  .dark-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn,
  .dark-actions .btn {
    width: 100%;
    max-width: 330px;
  }

  .section-heading h2,
  .service-copy h2,
  .contact-band h2,
  .empty-blog h2 {
    font-size: 2.25rem;
  }

  .service-grid,
  .gallery-grid,
  .preview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    position: static;
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: minmax(260px, 88vw);
  }

  .testimonial-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .contact-form,
  .empty-blog {
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .topbar > .container-xl,
  .site-nav > .container-xl,
  .home-hero > .container-xl,
  .page-hero > .container-xl,
  .section > .container-xl,
  .contact-band > .container-xl,
  .site-footer > .container-xl {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    font-size: 0.76rem;
  }

  .home-hero {
    min-height: 560px;
  }

  .home-hero h1 {
    font-size: 2.12rem;
    max-width: 11ch;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .section-heading,
  .intro-copy,
  .service-copy,
  .info-panel,
  .contact-list,
  .founder-section p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-band-actions,
  .contact-band-actions .btn,
  .detail-actions,
  .detail-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
