:root {
  --rose: #c98279;
  --rose-dark: #a85d54;
  --blush: #f6e4df;
  --sage: #7a9a7e;
  --sage-dark: #556d59;
  --moss: #3d4f3f;
  --cream: #faf6f0;
  --ivory: #fcf9f4;
  --ink: #2d2421;
  --warm: #5e504a;
  --muted: #8a7d77;
  --line: #ece4dc;
  --gold: #b89968;
  --shadow: 0 18px 40px rgba(45, 36, 33, 0.08);
  --shadow-soft: 0 8px 24px rgba(45, 36, 33, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1em; }
a { color: var(--rose-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ink); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 18px;
}

.script {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-weight: 600;
  color: var(--rose);
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--moss);
  color: #f4ede4;
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.5px;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: #f4ede4; }
.topbar a:hover { color: var(--blush); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 249, 244, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 130, 121, 0.35);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.brand-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--warm);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-dark); }

.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--rose-dark); color: #fff !important; }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 1.6rem; cursor: pointer; padding: 4px 8px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 500;
  letter-spacing: 0.6px;
  font-size: 0.92rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  margin-left: 10px;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rose);
  margin-left: 10px;
}
.btn-outline:hover { background: var(--rose); color: #fff; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--ivory);
  overflow: hidden;
}
.hero-text {
  padding: 90px 60px 90px 90px;
  align-self: center;
}
.hero-text h1 {
  margin-bottom: 24px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--warm);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-stars {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.stars-text { color: var(--warm); font-size: 0.93rem; }
.stars-text strong { color: var(--ink); font-weight: 600; }

.hero-image {
  position: relative;
  background:
    linear-gradient(135deg, rgba(201,130,121,0.15) 0%, transparent 60%),
    url("https://images.unsplash.com/photo-1561181286-d3fee7d55364?auto=format&fit=crop&w=1400&q=80") center/cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ivory) 0%, transparent 12%);
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  background: rgba(252, 249, 244, 0.95);
  padding: 18px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--rose-dark);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--warm);
}

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-head p { color: var(--warm); font-size: 1.05rem; }
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.divider::before, .divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rose);
}
.divider-icon {
  color: var(--rose);
  font-size: 1.1rem;
}

/* ---------- SERVICE CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--ivory);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.service-body { padding: 30px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; color: var(--ink); }
.service-card p { color: var(--warm); margin-bottom: 18px; flex: 1; font-size: 0.97rem; }
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.service-link::after { content: ' →'; transition: margin-left 0.2s ease; display: inline-block; }
.service-link:hover::after { margin-left: 4px; }

/* ---------- WEDDING SECTION (split feature) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-img {
  border-radius: 12px;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.feature-text h2 { margin-bottom: 24px; }
.feature-text .eyebrow { color: var(--sage); }
.feature-text p { color: var(--warm); font-size: 1.04rem; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
}
.feature-list li::before {
  content: '✿';
  color: var(--rose);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ---------- TESTIMONIAL STRIP ---------- */
.testimonials {
  background: var(--blush);
  position: relative;
}
.testimonials::before, .testimonials::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,130,121,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonials::before { top: -100px; left: -50px; }
.testimonials::after { bottom: -100px; right: -50px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.testimonial {
  background: #fff;
  padding: 36px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial .stars { margin-bottom: 16px; font-size: 1rem; }
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 22px;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.review-stat {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.review-stat .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--rose-dark);
  line-height: 1;
  font-weight: 400;
}
.review-stat .lbl {
  color: var(--warm);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ---------- ABOUT TEASER ---------- */
.about-feature {
  background: var(--ivory);
}

/* ---------- PRODUCT GRID (catalog) ---------- */
.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.shop-filter {
  padding: 9px 22px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--warm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-filter:hover, .shop-filter.active {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.product {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-img {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rose);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.product-body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.product-cat {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.product h3 { font-size: 1.3rem; margin-bottom: 10px; }
.product p { color: var(--warm); font-size: 0.92rem; flex: 1; margin-bottom: 16px; }
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}
.product-add {
  background: var(--moss);
  color: #fff;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product-add:hover { background: var(--sage-dark); }

/* ---------- WEDDING GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:nth-child(3n+2) { aspect-ratio: 4/3; align-self: center; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(45,36,33,0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(252,249,244,0.92) 0%, rgba(246,228,223,0.92) 100%),
    url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1800&q=70") center/cover;
  padding: 110px 0 90px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 16px;
}
.page-hero .crumb a { color: var(--rose-dark); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--rose-dark); }
.page-hero p { color: var(--warm); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--moss);
  color: #f4ede4;
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d9d2c5; max-width: 580px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--rose); }
.cta-band .btn-primary:hover { background: var(--blush); color: var(--ink); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info {
  background: var(--ivory);
  padding: 44px 36px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.contact-info h2 { margin-bottom: 28px; }
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; }
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.info-value { color: var(--ink); font-size: 1rem; }
.info-value a { color: var(--ink); }
.info-value a:hover { color: var(--rose-dark); }

.contact-form {
  background: #fff;
  padding: 44px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  background: var(--ivory);
  transition: border-color 0.2s ease;
  color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #e7f0e8;
  color: var(--moss);
  padding: 14px 18px;
  border-radius: 8px;
  border-left: 3px solid var(--sage);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: #c9bfb8;
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-brand { display: flex; flex-direction: column; gap: 16px; }
.foot-brand .brand { color: #fff; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-sub { color: #c9bfb8; }
.foot-brand p { color: #c9bfb8; font-size: 0.93rem; }
footer h4 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: #c9bfb8; font-size: 0.92rem; }
footer ul li a:hover { color: var(--blush); }
.foot-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #c9bfb8;
}
.foot-hours li span:last-child { color: #fff; }
.foot-bottom {
  border-top: 1px solid #3d322d;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 70px 40px 60px; text-align: center; }
  .hero-text .hero-stars { justify-content: center; }
  .hero-image { min-height: 480px; }
  .hero-image::after { display: none; }
  .feature { grid-template-columns: 1fr; gap: 50px; }
  .feature-img { max-width: 520px; margin: 0 auto; width: 100%; }
}
@media (max-width: 900px) {
  .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .topbar-inner { font-size: 0.78rem; flex-wrap: wrap; gap: 6px; justify-content: center; }
  .gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-text { padding: 50px 24px; }
  .btn-ghost, .btn-outline { margin-left: 0; }
}

/* ========== OWNER FAB + MODAL ========== */
.owner-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(201,130,121,0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.owner-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201,130,121,0.55); }
.owner-fab .dot {
  width: 8px; height: 8px;
  background: #b5e99c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(181,233,156,0.35);
  animation: fabPulse 2s infinite;
}
@keyframes fabPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.owner-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(45,36,33,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.owner-modal.open { display: flex; }
.om-panel {
  background: #fff;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 4px solid var(--rose);
}
.om-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.om-head-l { display: flex; align-items: center; gap: 18px; }
.om-badge {
  background: var(--rose);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.om-head h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
}
.om-head p { margin: 0; color: var(--warm); font-size: 0.85rem; }
.om-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--warm);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.om-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.om-tabs {
  display: flex;
  background: var(--ivory);
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}
.om-tab {
  background: transparent;
  border: 0;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--warm);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.om-tab:hover { color: var(--ink); }
.om-tab.active { color: var(--rose-dark); border-bottom-color: var(--rose); }
.om-tab .premium {
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.om-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  flex: 1;
  background: var(--cream);
}
.om-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.om-toolbar .count { color: var(--warm); font-size: 0.92rem; }
.om-toolbar .count b { color: var(--ink); font-size: 1.05rem; }
.om-add {
  background: var(--moss);
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.om-add:hover { background: var(--sage-dark); }

.om-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.om-table th {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.om-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
}
.om-table tbody tr:last-child td { border-bottom: 0; }
.om-table tbody tr:hover { background: var(--ivory); }
.om-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.om-status.in { background: #e7f0e8; color: var(--moss); }
.om-status.low { background: #fdf2e3; color: #b88840; }
.om-status.out { background: #fbe5e1; color: var(--rose-dark); }
.om-edit, .om-del {
  background: transparent;
  border: 0;
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: 4px;
  transition: color 0.2s ease;
}
.om-del { color: var(--muted); }
.om-edit:hover { color: var(--ink); }
.om-del:hover { color: var(--rose-dark); }

.om-editor {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  margin-top: 18px;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--rose);
}
.om-editor h4 { margin-bottom: 18px; }
.om-editor .field { margin-bottom: 14px; }
.om-editor label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 6px;
  font-weight: 600;
}
.om-editor input, .om-editor select, .om-editor textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--ivory);
}
.om-editor input:focus, .om-editor select:focus, .om-editor textarea:focus {
  outline: none; border-color: var(--rose); background: #fff;
}
.om-editor .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.om-editor .actions { display: flex; gap: 10px; margin-top: 18px; }

.hub-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.hub-stat {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 3px solid var(--rose);
  box-shadow: var(--shadow-soft);
}
.hub-stat.green { border-left-color: var(--sage); }
.hub-stat.gold { border-left-color: var(--gold); }
.hub-stat.moss { border-left-color: var(--moss); }
.hub-stat .lbl {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hub-stat .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
}
.hub-stat .delta {
  font-size: 0.78rem;
  margin-top: 6px;
  font-weight: 500;
  color: var(--warm);
}
.hub-stat .delta.up { color: var(--sage-dark); }
.hub-stat .delta.down { color: var(--rose-dark); }

.hub-section {
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.hub-section h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hub-section h5 .period {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chart-week {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  padding: 6px 0;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--rose), var(--rose-dark));
  border-radius: 6px 6px 0 0;
  position: relative;
  min-height: 8px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.chart-bar:hover { filter: brightness(1.1); }
.chart-bar.today { background: linear-gradient(180deg, var(--moss), var(--sage-dark)); }
.chart-bar .v {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.chart-bar:hover .v, .chart-bar.today .v { opacity: 1; }
.chart-labels { display: flex; gap: 8px; margin-top: 6px; }
.chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.chart-labels span.today { color: var(--moss); }

.top-list { display: flex; flex-direction: column; gap: 8px; }
.top-row {
  display: grid;
  grid-template-columns: 38px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--ivory);
  border-radius: 8px;
}
.top-row .rank {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 500;
}
.top-row .rank.g { color: var(--gold); }
.top-row .n {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.93rem;
}
.top-row .n .cat { font-weight: 400; color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.top-row .units { font-size: 0.85rem; color: var(--warm); }
.top-row .rev {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rose-dark);
  font-weight: 600;
}

.low-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #fdf2e3;
  border-radius: 8px;
  margin-bottom: 8px;
  border-left: 3px solid #d49a4f;
}
.low-row.out { background: #fbe5e1; border-left-color: var(--rose-dark); }
.low-row .lbox {
  background: #d49a4f;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.low-row.out .lbox { background: var(--rose-dark); }
.low-row .lname { color: var(--ink); font-weight: 600; font-size: 0.92rem; display: flex; flex-direction: column; }
.low-row .lname .lstatus { font-weight: 400; color: var(--warm); font-size: 0.78rem; margin-top: 2px; }
.low-row .lbtn {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
.low-row .lbtn:hover { background: var(--moss); color: #fff; border-color: var(--moss); }
.low-empty {
  background: #e7f0e8;
  color: var(--moss);
  padding: 14px 18px;
  border-radius: 8px;
  border-left: 3px solid var(--sage);
  font-size: 0.92rem;
  margin: 0;
}

.qsell {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--ivory);
  border-radius: 8px;
  margin-bottom: 6px;
}
.qsell .qn { font-weight: 600; color: var(--ink); display: flex; flex-direction: column; font-size: 0.92rem; }
.qsell .qn .qcat { font-weight: 400; color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.qsell .qp { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--ink); font-weight: 500; }
.qsell .qtoday { font-size: 0.78rem; color: var(--warm); padding: 0 8px; }
.qsell .qbtn {
  background: var(--rose);
  color: #fff;
  border: 0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
.qsell .qbtn:hover { background: var(--rose-dark); }

.wedding-row {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--ivory);
  border-radius: 8px;
  margin-bottom: 6px;
}
.wedding-row .wdate {
  background: #fff;
  border-radius: 6px;
  padding: 6px;
  text-align: center;
  border: 1px solid var(--line);
}
.wedding-row .wdate .m { font-size: 0.65rem; color: var(--rose-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.wedding-row .wdate .d { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--ink); font-weight: 500; line-height: 1; }
.wedding-row .wname { font-weight: 600; color: var(--ink); display: flex; flex-direction: column; font-size: 0.92rem; }
.wedding-row .wname .wvenue { font-weight: 400; color: var(--warm); font-size: 0.78rem; margin-top: 2px; }
.wedding-row .wstatus {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.wedding-row .wstatus.confirmed { background: #e7f0e8; color: var(--moss); }
.wedding-row .wstatus.deposit { background: var(--blush); color: var(--rose-dark); }
.wedding-row .wstatus.consult { background: #fdf2e3; color: #b88840; }
.wedding-row .wprice { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--ink); font-weight: 500; }

.hub-upsell {
  margin-top: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--blush), #fef0ec);
  border: 1px solid var(--rose);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.55;
}
.hub-upsell b { color: var(--rose-dark); }

.om-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--moss);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  z-index: 9100;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.om-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

@media (max-width: 720px) {
  .owner-fab { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.8rem; }
  .om-panel { max-height: 96vh; }
  .om-body { padding: 16px; }
  .om-head { padding: 16px 20px; }
  .om-tabs { padding: 0 16px; overflow-x: auto; }
  .om-tab { white-space: nowrap; }
  .hub-stats { grid-template-columns: repeat(2, 1fr); }
  .om-table { font-size: 0.82rem; }
  .om-table th, .om-table td { padding: 10px 12px; }
}

/* ========== DEMO BANNER ========== */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.demo-banner strong { font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.72rem; padding: 2px 8px; background: rgba(0,0,0,0.18); border-radius: 4px; }
.demo-banner a { color: #fff; text-decoration: underline; font-weight: 700; }
.demo-banner a:hover { color: var(--blush); }
.demo-banner .sep { opacity: 0.5; }
body { padding-top: 36px; }
.nav { top: 36px; }
@media (max-width: 720px) {
  .demo-banner { font-size: 0.7rem; padding: 7px 12px; gap: 6px; }
  body { padding-top: 56px; }
  .nav { top: 56px; }
}

/* ===== DEMO WATERMARK - anti-theft ===== */
body::after{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:9100;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='640' height='360' viewBox='0 0 640 360'><g transform='rotate(-28 320 180)'><text x='320' y='180' fill='rgba(128,128,128,0.18)' stroke='rgba(220,20,60,0.25)' stroke-width='1.2' font-family='Impact,Bebas Neue,sans-serif' font-size='58' font-weight='700' text-anchor='middle' letter-spacing='4'>DEMO %C2%B7 CLEARLYDIGITAL.CA</text></g></svg>");
  background-repeat:repeat;
}
img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}
