/* ============================================
   OLENA KONDRA — Real Estate Landing Page
   Design System: Gold/Black Luxury
   Typography: Cinzel (headings) + Josefin Sans (body)
   Style: Exaggerated Minimalism
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --gold: #C5A55A;
  --gold-light: #D4B96A;
  --gold-dark: #A8893A;
  --gold-gradient: linear-gradient(135deg, #D4B96A 0%, #C5A55A 40%, #A8893A 100%);
  --black: #1A1A1A;
  --charcoal: #2D2D2D;
  --dark-bg: #111111;
  --off-white: #FAFAF7;
  --warm-gray: #F5F3EE;
  --body-text: #4A4A4A;
  --light-text: #E8E4DC;
  --muted: #8A8A8A;
  --border-light: rgba(197, 165, 90, 0.2);
  --border-dark: rgba(197, 165, 90, 0.15);

  --font-heading: 'Cinzel', serif;
  --font-body: 'Josefin Sans', sans-serif;

  --nav-height: 90px;
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1200px;

  --transition: 250ms ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 24px rgba(197, 165, 90, 0.15);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background-color: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Heading --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto 40px auto;
  border: none;
}

.section-divider--left {
  margin: 0 0 40px 0;
}

/* ============================================
   1. NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  position: relative;
  cursor: pointer;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--gold);
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  padding: 10px 24px;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light-text);
  transition: all var(--transition);
}

/* Mobile Nav */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.97);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile-overlay.active {
  display: flex;
}

.nav-mobile-overlay a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--light-text);
  cursor: pointer;
  transition: color var(--transition);
}

.nav-mobile-overlay a:hover {
  color: var(--gold);
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-close svg {
  stroke: var(--light-text);
  width: 28px;
  height: 28px;
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(197, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.hero-content {
  padding: 40px 0;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.hero-name {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-slogan {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--light-text);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background: transparent;
  color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--light-text);
  border: 1.5px solid rgba(232, 228, 220, 0.3);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-image img {
  max-height: 80vh;
  width: auto;
  object-fit: cover;
  border-radius: 0 0 0 0;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.hero-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-dark);
  padding: 28px 0;
  z-index: 3;
}

.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-text);
  opacity: 0.7;
}

/* ============================================
   3. SERVICES
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--off-white);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: white;
  padding: 48px 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================
   4. ABOUT
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--warm-gray);
}

.about .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1.5px solid var(--gold);
  z-index: -1;
}

.about-content {
  padding: 20px 0;
}

.about-content .section-heading {
  text-align: left;
  letter-spacing: 0.02em;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--body-text);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.highlight-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* ============================================
   5. TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--dark-bg);
  text-align: center;
}

.testimonials .section-heading {
  color: var(--off-white);
}

.testimonials .section-divider {
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 165, 90, 0.1);
  padding: 40px 28px;
  text-align: left;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(197, 165, 90, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============================================
   6. CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding: 20px 0;
}

.contact-info .section-heading {
  text-align: left;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  color: var(--body-text);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.contact-item-value a {
  cursor: pointer;
}

.contact-item-value a:hover {
  color: var(--gold);
}

.contact-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.contact-logos img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.contact-logos img:hover {
  opacity: 1;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1px solid #E0DDD6;
  background: var(--warm-gray);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  margin-top: 8px;
}

.form-submit:hover,
.form-submit:focus {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

/* ============================================
   7. FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-dark);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  opacity: 0.6;
  cursor: pointer;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.footer-brokerage {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brokerage img {
  height: 32px;
  width: auto;
  filter: invert(1) brightness(0.7);
}

.footer-associations {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-associations img {
  height: 40px;
  width: auto;
  filter: invert(1);
}

.footer-copyright {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
    padding-top: 80px;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    order: 2;
    max-height: 50vh;
  }

  .hero-image img {
    max-height: 50vh;
  }

  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-content .section-heading {
    text-align: center;
  }

  .section-divider--left {
    margin: 0 auto 40px;
  }

  .about-highlights {
    justify-items: center;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .section-heading {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }

  .contact-logos {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Fix for mobile layout overlap */
  .hero {
    display: block;
    height: auto;
    min-height: auto;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    background: var(--black);
    /* Ensure solid background */
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .hero-name {
    font-size: 2rem;
  }

  .hero-slogan {
    font-size: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}