:root {
  --bg: #0e151a;
  --bg-soft: #101c24;
  --card: #0f1c24;
  --text: #e6edf3;
  --muted: #9fb0c0;
  --accent: #d3b17d;
  --accent-2: #d3b17d;
  --stroke: #1f2b35;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Malgun Gothic', 'Noto Sans KR', 'Segoe UI', system-ui, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(200, 161, 95, 0.12), transparent 22%),
    radial-gradient(circle at 80% 0%, rgba(124, 225, 193, 0.1), transparent 25%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 0 24px 48px;
}

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

.page {
  max-width: 1200px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(14, 21, 26, 0.92), rgba(14, 21, 26, 0.6));
  gap: 12px;
}

.brand {
  display: grid;
  gap: 2px;
  letter-spacing: 0.3px;
}

.brand-mark {
  font-family: 'Malgun Gothic', 'Noto Sans KR', 'Segoe UI', system-ui, sans-serif;
  font-size: 20px;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.pill {
  background: var(--accent);
  color: #0c0f13 !important;
  font-weight: 600;
}

.brand-page .nav {
  background: linear-gradient(180deg, rgba(246, 238, 229, 0.96), rgba(246, 238, 229, 0.88));
  border-bottom: 1px solid var(--stroke);
  box-shadow: none;
}

.brand-page .nav a {
  color: var(--text);
}

.brand-page .nav a:hover {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.04);
}

.brand-page .pill {
  background: var(--accent-2);
  color: var(--bg) !important;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 32px;
  padding: 20px 0 40px;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 10px 0 16px;
  font-family: 'Malgun Gothic', 'Noto Sans KR', 'Segoe UI', system-ui, sans-serif;
}

.hero-copy em {
  color: var(--accent);
  font-style: normal;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent-2);
}

.lede {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: center;
}

.hero-actions .brand-button {
  background: var(--accent);
  border-color: var(--accent);
  color: #fdfdfd;
}

.hero-actions .btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.02);
}

.hero-actions .btn.ghost:hover,
.hero-actions .btn.ghost:focus {
  background: rgba(0, 0, 0, 0.05);
}

#direct-actions .btn.primary {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fdfdfd;
}

#direct-actions .btn.ghost {
  border-color: var(--accent-2);
  color: #fdfdfd;
  background: rgba(0, 0, 0, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0c0f13;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:active {
  transform: translateY(0) scale(0.995);
}

.hero-visual {
  position: relative;
  min-height: 260px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.8;
}

.orb-amber {
  width: 180px;
  height: 180px;
  background: rgba(200, 161, 95, 0.35);
  top: -10px;
  right: 0;
}

.orb-mint {
  width: 180px;
  height: 180px;
  background: rgba(124, 225, 193, 0.28);
  bottom: -20px;
  left: 30px;
}

.hero-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  max-width: 360px;
  margin: 40px auto 0;
  z-index: 1;
}

.mini-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 8px;
}

.hero-card h3 {
  margin: 0 0 8px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.link {
  color: var(--accent-2);
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 10px 0 36px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 6px 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.highlight .card {
  position: relative;
  overflow: hidden;
}

.highlight .card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 161, 95, 0.08), rgba(124, 225, 193, 0.05));
  pointer-events: none;
}

.cta {
  margin: 40px 0;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(211, 177, 125, 0.15), rgba(255, 255, 255, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 10px;
}

.cta-actions .btn.primary {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fdfdfd;
}

.cta-actions .btn.ghost {
  border-color: var(--accent-2);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.02);
}

.cta-actions .btn.ghost:hover,
.cta-actions .btn.ghost:focus {
  background: rgba(0, 0, 0, 0.05);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 6px 0 10px;
}

.muted {
  color: var(--muted);
}

.footer {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer a:hover {
  color: var(--accent-2);
}

/* History page */
.timeline {
  display: grid;
  gap: 16px;
  margin: 20px 0 30px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--stroke);
}

.timeline-year {
  color: var(--accent);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--muted);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* Map page */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.location-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--card);
  display: grid;
  gap: 10px;
}

.location-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.location-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

.map-embed {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

/* Reservation page */
.reservation-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin: 12px 0 32px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin: 0 0 6px;
}

form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 721px) {
  .nav-links {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 720px) {
  body {
    padding: 0 16px 32px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .nav {
    position: sticky;
    top: 0;
  }
  .nav-toggle {
    display: inline-flex;
  }
.nav-links {
  position: absolute;
  top: 68px;
  right: 0;
  left: 0;
  background: var(--bg-soft);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  box-shadow: var(--shadow);
  display: none;
  }
  .nav-links.open {
    display: flex;
  }
}

/* Brand detail page */
body.brand-page {
  --bg: #fdf8f3;
  --bg-soft: #fffaf5;
  --card: #ffffff;
  --text: #3b2416;
  --muted: #7a5a46;
  --accent: #b88855;
  --accent-2: #c89b6c;
  --stroke: #e5d8c7;
  --shadow: 0 14px 50px rgba(103, 74, 52, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(253, 248, 243, 0.95));
  color: var(--text);
  font-family: 'Noto Sans KR', 'Malgun Gothic', 'Segoe UI', system-ui, sans-serif;
  padding: 0 18px 48px;
}

.brand-page a {
  color: inherit;
}

.brand-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.brand-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 26;
  background: var(--bg);
  padding: 0 18px;
  border-bottom: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.brand-menu-toggle {
  position: relative;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  box-shadow: none;
  cursor: pointer;
  z-index: 30;
}

body.brand-nav-open {
  overflow: hidden;
}

.brand-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.brand-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.brand-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.brand-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand-topbar {
  width: 100%;
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-top-left {
  font-weight: 600;
}

.brand-top-center {
  flex: 1;
  text-align: center;
}

.brand-top-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--accent);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.brand-ig:hover,
.brand-ig:focus {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--accent);
  color: var(--accent);
}

.brand-ig svg {
  width: 18px;
  height: 18px;
}

.brand-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 32px 0 26px;
  align-items: center;
}

.brand-mark {
  display: grid;
  gap: 10px;
  align-content: start;
}

.brand-mark-circle {
  width: 92px;
  height: 92px;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.brand-mark-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.brand-hero-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.brand-hero-copy h1 {
  margin: 0;
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  font-size: clamp(24px, 5vw, 34px);
  letter-spacing: 0.04em;
}

.hero-photo-large {
  max-width: 540px;
  margin-left: auto;
}

.brand-hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  align-self: stretch;
}

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

.gallery-frame {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.gallery-window {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  gap: 12px;
  padding: 10px;
  transition: transform 0.28s ease;
}

.gallery-track img {
  width: 480px;
  height: 625px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
  background: var(--card);
}

.gallery-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.08);
  color: var(--text);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-btn:hover,
.gallery-btn:focus {
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  padding: 16px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 680px) {
  .lightbox-content {
    max-width: 94vw;
    max-height: 84vh;
  }
}

.brand-section {
  border-top: 1px solid var(--stroke);
  padding: 22px 0;
  display: grid;
  gap: 12px;
}

.brand-section h2 {
  margin: 0;
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  font-size: clamp(20px, 4vw, 26px);
  letter-spacing: 0.04em;
}

.brand-lede {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.brand-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.brand-body {
  margin: 4px 0 0;
  color: var(--text);
  line-height: 1.6;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.brand-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.06);
}

.brand-card h3 {
  margin: 0 0 6px;
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.brand-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.card-cover {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: var(--card);
}

.brand-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #f9f3ec;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.inline-link {
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 2px;
  font-weight: 600;
}

.brand-button:hover,
.brand-button:focus {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.brand-button:active {
  transform: translateY(0) scale(0.995);
}

.link {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link:hover,
.link:focus {
  color: var(--accent);
  border-color: var(--accent);
}

.brand-footer {
  max-width: 1100px;
  margin: 36px auto 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--stroke);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.brand-mark-small {
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  color: var(--accent);
  font-weight: 700;
}

.brand-foot-link {
  margin-left: auto;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 2px;
  color: var(--accent);
  font-weight: 600;
}

.brand-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: 260px;
  display: grid;
  gap: 12px;
  align-content: flex-start;
  padding: 90px 18px 24px;
  background: rgba(246, 238, 229, 0.98);
  border-right: 1px solid var(--stroke);
  z-index: 28;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  font-family: 'Playfair Display', 'Noto Sans KR', serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-105%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.brand-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.brand-nav a {
  display: inline-block;
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: clamp(22px, 5vw, 28px);
}

.brand-nav a:hover,
.brand-nav a:focus {
  color: var(--accent);
}

@media (max-width: 680px) {
  .brand-topbar {
    flex-wrap: wrap;
  }

  .brand-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-hero-copy h1 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .hero-photo {
    height: 220px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .gallery-track img {
    width: 300px;
    height: 210px;
  }

  .lightbox-content {
    max-width: 94vw;
    max-height: 84vh;
  }

  .brand-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-foot-link {
    margin-left: 0;
  }
}
