*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--slate-800);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--slate-200);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s var(--ease-out);
}

.nav.scrolled .nav__logo {
  color: var(--slate-800);
}

.nav__logo-icon {
  opacity: 0.9;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  transition: color 0.3s var(--ease-out);
}

.nav.scrolled .nav__toggle {
  color: var(--slate-800);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: #fff;
}

.nav.scrolled .nav__link {
  color: var(--slate-500);
}

.nav.scrolled .nav__link:hover {
  color: var(--slate-800);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.nav.scrolled .nav__cta {
  color: var(--teal-700);
  border-color: var(--teal-200);
}

.nav.scrolled .nav__cta:hover {
  background: var(--teal-50);
  border-color: var(--teal-400);
  color: var(--teal-800);
}

/* Mobile menu */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  padding: 96px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

.nav__menu.open {
  transform: translateX(0);
}

.nav__menu .nav__link {
  color: var(--slate-700);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
}

.nav__menu .nav__link::after {
  display: none;
}

.nav__menu .nav__cta {
  margin-top: 24px;
  justify-content: center;
  color: var(--teal-700);
  border-color: var(--teal-200);
  background: var(--teal-50);
}

.nav__menu .nav__cta:hover {
  background: var(--teal-100);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav__menu {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(15, 23, 42, 0.2) 40%,
    rgba(15, 23, 42, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  max-width: 720px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
  opacity: 0;
}

.hero__scroll svg {
  animation: bob 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn--primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}

.btn--primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
}

.section__header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section__header--center {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.8;
}

.text-teal {
  color: var(--teal-600);
}

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
}

.divider__line {
  flex: 1;
  height: 1px;
  background: var(--slate-200);
  max-width: 200px;
}

.divider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  flex-shrink: 0;
}

/* ===== ROOMS ===== */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--slate-200);
  transition: all 0.4s var(--ease-out);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  border-color: transparent;
}

.room-card__img {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.room-card:hover .room-card__img img {
  transform: scale(1.05);
}

.room-card__body {
  padding: 28px;
}

.room-card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.room-card__desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-card__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.room-card__features li {
  font-size: 0.8125rem;
  color: var(--slate-600);
  padding-left: 16px;
  position: relative;
}

.room-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-400);
}

.room-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-600);
  text-decoration: none;
  transition: gap 0.3s var(--ease-out);
}

.room-card__link:hover {
  gap: 12px;
}

.room-card__link svg {
  transition: transform 0.3s var(--ease-out);
}

.room-card__link:hover svg {
  transform: translateX(2px);
}

@media (max-width: 1024px) {
  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rooms__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT ===== */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.about__image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: var(--teal-100);
  border-radius: 16px;
  z-index: -1;
}

.about__content {
  padding: 16px 0;
}

.about__text {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--slate-200);
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--slate-200);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about__image {
    max-height: 480px;
  }
  
  .about__image-accent {
    display: none;
  }
}

/* ===== LOCATION ===== */
.location__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.location__map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.location__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location__map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.location__pin-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--slate-800);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__card {
  padding: 24px;
  background: var(--slate-50);
  border-radius: 12px;
  border: 1px solid var(--slate-100);
  transition: all 0.3s var(--ease-out);
}

.location__card:hover {
  background: #fff;
  border-color: var(--teal-200);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.08);
}

.location__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  border-radius: 10px;
  color: var(--teal-700);
  margin-bottom: 12px;
}

.location__card-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 6px;
}

.location__card-text {
  font-size: 1rem;
  color: var(--slate-800);
  line-height: 1.6;
}

.location__card-text a {
  color: var(--teal-700);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.location__card-text a:hover {
  color: var(--teal-600);
  text-decoration: underline;
}

.location__nearby {
  text-align: center;
}

.location__nearby-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.location__nearby-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.location__nearby-tag {
  font-size: 0.8125rem;
  color: var(--slate-600);
  padding: 8px 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.location__nearby-tag:hover {
  background: var(--teal-50);
  border-color: var(--teal-200);
  color: var(--teal-700);
}

@media (max-width: 900px) {
  .location__grid {
    grid-template-columns: 1fr;
  }
  
  .location__map {
    aspect-ratio: 16 / 9;
  }
}

/* ===== CONTACT ===== */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info {
  padding: 16px 0;
}

.contact__text {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 20px 24px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
}

.contact__method:hover {
  background: #fff;
  border-color: var(--teal-200);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.08);
  transform: translateX(4px);
}

.contact__method-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  border-radius: 10px;
  color: var(--teal-700);
  flex-shrink: 0;
}

.contact__method-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.contact__method-value {
  display: block;
  font-size: 1rem;
  color: var(--slate-800);
  margin-top: 2px;
}

.contact__method:hover .contact__method-value {
  color: var(--teal-700);
}

/* Contact Form */
.contact-form {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  padding: 40px;
}

.contact-form__group {
  margin-bottom: 24px;
}

.contact-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--slate-800);
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.3s var(--ease-out);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--slate-400);
}

.contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: 10px;
  color: var(--teal-800);
  font-size: 0.9375rem;
}

.form-success svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-form {
    padding: 28px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.footer__link:hover {
  color: var(--teal-400);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9375rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.footer__contact a:hover {
  color: var(--teal-400);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: var(--teal-400);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
