/* ============================================================
   CALMWORK – styles.css
   Color tokens: edit the :root variables to retheme the site
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --navy-dark:  #1B2A4A;
  --navy-mid:   #2E4A7A;
  --silver:     #A8B8CC;
  --light-gray: #F0F3F7;
  --white:      #FFFFFF;
  --text-dark:  #1B2A4A;
  --text-body:  #4A5568;
  --text-light: #718096;
  --gold:       #F6C90E;
  --green:      #38A169;
  --border:     #E2E8F0;
  --shadow:     0 4px 20px rgba(27, 42, 74, 0.10);
  --shadow-lg:  0 10px 40px rgba(27, 42, 74, 0.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}
.btn--primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--navy-mid);
  border-color: var(--navy-mid);
}
.btn--outline:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--navy-mid);
  color: var(--white) !important;
  border-color: var(--navy-mid);
  padding: 10px 22px;
  font-size: 14px;
}
.btn--nav:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn--large {
  padding: 18px 42px;
  font-size: 17px;
}

/* ===== SECTION BASICS ===== */
.section {
  padding: 96px 0;
}

.section--gray {
  background: var(--light-gray);
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 52px;
  line-height: 1.2;
}

.section__lead {
  font-size: 18px;
  color: var(--text-body);
  text-align: center;
  max-width: 680px;
  margin: -34px auto 52px;
  line-height: 1.8;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.navbar__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
}
.navbar__logo-text strong {
  color: var(--navy-mid);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__menu li a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 8px 13px;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar__menu li a:not(.btn):hover,
.navbar__menu li a.nav-active {
  color: var(--navy-mid);
  background: var(--light-gray);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920&h=1080&fit=crop&auto=format&q=80');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 42, 74, 0.90) 0%,
    rgba(46, 74, 122, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
  padding: 60px 0;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
  display: block;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.83);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 560px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.hero__checks span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero__checks i {
  color: var(--silver);
  font-size: 13px;
}

/* ===== PAIN SECTION ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--navy-mid);
}

.pain-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--navy-mid);
  transition: var(--transition);
}
.pain-card:hover .pain-card__icon {
  background: var(--navy-dark);
  color: var(--white);
}

.pain-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  border-color: var(--navy-mid);
  background: linear-gradient(160deg, #f5f8fd 0%, #edf1f9 100%);
}

.service-card__badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy-dark);
  line-height: 1.2;
}

.service-card__tagline {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  margin-top: -10px;
}

.service-card__includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}
.service-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}
.service-card__includes i {
  color: var(--navy-mid);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}
.service-card__includes em {
  font-size: 13px;
  color: var(--text-light);
}

.service-card__note {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  padding: 14px 16px;
  background: rgba(168, 184, 204, 0.14);
  border-radius: 8px;
  border-left: 3px solid var(--silver);
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ===== PRICES ===== */
.price-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.price-table {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.price-table h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.price-table__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
}

.price-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.price-table tr:last-child {
  border-bottom: none;
}
.price-table tr:hover {
  background: var(--light-gray);
}

.price-table td {
  padding: 14px 6px;
  font-size: 15px;
  color: var(--text-body);
  vertical-align: middle;
}
.price-table td:last-child {
  text-align: right;
  color: var(--navy-dark);
  font-size: 17px;
}

.price-table__highlight td {
  color: var(--navy-dark);
}
.price-table__highlight td:first-child {
  font-weight: 700;
}

.price-tag {
  display: inline-block;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}

.price-free {
  color: var(--green) !important;
}

.price-table__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.price-table__note i {
  margin-top: 2px;
  flex-shrink: 0;
}

.price-cta {
  text-align: center;
  margin-top: 44px;
}

/* ===== HOW IT WORKS ===== */
.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 28px;
}

.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: -12px;
  user-select: none;
}

.step__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(27, 42, 74, 0.22);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.step__connector {
  color: var(--silver);
  font-size: 22px;
  padding-top: 58px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ===== VALUES / ABOUT US ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-pillar {
  text-align: center;
  padding: 34px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.value-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--navy-mid);
}

.value-pillar__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: var(--white);
}

.value-pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.value-pillar p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ===== ABOUT ME ===== */
.about-me {
  max-width: 760px;
  margin: 0 auto;
}

.about-me__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy-mid);
}

.about-me__quote {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--navy-dark);
  font-style: italic;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

.about-me__card p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-me__card p:last-of-type {
  margin-bottom: 0;
}

.about-me__credentials {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.about-me__credentials span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-dark);
  letter-spacing: 0.3px;
}
.about-me__credentials i {
  color: var(--navy-mid);
  font-size: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 15px;
  display: flex;
  gap: 3px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
  margin-bottom: 2px;
}
.testimonial-card__author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(168,184,204,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  display: block;
}

.cta-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-section__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__logo-img {
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.footer__links h4,
.footer__contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--white);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.footer__contact i {
  color: var(--silver);
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  display: flex;
  gap: 22px;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}
.footer__legal a:hover {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile landscape + tablet portrait */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* Navbar mobile */
  .navbar__toggle {
    display: flex;
  }
  .navbar__menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    gap: 2px;
    align-items: stretch;
  }
  .navbar__menu.open {
    display: flex;
  }
  .navbar__menu li a {
    display: block;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }
  .navbar__menu li a.btn--nav {
    text-align: center;
    margin-top: 10px;
  }

  /* Hero */
  .hero {
    background-attachment: scroll;
    min-height: 100vh;
  }

  /* Grids */
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .price-wrapper { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step__connector {
    transform: rotate(90deg);
    padding-top: 0;
    margin: 4px 0;
  }
  .step {
    max-width: 100%;
    padding: 20px 0;
  }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* About me */
  .about-me__card {
    padding: 36px 28px;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: auto;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .hero__title {
    font-size: 34px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .hero__checks {
    flex-direction: column;
    gap: 10px;
  }
  .btn--large {
    padding: 15px 30px;
    font-size: 15px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-me__credentials {
    flex-direction: column;
    gap: 14px;
  }
  .section__title {
    font-size: 26px;
  }
}
