/* ============================================================
   Reese Wellness Spa — Global Stylesheet
   Designed by Earthcon Infotech
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:        #b89a6a;
  --gold-light:  #d4b896;
  --gold-dark:   #8a6f48;
  --cream:       #faf7f2;
  --warm-white:  #f5f0e8;
  --charcoal:    #2c2c2c;
  --soft-gray:   #8a8a8a;
  --deep:        #1a1a18;
  --section-bg:  #f2ece2;
  --border:      rgba(184,154,106,0.25);
  --shadow:      0 8px 40px rgba(44,44,44,0.10);
  --shadow-gold: 0 4px 24px rgba(184,154,106,0.25);
  --radius:      4px;
  --transition:  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --ff-display:  'Cormorant Garamond', serif;
  --ff-body:     'Jost', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.gold { color: var(--gold); }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Headings ── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--soft-gray);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ── Divider ── */
.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 28px;
}
.divider-left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,154,106,0.4);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--charcoal);
}
.btn-white:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(26,26,24,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 12px 0;
}
.navbar.light {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44,44,44,0.08);
}
.navbar.light.scrolled {
  background: rgba(250,247,242,0.99);
  box-shadow: 0 4px 30px rgba(44,44,44,0.12);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.nav-logo .logo-main {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.nav-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.navbar.light .nav-logo .logo-main { color: var(--gold-dark); }
.navbar.light .nav-logo .logo-sub { color: var(--soft-gray); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.navbar.light .nav-links a { color: var(--charcoal); }
.navbar.light .nav-links a:hover,
.navbar.light .nav-links a.active { color: var(--gold-dark); }
.navbar.light .nav-links a::after { background: var(--gold-dark); }

/* Nav CTAs */
.nav-ctas { display: flex; align-items: center; gap: 8px; }
.nav-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-call {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-call:hover { background: rgba(255,255,255,0.1); }
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover { background: #1ebe5d; transform: scale(1.04); }

.navbar.light .btn-call {
  border-color: var(--border);
  color: var(--charcoal);
}
.navbar.light .btn-call:hover { background: var(--section-bg); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.light .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--deep);
  z-index: 999;
  padding: 90px 36px 40px;
  transition: right 0.45s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-nav a:hover { color: var(--gold-light); padding-left: 8px; }
.mobile-nav-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-ctas a {
  text-align: center;
  padding: 14px 24px;
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 1.5px;
  border-radius: var(--radius);
  border-bottom: none;
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
}
.footer-brand .logo-sub {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
footer h4 {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-hours li {
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-hours li span:first-child { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-contact-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-info li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  animation: floatPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.float-wa:hover { transform: scale(1.12); animation-play-state: paused; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
.float-wa-label {
  position: absolute;
  right: 68px;
  background: var(--deep);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.float-wa:hover .float-wa-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: none; }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: none; }

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   SERVICE CARD
   ============================================================ */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 28px;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(44,44,44,0.12);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .card-icon {
  width: 52px; height: 52px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background 0.4s;
}
.service-card:hover .card-icon { background: var(--gold); color: #fff; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--soft-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testi-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.testi-loc { font-size: 0.78rem; color: var(--soft-gray); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section { background: var(--deep); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.stat-plus { font-size: 0.6em; vertical-align: super; }
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  display: block;
  font-weight: 400;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 50vh;
  min-height: 360px;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 20 L55 45 L30 55 L5 45 L5 20Z' fill='none' stroke='rgba(184,154,106,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity: 1;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.cta-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-section .cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  background: var(--section-bg);
  cursor: pointer;
}
.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(135deg, var(--warm-white), var(--section-bg));
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,24,0.7), rgba(184,154,106,0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay i { font-size: 28px; color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder i { font-size: 40px; color: var(--gold); opacity: 0.5; }
.gallery-placeholder span { font-size: 0.8rem; color: var(--soft-gray); letter-spacing: 1px; }

/* ============================================================
   FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,154,106,0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-pad { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .float-wa { bottom: 20px; right: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
