/* =============================================
   BRAND TOKENS — Dark hero + light body
   ============================================= */
:root {
  --pink:    #F7B8C8;
  --rose:    #E8849D;
  --gold:    #C9A84C;
  --gold-soft: #d9bd6e;
  --dark:    #2C1A1E;
  --cream:   #FFFAF8;
  --blush:   #FEF0F3;

  --ink:       #2C1A1E;   /* main text on light */
  --ink-soft:  #6b4a52;
  --ink-muted: #9e7a84;
  --line-pink: rgba(247,184,200,0.55);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', Arial, sans-serif;
  --nav-h: 72px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
::selection { background: var(--rose); color: #fff; }

/* =============================================
   SECTION LAYOUT
   ============================================= */
section { padding: 96px 24px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-divider {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin-bottom: 26px; border: none;
}
.section-intro {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* =============================================
   NAVIGATION (dark, fixed)
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(20, 11, 14, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px; width: 100%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}
.nav-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: #fff; letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: none; padding: 10px;
  margin-left: 12px;
}
.nav-toggle-bar {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
#navbar.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#navbar.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
#navbar.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links a {
  position: relative;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* =============================================
   HERO (dark, full-bleed image)
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 90px;
  background:
    linear-gradient(90deg, rgba(20,11,14,0.92) 0%, rgba(20,11,14,0.78) 35%, rgba(20,11,14,0.35) 58%, rgba(20,11,14,0.15) 100%),
    url("../img/hero-bg.jpg") center right / cover no-repeat;
}
.hero-inner {
  max-width: 1140px; width: 100%; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 520px) 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 210px);
}
.hero-content { max-width: none; margin-left: 0; text-align: left; }
.hero-logo-mark {
  width: 110px; height: 110px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin-bottom: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700; color: #fff;
  line-height: 1.05; margin-bottom: 22px;
}
.hero-rule {
  display: inline-block;
  width: 120px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 22px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--pink);
  margin-bottom: 12px; line-height: 1.4;
}
.hero-location {
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  min-height: 46px;
}
.cta-btn:hover { transform: translateY(-3px); }
.cta-whatsapp {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #20140f; border-color: transparent;
}
.cta-whatsapp:hover { box-shadow: 0 10px 28px rgba(201,168,76,0.35); }
.cta-call { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-call:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.cta-tiktok { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-tiktok:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* =============================================
   SERVICES (light)
   ============================================= */
#services { background: #fff; }
.services-layout {
  display: block;
}
.services-layout .section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: rgba(254, 240, 243, 0.42);
  border: 1px solid rgba(247, 184, 200, 0.45);
  border-radius: 16px;
  padding: 0 0 22px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(254, 240, 243, 0.58);
  box-shadow: 0 14px 38px rgba(232,132,157,0.2);
}
.service-photo-wrap {
  background: linear-gradient(180deg, #fff 0%, #fef5f7 100%);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}
.service-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: none;
  display: block;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 22px 8px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
  padding: 0 22px;
}
.service-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 0 22px;
}

.services-admin-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.service-admin-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
}
.service-admin-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.service-admin-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fef5f7;
  border-radius: 12px;
  border: 1px solid var(--line-pink);
}
.service-upload-btn {
  text-align: center;
  cursor: pointer;
  margin: 0;
}
.service-admin-fields textarea {
  width: 100%;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid var(--line-pink);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
}
@media (max-width: 768px) {
  .service-admin-layout { grid-template-columns: 1fr; }
}

/* =============================================
   GALLERY (light)
   ============================================= */
#gallery { background: var(--cream); }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 11px 24px; border-radius: 50px;
  border: 2px solid var(--rose);
  background: transparent; color: var(--rose);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.2s; min-height: 44px;
}
.filter-btn.active, .filter-btn:hover { background: var(--rose); color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-tile {
  aspect-ratio: 1 / 1;
  min-width: 0;
  width: 100%;
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--blush);
  border: 1px solid rgba(247,184,200,0.4);
  transition: transform 0.25s;
}
.gallery-tile:hover { transform: scale(1.02); }
.gallery-tile img, .gallery-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-tile .play-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(44,26,30,0.78); color: #fff;
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.gallery-tile .delete-btn {
  display: none;
  position: absolute; top: 8px; right: 8px;
  background: rgba(220,38,38,0.9); color: #fff; border: none;
  border-radius: 50%; width: 30px; height: 30px;
  font-size: 14px;
  align-items: center; justify-content: center;
  z-index: 2; transition: background 0.2s;
}
.gallery-tile .delete-btn:hover { background: #dc2626; }
body.owner-active .gallery-tile.uploaded .delete-btn { display: flex; }
.placeholder-tile {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: rgba(232,132,157,0.55);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: default;
  border: 1px dashed rgba(232,132,157,0.4);
}
.placeholder-tile .ph-icon { font-size: 2rem; opacity: 0.5; }
.gallery-caption { text-align: center; margin-top: 26px; font-size: 13px; color: var(--ink-muted); }

/* =============================================
   LIGHTBOX
   ============================================= */
#lightbox {
  display: none; position: fixed; inset: 0;
  z-index: 9000; background: rgba(20,11,14,0.95);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
.lb-media-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
#lb-img { max-width: 90vw; max-height: 88vh; border-radius: 6px; object-fit: contain; display: none; }
#lb-video { max-width: 90vw; max-height: 88vh; border-radius: 6px; display: none; }
.lb-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: #fff; font-size: 28px;
  opacity: 0.85; transition: opacity 0.2s; line-height: 1;
}
.lb-close:hover { opacity: 1; }
.lb-backdrop { position: absolute; inset: 0; z-index: -1; }

/* =============================================
   TESTIMONIALS (light)
   ============================================= */
#reviews { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
  min-height: 80px;
  align-items: start;
}
.review-card {
  background: var(--blush);
  border: 1px solid var(--line-pink);
  border-radius: 16px;
  padding: 32px 28px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 14px 38px rgba(232,132,157,0.2);
}
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.15rem;
  color: var(--ink); line-height: 1.7; margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
  flex: 1;
}
.review-author { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--rose); }
.review-service { font-size: 12px; color: var(--ink-muted); margin-top: 3px; }
.reviews-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-muted); font-size: 14px; padding: 20px 0; }

/* =============================================
   REVIEW FORM (light)
   ============================================= */
#leave-review { background: var(--cream); }
.review-form-wrap {
  max-width: 620px; margin: 44px auto 0;
  background: #fff; border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 44px rgba(232,132,157,0.12);
  border: 1px solid rgba(247,184,200,0.35);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); margin-bottom: 9px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--line-pink);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--cream);
  transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(158,122,132,0.7); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
#book { background: #fff; }
.booking-form-wrap { margin-top: 36px; }
#working-hours-list { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
#working-hours-list strong { color: var(--ink); font-weight: 600; }
.star-rating { display: flex; gap: 4px; }
.star-rating span {
  font-size: 28px; color: #ddd;
  cursor: pointer; transition: color 0.15s;
  min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}
.star-rating span.active { color: var(--gold); }
.submit-btn {
  width: 100%; padding: 17px;
  background: linear-gradient(135deg, var(--rose), #d4637a);
  color: #fff; border: none; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s; min-height: 46px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,132,157,0.4); }
.form-note { font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 18px; }
.form-note a { color: var(--rose); font-weight: 600; }

/* =============================================
   LOCATION (light)
   ============================================= */
#location { background: #fff; }
.location-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 50px; align-items: start; margin-top: 44px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 24px; color: var(--ink);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px; font-size: 15px; color: var(--ink-soft);
}
.contact-item .ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; color: var(--rose); }
.contact-item a { color: var(--rose); transition: color 0.2s; }
.contact-item a:hover { color: var(--ink); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 22px;
}
.contact-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.contact-wa-btn {
  display: inline-flex;
  width: auto;
  margin: 0;
}
.contact-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--rose);
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}
.contact-icon-link svg {
  width: 24px;
  height: 24px;
  display: block;
}
.contact-icon-link:hover {
  color: var(--ink);
  transform: scale(1.06);
}
#map-iframe { width: 100%; height: 400px; border: none; display: block; border-radius: 12px; }
.map-caption { font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 12px; }
.update-pin-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 12px 24px;
  background: transparent; border: 2px solid var(--gold);
  border-radius: 50px; color: var(--gold);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.2s; min-height: 44px;
}
.update-pin-btn:hover { background: var(--gold); color: #fff; }

/* =============================================
   FOOTER (dark)
   ============================================= */
footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 60px 24px 32px; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 { font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.footer-logo {
  width: 72px; height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.footer-brand p { font-size: 13px; line-height: 1.8; }
.footer-nav h4, .footer-social h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 11px; }
.footer-nav ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-nav ul li a:hover { color: var(--pink); }
.social-links { display: flex; gap: 14px; }
.social-link {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.82); transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-bottom {
  max-width: 1140px; margin: 22px auto 0;
  font-size: 12px; text-align: center; color: rgba(255,255,255,0.35);
}

/* =============================================
   OWNER MODE
   ============================================= */
#owner-banner {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  color: #20140f; text-align: center;
  padding: 9px 16px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.owner-banner-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#owner-banner .owner-banner-btn {
  background: rgba(32,20,15,0.18);
  border: 1px solid rgba(32,20,15,0.4);
  color: #20140f; padding: 5px 14px;
  border-radius: 20px; font-size: 12px;
  cursor: pointer; font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
#owner-banner .owner-banner-btn:hover {
  background: rgba(32,20,15,0.28);
}
body.owner-active #owner-banner { display: flex; }
body.owner-active { padding-top: 38px; }

/* Floating Upload Button */
#upload-fab {
  display: none; position: fixed;
  bottom: 30px; right: 24px; z-index: 1500;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d4637a);
  color: #fff; border: none; font-size: 28px;
  box-shadow: 0 8px 24px rgba(232,132,157,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  align-items: center; justify-content: center;
}
#upload-fab:hover { transform: scale(1.08); box-shadow: 0 12px 34px rgba(232,132,157,0.6); }
body.owner-active #upload-fab { display: flex; }

/* Upload Drawer (light) */
#upload-drawer {
  display: none; position: fixed;
  bottom: 102px; right: 24px; z-index: 1400;
  width: 350px; background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(44,26,30,0.25);
  border: 1px solid rgba(247,184,200,0.4);
  padding: 26px; max-height: 80vh; overflow-y: auto;
}
#upload-drawer.open { display: block; }
.drawer-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 22px; }
.drawer-group { margin-bottom: 16px; }
.drawer-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.drawer-group select,
.drawer-group input[type=text] {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--line-pink); border-radius: 8px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--ink); background: var(--cream); outline: none;
}
.drop-zone {
  border: 2px dashed var(--rose); border-radius: 10px;
  padding: 24px; text-align: center; cursor: pointer;
  background: var(--blush); transition: background 0.2s;
  font-size: 13px; color: var(--rose); margin-bottom: 14px;
}
.drop-zone:hover { background: rgba(232,132,157,0.14); }
.drop-zone input { display: none; }
.staged-previews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.staged-thumb { position: relative; aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; background: var(--blush); }
.staged-thumb img, .staged-thumb video { width: 100%; height: 100%; object-fit: cover; }
.staged-thumb button {
  position: absolute; top: 3px; right: 3px;
  background: rgba(220,38,38,0.9); color: #fff; border: none;
  border-radius: 50%; width: 22px; height: 22px; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.add-gallery-btn {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--rose), #d4637a);
  color: #fff; border: none; border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: transform 0.2s; min-height: 46px;
}
.add-gallery-btn:hover { transform: translateY(-2px); }
.add-gallery-btn:disabled { opacity: 0.6; cursor: progress; transform: none; }

/* =============================================
   MODALS (light)
   ============================================= */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  z-index: 8000; background: rgba(20,11,14,0.55);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 16px;
  padding: 38px 34px; width: 90%; max-width: 430px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.modal-box h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; color: var(--ink); }
.modal-box p { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.modal-group { margin-bottom: 16px; }
.modal-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.modal-group input {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--line-pink); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--cream); outline: none;
}
.modal-group input:focus { border-color: var(--rose); }
.modal-actions { display: flex; gap: 12px; margin-top: 8px; }
.modal-confirm {
  flex: 1; padding: 14px;
  background: linear-gradient(135deg, var(--rose), #d4637a);
  color: #fff; border: none; border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; min-height: 46px;
}
.modal-cancel {
  flex: 1; padding: 14px;
  background: transparent; color: var(--ink);
  border: 2px solid rgba(44,26,30,0.2); border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  cursor: pointer; min-height: 46px;
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
#toast {
  position: fixed; bottom: 92px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9500; background: var(--dark);
  border: 1px solid var(--gold);
  color: #fff; padding: 14px 26px; border-radius: 50px;
  font-size: 14px; box-shadow: 0 12px 34px rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-width: 90vw; text-align: center;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#toast.error { border-color: #ef4444; }
#toast.success { border-color: #4ade80; }

/* =============================================
   OWNER LOGIN PAGE (admin.html)
   ============================================= */
body.admin-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(rgba(20,11,14,0.78), rgba(20,11,14,0.92)),
    url("../img/hero-bg.jpg") center / cover no-repeat;
  padding: 24px;
}
.admin-wrap { width: 100%; max-width: 420px; }
.admin-card {
  background: var(--card, #2A1A20);
  background: #2A1A20;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.admin-logo {
  width: 96px; height: 96px; object-fit: contain;
  border-radius: 50%; background: transparent; padding: 0;
  margin: 0 auto 20px;
}
.admin-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600; color: #fff; margin-bottom: 6px;
}
.admin-sub {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.admin-group { margin-bottom: 18px; text-align: left; }
.admin-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 8px;
}
.admin-group input {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 8px;
  background: rgba(255,255,255,0.06); color: #fff;
  font-family: var(--font-body); font-size: 15px; outline: none;
  transition: border-color 0.2s;
}
.admin-group input::placeholder { color: rgba(255,255,255,0.4); }
.admin-group input:focus { border-color: var(--gold); }
.admin-btn {
  width: 100%; padding: 15px; margin-top: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #20140f; border: none; border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s; min-height: 46px;
}
.admin-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.4); }
.admin-btn:disabled { opacity: 0.6; cursor: progress; transform: none; }
.admin-msg { min-height: 18px; margin-top: 16px; font-size: 13px; }
.admin-msg.error { color: #fca5a5; }
.admin-msg.success { color: #86efac; }
.admin-back {
  display: inline-block; margin-top: 22px;
  font-size: 12px; letter-spacing: 1px;
  color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.admin-back:hover { color: var(--gold); }
.admin-forgot {
  display: inline-block; margin-top: 12px;
  font-size: 12px; color: var(--gold); opacity: 0.85;
}
.admin-forgot:hover { opacity: 1; text-decoration: underline; }

/* =============================================
   OWNER DASHBOARD (dashboard.html)
   ============================================= */
body.dash {
  background: #170E11;
  color: #F6ECE9;
  --d-card: #241519;
  --d-card-2: #2E1B21;
  --d-line: rgba(201,168,76,0.22);
  --d-muted: #b49aa0;
}
.dash-top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 14px 24px;
  background: rgba(20,11,14,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--d-line);
}
.dash-brand { display: flex; align-items: center; gap: 12px; }
.dash-logo { width: 42px; height: 42px; border-radius: 50%; background: transparent; padding: 0; object-fit: contain; }
.dash-name { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: #fff; line-height: 1.1; }
.dash-tag { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.dash-top-actions { display: flex; align-items: center; gap: 10px; }
.dash-mode {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid var(--d-line); color: var(--d-muted);
}
.dash-mode.live { color: #86efac; border-color: rgba(134,239,172,0.4); }
.dash-mode.demo { color: var(--gold); border-color: rgba(201,168,76,0.4); }
.dash-ghost-btn {
  padding: 9px 16px; border-radius: 50px;
  border: 1px solid var(--d-line); background: transparent;
  color: #F6ECE9; font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  transition: all 0.2s;
}
.dash-ghost-btn:hover { border-color: var(--gold); color: var(--gold); }

.dash-layout { display: flex; align-items: flex-start; }
.dash-side {
  position: sticky; top: 75px;
  width: 220px; flex-shrink: 0;
  padding: 24px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-nav {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: transparent; border: none;
  color: var(--d-muted); font-family: var(--font-body);
  font-size: 14px; font-weight: 500; text-align: left;
  transition: all 0.18s;
}
.dash-nav:hover { background: var(--d-card); color: #F6ECE9; }
.dash-nav.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #20140f; font-weight: 600;
}
.dash-main { flex: 1; min-width: 0; padding: 28px 32px 80px; }
.dash-panel { display: none; animation: dashFade 0.25s ease; }
.dash-panel.active { display: block; }
@keyframes dashFade { from { opacity: 0; } to { opacity: 1; } }
.dash-h1 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: #fff; }
.dash-h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: #fff; margin-bottom: 18px; }
.dash-lead { color: var(--d-muted); margin-bottom: 26px; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--d-card); border: 1px solid var(--d-line);
  border-radius: 14px; padding: 26px 20px; text-align: center;
}
.stat-num { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { display: block; margin-top: 8px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--d-muted); }
.dash-quick { display: flex; gap: 12px; flex-wrap: wrap; }

.dash-btn {
  padding: 14px 26px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #20140f; font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s; min-height: 46px;
}
.dash-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,168,76,0.35); }
.dash-btn:disabled { opacity: 0.6; cursor: progress; transform: none; }
.dash-btn.ghost { background: transparent; border: 1px solid var(--d-line); color: #F6ECE9; }
.dash-btn.ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: none; }

.dash-card { background: var(--d-card); border: 1px solid var(--d-line); border-radius: 16px; padding: 28px; margin-bottom: 30px; }
.upload-row { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; margin-bottom: 18px; }
.dash-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.dash-field input, .dash-field select {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--d-line); background: var(--d-card-2);
  color: #F6ECE9; font-family: var(--font-body); font-size: 14px; outline: none;
}
.dash-field input:focus, .dash-field select:focus { border-color: var(--gold); }
.dash-field select option { color: #20140f; }
body.dash .drop-zone {
  border: 1.5px dashed var(--gold); background: rgba(201,168,76,0.06);
  color: var(--gold); border-radius: 12px; margin-bottom: 16px;
}
body.dash .drop-zone.drag { background: rgba(201,168,76,0.16); }

.dash-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.dash-toolbar .dash-h2 { margin-bottom: 0; }
.dash-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border-radius: 50px;
  border: 1px solid var(--d-line); background: transparent;
  color: var(--d-muted); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; transition: all 0.2s;
}
.chip.active, .chip:hover { background: var(--gold); color: #20140f; border-color: transparent; }

.manage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.manage-tile {
  position: relative; background: var(--d-card); border: 1px solid var(--d-line);
  border-radius: 12px; overflow: hidden;
}
.manage-tile img, .manage-tile video { width: 100%; aspect-ratio: 1/1; object-fit: cover; cursor: pointer; display: block; }
.manage-meta { padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.manage-cat { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.manage-cap { font-size: 12px; color: var(--d-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.manage-del {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(220,38,38,0.9); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.manage-del:hover { background: #dc2626; }
.dash-empty { color: var(--d-muted); text-align: center; padding: 30px 0; }

.review-list { display: flex; flex-direction: column; gap: 14px; }
.review-row {
  display: flex; gap: 16px; align-items: flex-start; justify-content: space-between;
  background: var(--d-card); border: 1px solid var(--d-line);
  border-radius: 14px; padding: 20px 22px;
}
.review-row.pending { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.05); }
.review-row-main { min-width: 0; }
.review-row-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.row-stars { color: var(--gold); letter-spacing: 2px; }
.row-badge { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.5); border-radius: 20px; padding: 2px 8px; }
.row-text { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: #F6ECE9; margin-bottom: 8px; line-height: 1.5; }
.row-author { font-size: 13px; color: var(--d-muted); }
.row-author span { color: var(--gold); }
.review-row-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.row-btn { padding: 8px 16px; border-radius: 50px; border: 1px solid var(--d-line); background: transparent; color: #F6ECE9; font-family: var(--font-body); font-size: 12px; font-weight: 600; transition: all 0.2s; }
.row-btn.approve { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #20140f; border-color: transparent; }
.row-btn.hide:hover { border-color: var(--gold); color: var(--gold); }
.row-btn.del:hover { border-color: #ef4444; color: #fca5a5; }

.dash-hint {
  font-size: 12px; color: var(--d-muted); margin: 12px 0 0;
  line-height: 1.5;
}
.hours-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hours-row {
  display: grid;
  grid-template-columns: 140px 1fr auto 1fr;
  gap: 10px; align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--d-line);
}
.hours-day { font-size: 14px; color: #F6ECE9; display: flex; align-items: center; gap: 8px; }
.hours-row input[type="time"] {
  padding: 8px 10px; border-radius: 6px;
  border: 1px solid var(--d-line); background: rgba(255,255,255,0.06);
  color: #F6ECE9; font-family: var(--font-body);
}
.hours-sep { font-size: 12px; color: var(--d-muted); text-align: center; }

.booking-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.booking-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border-radius: 12px;
  background: var(--d-card); border: 1px solid var(--d-line);
}
.booking-row.status-pending { border-color: rgba(201,168,76,0.45); }
.booking-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.booking-main strong { font-size: 1.05rem; color: #fff; }
.booking-service, .booking-when { font-size: 13px; color: var(--d-muted); }
.booking-phone { font-size: 13px; color: var(--gold); margin-top: 4px; }
.booking-notes { font-size: 13px; color: var(--d-muted); margin-top: 6px; font-style: italic; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: flex-end; }
.booking-status {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px; padding: 3px 10px;
}
.booking-manage-link { font-size: 12px; color: var(--rose); margin-top: 6px; word-break: break-all; }

.booking-success {
  margin-top: 20px; padding: 20px; border-radius: 14px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.35);
}
.booking-success h3 { font-family: var(--font-display); color: var(--charcoal); margin-bottom: 8px; }
.booking-success p { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.booking-manage-url { word-break: break-all; }
.booking-manage-url a { color: var(--rose); font-weight: 600; font-size: 13px; }
.booking-success-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px;
}
.submit-btn.ghost {
  background: transparent; color: var(--charcoal);
  border: 1px solid rgba(0,0,0,0.12); box-shadow: none;
}
.submit-btn.ghost:hover {
  border-color: var(--gold); color: var(--gold); transform: none;
  box-shadow: none;
}

.booking-page .booking-card { max-width: 520px; }
.booking-detail-grid {
  display: grid; gap: 14px; margin: 20px 0;
  text-align: left;
}
.booking-detail-label {
  display: block; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--d-muted); margin-bottom: 4px;
}
.booking-page-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 8px;
}
.admin-btn.ghost-btn {
  background: transparent; border: 1px solid var(--d-line); color: #F6ECE9;
}
.admin-btn.ghost-btn:hover { border-color: var(--gold); color: var(--gold); }
.admin-btn.danger-btn {
  background: rgba(220, 80, 80, 0.15); border: 1px solid rgba(220, 80, 80, 0.45); color: #ffb4b4;
}
.admin-btn.danger-btn:hover { background: rgba(220, 80, 80, 0.28); }

.settings-map-wrap { margin-top: 18px; }
.settings-map-pin {
  width: 100%;
  height: 400px;
  border: 1px solid var(--d-line);
  border-radius: 12px;
  overflow: hidden;
  background: #e8e0e4;
}
.settings-map-pin .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
}
.settings-map-caption { margin-top: 10px; margin-bottom: 6px; text-align: left; }
.settings-map-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}
.settings-map-link:hover { text-decoration: underline; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 860px) {
  .dash-layout { flex-direction: column; }
  .dash-side {
    position: static; width: 100%;
    flex-direction: row; overflow-x: auto;
    padding: 12px 16px; gap: 8px;
    border-bottom: 1px solid var(--d-line);
  }
  .dash-nav { white-space: nowrap; padding: 10px 14px; }
  .dash-main { padding: 22px 18px 70px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .upload-row { grid-template-columns: 1fr; }
  .review-row { flex-direction: column; }
  .review-row-actions { justify-content: flex-start; }
  .hours-row { grid-template-columns: 1fr; gap: 8px; }
  .booking-row { flex-direction: column; }
  .booking-actions { justify-content: flex-start; }
}
@media (max-width: 768px) {
  section { padding: 72px 22px; }

  /* Mobile navigation: hamburger + dropdown */
  .nav-toggle { display: flex; }
  .nav-name { display: none; } /* small screens: logo only */
  .nav-links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(20,11,14,0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,0.22);
    padding: 8px 0;
    max-height: 0; overflow: hidden;
    opacity: 0; visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s;
  }
  #navbar.nav-open .nav-links {
    max-height: 70vh; opacity: 1; visibility: visible;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 15px 24px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }

  #hero {
    background:
      linear-gradient(180deg, rgba(20,11,14,0.55) 0%, rgba(20,11,14,0.82) 100%),
      url("../img/hero-bg.jpg") 72% 28% / cover no-repeat;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }
  .hero-logo-mark {
    width: 88px; height: 88px;
    margin: 0 auto 20px;
  }
  .hero-content { margin: 0 auto; text-align: center; max-width: 540px; }
  .hero-rule { display: none; }
  .hero-ctas { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .location-layout { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  #upload-drawer { width: calc(100vw - 48px); }
}
@media (max-width: 480px) {
  #navbar { padding: 0 16px; }
  .nav-name { font-size: 1.05rem; }
  .nav-logo { width: 48px; height: 48px; }
  #hero {
    background-position: 78% 22%;
    background-size: cover;
  }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .cta-btn { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .review-card { padding: 24px 20px; }
  .review-form-wrap { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
