:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #1e2421;
  --muted: #555c58;
  --green: #063f2f;
  --green-soft: #0e5a45;
  --sage: #6e9c8d;
  --terracotta: #be5f42;
  --border: #e5dfd6;
  --cream: #f6f0e8;
  --shadow: 0 20px 55px rgba(28, 37, 33, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lato", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.45rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 clamp(22px, 5vw, 76px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(229, 223, 214, 0.86);
  backdrop-filter: blur(18px);
}

.home-header {
  min-height: 106px;
  background: rgba(255, 255, 253, 0.96);
}

.simple-header {
  position: static;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--green);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.home-brand {
  gap: 16px;
}

.brand-monogram {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.3rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.85;
}

.brand-lines {
  display: grid;
  gap: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-role {
  color: var(--green);
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-name {
  color: var(--terracotta);
  font-size: clamp(0.78rem, 1.25vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.30em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 62px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-weight: 600;
}

.site-nav a {
  position: relative;
  color: #141815;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--green);
  transition: width 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
}

.section {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.section-narrow {
  width: min(830px, calc(100% - 44px));
}

.home-main {
  overflow: hidden;
  background: #fff;
}

.home-hero {
  display: grid;
  grid-template-columns: 48.7% 51.3%;
  min-height: 490px;
  border-bottom: 1px solid var(--border);
}

.home-hero-copy {
  align-self: center;
  padding: clamp(38px, 5vw, 78px) clamp(28px, 6vw, 82px);
}

.home-hero h1 {
  color: var(--green);
  font-size: clamp(2.5rem, 5.2vw, 4.85rem);
}

.title-rule {
  display: block;
  width: 86px;
  height: 5px;
  margin: 26px 0 18px;
  background: var(--terracotta);
  border-radius: 999px;
}

.home-hero p {
  max-width: 590px;
  color: #333835;
  font-size: clamp(1.15rem, 1.8vw, 1.48rem);
  line-height: 1.48;
}

.home-hero-media {
  min-height: 490px;
  background: var(--cream);
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center;
}

.home-hero-media img.home-hero-portrait {
  width: auto;
  max-width: 68%;
  height: calc(100% - 76px);
  min-height: 0;
  margin: 38px auto;
  object-fit: contain;
  object-position: center bottom;
}

.home-hero-locations {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
  background:
    linear-gradient(rgba(251, 250, 247, 0.90), rgba(251, 250, 247, 0.90)),
    linear-gradient(135deg, #f1e8dc 0%, #f8f6ef 52%, #e9efe9 100%);
}

.location-panel {
  width: min(620px, 100%);
}

.location-panel h2 {
  max-width: 560px;
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.location-panel > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: #333835;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.5;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.location-card {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d7cabe;
  border-radius: 8px;
}

.location-logo {
  display: inline-grid;
  align-items: center;
  min-height: 52px;
  color: var(--green);
  font-weight: 900;
  line-height: 1;
}

.fitlab-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.angel-logo {
  color: var(--terracotta);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.sinergya-logo {
  color: var(--green-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card strong {
  color: var(--green);
  font-size: 1.05rem;
}

.location-card small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.location-button {
  margin-top: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 17px 34px;
  border-radius: 7px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1;
}

.button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(6, 63, 47, 0.20);
}

.button-secondary {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
}

.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
  padding: 38px 0 34px;
  background: #fff;
}

.home-service {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 0 clamp(28px, 3vw, 52px);
  border-right: 1px solid var(--border);
}

.home-service:first-child {
  padding-left: 0;
}

.home-service:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-service h2 {
  color: var(--green);
  font-size: clamp(1.58rem, 2vw, 2rem);
}

.home-service:nth-child(3) h2 {
  color: var(--terracotta);
}

.home-service p {
  margin-top: 8px;
  color: #393f3b;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.38;
}

.service-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.16);
}

.service-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-icon-green {
  background: var(--green);
}

.service-icon-sage {
  background: var(--sage);
}

.service-icon-terracotta {
  background: var(--terracotta);
}

.home-bottom {
  display: grid;
  grid-template-columns: 105px 1fr minmax(330px, 420px);
  gap: 36px;
  align-items: center;
  padding: 30px clamp(32px, 6vw, 96px);
  background: linear-gradient(90deg, #f8f2eb 0%, #fffaf5 48%, #f7efe7 100%);
  border-top: 1px solid var(--border);
}

.home-at-home {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px clamp(32px, 6vw, 96px);
  background: #f4f5f0;
  border-top: 1px solid var(--border);
}

.at-home-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.at-home-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.home-at-home h2 {
  margin-top: 7px;
  color: var(--green);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.home-at-home p:not(.eyebrow) {
  max-width: 900px;
  margin-top: 10px;
  color: #333835;
}

.balance-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--terracotta);
  border-right: 1px solid #cbbfb4;
}

.balance-mark svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.bottom-copy h2 {
  color: var(--green);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.bottom-copy p {
  max-width: 910px;
  margin-top: 12px;
  color: #333835;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.45;
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 60px 1fr 34px;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d7cabe;
  border-radius: 10px;
}

.whatsapp-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: #48c957;
  border-radius: 50%;
}

.whatsapp-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-card small {
  display: block;
  margin-bottom: 5px;
  color: #333835;
  font-size: 1rem;
}

.whatsapp-card strong {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  font-weight: 600;
  line-height: 1.1;
}

.card-arrow {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - 82px);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 600px;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.5;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 72%;
  height: 72%;
  content: "";
  border: 1px solid var(--sage);
  border-radius: 16px;
}

.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.intro {
  text-align: center;
}

.intro h2,
.page-hero h1 {
  margin-top: 12px;
}

.intro p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 1.08rem;
}

.page-hero-with-media {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.page-hero-copy {
  max-width: 640px;
}

.page-hero-image img,
.contact-side > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-image img.page-hero-logo {
  padding: clamp(26px, 5vw, 54px);
  object-fit: contain;
  background: #fff;
}

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

.section-heading h2 {
  margin-top: 12px;
}

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

.service-card,
.contact-panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.service-card h3 {
  color: var(--green);
}

.service-card p {
  margin-top: 14px;
  font-size: 1rem;
}

.split,
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.split h2,
.contact h1 {
  margin-top: 12px;
}

.check-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 0 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(var(--terracotta), var(--terracotta)) 0 0.78em / 12px 2px no-repeat;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-right: clamp(24px, 5vw, 56px);
  padding-left: clamp(24px, 5vw, 56px);
  background: var(--green);
  border-radius: 12px;
}

.cta h2,
.cta p,
.cta .eyebrow {
  color: #fff;
}

.cta p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 16px;
  opacity: 0.86;
}

.cta .button-primary {
  flex: 0 0 auto;
  background: #fff;
  color: var(--green);
  box-shadow: none;
}

.content h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--green);
}

.content h2:first-child {
  margin-top: 0;
}

.content p + p {
  margin-top: 16px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--border);
}

.service-detail span {
  color: var(--terracotta);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.service-detail p {
  margin-top: 12px;
}

.contact {
  min-height: calc(100vh - 82px);
  align-items: center;
}

.contact h1 {
  font-size: clamp(2.25rem, 5vw, 3.8rem);
}

.contact p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.12rem;
}

.contact-panel h2 {
  color: var(--green);
}

.contact-panel p {
  margin-top: 12px;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.contact-showcase {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-track {
  display: flex;
  width: 600%;
  height: 100%;
  animation: contact-showcase 20s ease-in-out infinite;
}

.showcase-slide {
  display: grid;
  flex: 0 0 16.6667%;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: clamp(24px, 5vw, 56px);
  text-align: center;
  background:
    linear-gradient(rgba(251, 250, 247, 0.86), rgba(251, 250, 247, 0.86)),
    linear-gradient(135deg, #f1e8dc 0%, #f8f6ef 52%, #e9efe9 100%);
}

.showcase-logo {
  background: #fff;
}

.showcase-logo img {
  width: min(78%, 360px);
  height: auto;
}

.showcase-slide strong {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.showcase-slide small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.social-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.instagram-mark {
  background: var(--terracotta);
  font-size: 3.4rem;
}

@keyframes contact-showcase {
  0%, 12% {
    transform: translateX(0);
  }

  16%, 28% {
    transform: translateX(-16.6667%);
  }

  32%, 44% {
    transform: translateX(-33.3334%);
  }

  48%, 60% {
    transform: translateX(-50%);
  }

  64%, 76% {
    transform: translateX(-66.6668%);
  }

  80%, 92% {
    transform: translateX(-83.3335%);
  }

  100% {
    transform: translateX(0);
  }
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: block;
  padding: 14px 16px;
  color: var(--green);
  font-weight: 900;
  background: #f4f5f0;
  border-radius: 8px;
}

.small-note {
  font-size: 0.92rem;
}

.legal {
  padding-top: 70px;
}

.legal h1 {
  margin-bottom: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(22px, 5vw, 76px);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 700;
}

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

  .home-hero-media {
    min-height: 420px;
  }

  .home-hero-media img {
    min-height: 420px;
  }

  .home-services {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 44px));
    gap: 26px;
    padding: 42px 0;
  }

  .home-service,
  .home-service:first-child,
  .home-service:last-child {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .home-service:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .home-bottom {
    grid-template-columns: 86px 1fr;
  }

  .home-at-home {
    grid-template-columns: 72px 1fr;
  }

  .home-at-home .button {
    grid-column: 2;
    justify-self: start;
  }

  .whatsapp-card {
    grid-column: 2;
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .home-header {
    min-height: 78px;
  }

  .brand-monogram {
    font-size: 3rem;
  }

  .brand-role {
    font-size: 0.95rem;
    letter-spacing: 0.11em;
  }

  .brand-name {
    font-size: 0.72rem;
    letter-spacing: 0.20em;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 22px;
    top: 78px;
    display: none;
    width: min(280px, calc(100vw - 44px));
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 1.25rem;
  }

  .site-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .site-nav a::after {
    bottom: -5px;
  }

  .home-hero-copy {
    padding: 44px 22px 36px;
  }

  .home-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.7rem);
  }

  .home-hero-media,
  .home-hero-media img {
    min-height: 320px;
  }

  .home-hero-locations {
    min-height: auto;
    padding: 34px 22px;
  }

  .location-cards {
    grid-template-columns: 1fr;
  }

  .button-row {
    gap: 14px;
  }

  .hero,
  .page-hero-with-media,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-media {
    max-width: 520px;
  }

  .hero-media::before {
    right: -10px;
    bottom: -10px;
  }

  .service-grid,
  .check-list ul {
    grid-template-columns: 1fr;
  }

  .home-bottom {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .home-at-home {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .home-at-home .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .balance-mark {
    width: 68px;
    height: 68px;
    border-right: 0;
  }

  .whatsapp-card {
    grid-column: auto;
    width: 100%;
  }

  .cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .home-brand {
    gap: 10px;
  }

  .brand-monogram {
    font-size: 2.35rem;
  }

  .brand-role {
    font-size: 0.72rem;
  }

  .brand-name {
    font-size: 0.58rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .home-service {
    grid-template-columns: 62px 1fr;
    gap: 16px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }

  .whatsapp-card {
    grid-template-columns: 48px 1fr;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
  }

  .card-arrow {
    display: none;
  }

  .section {
    width: min(100% - 36px, 1160px);
  }

  .service-card,
  .contact-panel {
    padding: 24px;
  }
}
