:root {
  --ink: #35122f;
  --plum: #4b0f3f;
  --plum-2: #661851;
  --gold: #c98c32;
  --rose: #b75584;
  --text: #2e2130;
  --muted: #756674;
  --line: #eadfe7;
  --soft: #fff8f2;
  --paper: #fffdfb;
  --shadow: 0 14px 36px rgba(74, 36, 61, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--plum);
}

.wrap {
  width: 1200px;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 250, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  z-index: 9999;
}

.nav {
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.brand-logo {
  width: auto;
  height: 116px;
  max-width: 245px;
  object-fit: contain;
}

.mark {
  width: 42px;
  height: 42px;
  position: relative;
  color: var(--plum);
  font: 34px/1 Georgia, serif;
}

.mark::before {
  content: "M";
  position: absolute;
  inset: 4px 0 0;
}

.mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: 0;
  left: 18px;
  box-shadow: -8px 8px 0 -2px var(--gold), 8px 8px 0 -2px var(--gold);
}

.brand strong {
  font: 32px/1 Georgia, "Times New Roman", serif;
  color: var(--plum);
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 25px, 46px);
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #372233;
}

.navlinks .chev { color: var(--gold); margin-left: 5px; }

.nav-item {
  position: relative;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  z-index: 90;
  width: 235px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(74, 36, 61, .18);
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-item.open .nav-menu {
  display: grid;
  gap: 4px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding:4px 10px;
  color: #2e2130;
  font-size: 15px;
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: #fff5ec;
  color: var(--plum);
  outline: none;
}

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

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--plum);
  border-radius: 6px;
  background: var(--plum);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(74, 15, 63, .20);
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-toggle span { margin-top: 5px; margin-bottom: 5px; }

.topbar.menu-open .mobile-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .mobile-toggle span {
  opacity: 0;
}

.topbar.menu-open .mobile-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.login-wrap {
  position: relative;
}

/*.login-toggle {
  background: var(--gold);
  color: #fff;
  box-shadow: none;
}
.login-toggle i {font-size:13px;margin-right:5px;}*/
.btn-login i {font-size:13px;margin-right:5px;}
.btn-primary i {font-size:13px;margin-right:5px;}

.login-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(74, 36, 61, .18);
}

.login-wrap.open .login-menu {
  display: grid;
  gap: 4px;
}

.login-menu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 0 10px;
  color: #2e2130;
  font-size: 15px;
  font-weight: 600;
}

.login-menu a:hover,
.login-menu a:focus {
  background: #fff5ec;
  color: var(--plum);
  outline: none;
}

.mobile-panel {
  display: none;
}

.btn {
  border: 0;
  border-radius: 6px;
  padding:8px 15px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
}

.btn-primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 10px 18px rgba(74, 15, 63, .18);
}
.btn-login {
  background: linear-gradient(180deg, #efc36b, #d99b38);
  color: #35122f;
  box-shadow: 0 10px 18px rgba(74, 15, 63, .18);
}

.btn-gold {
  background: linear-gradient(180deg, #efc36b, #d99b38);
  color: #35122f;
}

.btn-pink {
  background: linear-gradient(180deg, #f1c76d, #d99b38);
  color: var(--plum);
  box-shadow: 0 10px 18px rgba(76, 15, 64, .14);
}

.btn-outline {
  border: 1px solid #b783a5;
  background: #fff;
  color: var(--plum);
}

.btn-green {
  border: 1px solid #36c985;
  background: #fff;
  color: #08a95a;
}

.breadcrumb {
  padding: 18px 0 10px;
  color: #817481;
  font-size: 11px;
}

.page-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.page-title .spark { color: var(--gold); }
.subcopy { margin: 10px 0; color: #544755; font-size: 16px; line-height: 1.45;width: 75%; }

.section {
  padding: 40px 0;
  border-top: 1px solid #f2eaf0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.view-link {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 18px 0;
}

.stat {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5eafa;
  color: #8d33d1;
  font-size: 22px;
}

.stat:nth-child(2) .stat-icon { background: #e9fbef; color: #17b967; }
.stat:nth-child(3) .stat-icon { background: #fff3dd; color: #df9b28; }
.stat:nth-child(4) .stat-icon { background: #f1e9ff; color: #814fe5; }
.stat b { display: block; color: #1f1720; font-size: 22px; }
.stat span { color: #5d505d; font-size: 12px; font-weight: 700; }

.filter-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr) .75fr 1.1fr;
  gap: 18px;
  padding: 14px;
}

.filter-label {
  display: grid;
  gap: 7px;
  color: #3c303c;
  font-size: 11px;
  font-weight: 900;
}

.select {
  width: 100%;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 750;
}

.toggle {
  width: 32px;
  height: 18px;
  border-radius: 20px;
  background: var(--plum);
  position: relative;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 275px;
  gap: 28px;
  align-items: start;
}

.results-meta {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 16px;
  color: #574b57;
  font-size: 12px;
}

.vendor-row {
  display: grid;
  grid-template-columns: 200px 1fr 135px;
  gap: 14px;
  padding: 10px;
  margin-bottom: 13px;
}

.vendor-media {
  display: grid;
  grid-template-columns: 1.55fr .9fr;
  min-height: 122px;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid #f0e5ed;
}

.vendor-media .logo-box {
  display: grid;
  place-items: center;
  background: #fff;
}

.vendor-media .logo-box img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.vendor-info h3,
.vendor-card h3,
.package-card h3 {
  margin: 0 0 4px;
  color: #231923;
  font-size: 20px;
  line-height: 1.15;
}

.small { color: var(--muted); font-size: 12px; }
.verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, #17ff7a, #00c853);
  color: #083719;
  border: 1px solid #00b84a;
  box-shadow: 0 0 0 3px rgba(23, 255, 122, .20), 0 8px 18px rgba(0, 200, 83, .20);
  font-size: 10px;
  font-weight: 900;
}

.stars { color: #e5a323; letter-spacing: 1px; }
.vendor-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  margin: 15px 0 12px;
  color: #4f444f;
  font-size: 10px;
}
.vendor-facts b { display: block; color: #211721; font-size: 11px; }

.profile-price-text {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.profile-price-text strong {
  color: var(--plum);
  font-weight: 900;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  background: #f7f3f6;
  padding: 0 10px;
  color: #5b4e5a;
  font-size: 10px;
  font-weight: 800;
}

.price-box {
  border-left: 1px solid var(--line);
  padding-left: 12px;
}
.price-box .price,
.price {
  color: var(--pink);
  font-size: 24px;
  font-weight: 950;
}
.price-box .btn { width: 100%; min-height: 26px; margin-top: 6px; font-size: 11px; }

.side-panel {
  position: sticky;
  top: 68px;
  display: grid;
  gap: 16px;
}

.plan-card {
  min-height: 245px;
  padding: 26px 18px;
  background: linear-gradient(135deg, #501040, #681653);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.plan-card h2 { margin: 12px 0 8px; color: #fff4d2; font: 28px/1.1 Georgia, serif; }
.plan-card p, .plan-card li { color: #ffe4ee; font-size: 12px; line-height: 1.45; }
.plan-card ul { padding-left: 16px; display: grid; gap: 8px; }
.btn-gold { background: linear-gradient(180deg, #f0c76c, #d89b37); color: var(--plum); }

.refine { padding: 18px; }
.refine h3 { margin: 0 0 18px; }
.refine-group { padding: 16px 0; border-top: 1px solid var(--line); }
.refine-group b { display: block; margin-bottom: 10px; font-size: 13px; }
.radio-list { display: grid; gap: 10px; color: #5b4e5b; font-size: 12px; }
.range-line { height: 4px; border-radius: 4px; background: var(--plum); margin: 16px 0 8px; }

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 24px;
}

.packages-after-benefits {
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}
.benefit-item:last-child { border-right: 0; }
.benefit-item b { display: block; color: var(--plum); font-size: 13px; }
.benefit-item span:last-child { color: #5a4c59; font-size: 11px; }

.reviews-section {
  background: linear-gradient(180deg, #fffdfb, #fff8f2);
  padding: 18px 0 26px;
}

.reviews-intro {
  max-width: 620px;
  margin: -8px auto 22px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

.home-review-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.home-rating-box,
.home-review-feed {
  display: flex;
  flex-direction: column;
  min-height: 392px;
  padding: 20px;
  border-color: #ecdbe5;
  box-shadow: 0 14px 30px rgba(72, 28, 57, .08);
}

.home-rating-box h3 {
  margin: 0 0 16px;
  color: var(--plum);
  font-size: 19px;
}

.home-rating-number {
  color: #1f1720;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.home-review-count {
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.home-rating-breakdown {
  display: grid;
  grid-template-columns: 34px 1fr 30px;
  gap: 8px;
  align-items: center;
  margin: 18px 0 22px;
}

.home-rating-breakdown span,
.home-rating-breakdown em {
  color: #6c5e6a;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.home-rating-breakdown div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e4ec;
}

.home-rating-breakdown b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.home-review-category {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 14px;
  border-radius: 10px;
  background: #fffaf3;
}

.home-review-category h4 {
  margin: 0 0 2px;
  color: var(--plum);
  font-size: 14px;
}

.home-review-category div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #554754;
  font-size: 12px;
  font-weight: 800;
}

.home-review-category b { color: var(--plum); }

.home-review-action {
  width: 100%;
  margin-top: auto;
}

.home-review-pages { flex: 1; }
.home-review-page { display: none; }
.home-review-page.active { display: block; }

.home-review-story {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.home-review-story:first-child {
  border-top: 0;
  padding-top: 0;
}

.home-review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f6;
  color: var(--plum);
  font-weight: 900;
}

.home-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.home-review-head b {
  color: #211721;
  font-size: 14px;
}

.home-review-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.home-review-story p {
  margin: 7px 0;
  color: #403540;
  font-size: 13px;
  line-height: 1.6;
}

.home-review-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.home-review-strip img {
  width: 72px;
  height: 58px;
  border: 1px solid #f0e1eb;
  border-radius: 8px;
  object-fit: cover;
}

.home-muhrta-reply {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #efd9b6;
  border-radius: 8px;
  background: #fff8ef;
  color: #514454;
  font-size: 12px;
  line-height: 1.45;
}

.home-muhrta-reply b {
  display: block;
  margin-bottom: 4px;
  color: var(--plum);
  font-size: 12px;
}

.home-review-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.home-review-pager button {
  width: 34px;
  height: 34px;
  border: 1px solid #ead5e3;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
  font-weight: 900;
}

.home-review-pager button.active {
  border-color: var(--plum);
  background: var(--plum);
  color: #fff;
}

.home-view-all-reviews {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: none;
}

.horizontal-products,
.vendor-card-grid,
.package-grid,
.category-grid,
.gallery-grid,
.review-grid,
.service-tile-grid,
.similar-grid {
  display: grid;
  gap: 16px;
}
.horizontal-products { grid-template-columns: repeat(5, 1fr); }
.vendor-card-grid, .package-grid { grid-template-columns: repeat(4, 1fr); }
.category-grid { grid-template-columns: repeat(3, 1fr); }

.mini-product,
.vendor-card,
.package-card,
.category-card,
.review-card,
.service-tile,
.pricing-card {
  overflow: hidden;
}
.mini-product { min-height: 58px; display: grid; grid-template-columns: 80px 1fr; }
.mini-product div:last-child { padding: 9px; }
.mini-product b { display:block; font-size: 11px; }
.mini-product span { font-size: 11px; color: var(--plum); font-weight: 900; }

.service-hero {
  min-height: 225px;
  background: linear-gradient(90deg, #fffdfb 0 42%, rgba(255,253,251,.5) 56%, rgba(255,253,251,0) 72%), url("page-assets/service-hero.jpg") right center / auto 100% no-repeat;
}
.service-hero .wrap { padding: 30px 0 22px; }
.service-hero .stats-grid {
  max-width: 520px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-hero .stat {
  align-items: center;
  min-height: 70px;
  padding: 11px 12px;
}
.service-hero .stat b {
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.08;
}
.service-hero .stat span span {
  font-size: 11px;
  line-height: 1.2;
}

.category-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 108px;
}
.category-card .content { padding: 18px; }
.category-card h3 { margin: 0 0 8px; color: var(--plum); }
.cuisine-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 16px; }

.vendor-card .image { height: 66px; }
.vendor-card .body { padding: 12px; position: relative; }
.round-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-top: -40px;
  margin-bottom: 8px;
  border: 2px solid #d8a13a;
  border-radius: 50%;
  background: #fff;
  color: #be8125;
  font: 24px/1 Georgia, serif;
}
.vendor-card .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }

.package-card .image { height: 76px; }
.package-card .body { padding: 14px; }
.package-meta { display: flex; gap: 12px; color: #826f7e; font-size: 11px; margin: 12px 0; }

.service-catering-page .service-package-grid {
  align-items: stretch;
}

.service-catering-page .package-card {
  position: relative;
  display: grid;
  grid-template-rows: 82px 1fr;
  border-color: #eadce6;
}

.service-catering-page .package-card.popular-package {
  border-color: #d8a13a;
  box-shadow: 0 12px 28px rgba(216, 161, 58, .14);
}

.service-catering-page .popular-badge {
  position: absolute;
  top: 10px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #eab34c, #c98426);
  color: #fff;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(216, 161, 58, .24);
}

.service-catering-page .package-card .body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 245px;
}

.service-catering-page .package-card h3 {
  min-height: 46px;
  margin: 0;
}

.service-catering-page .package-card p {
  min-height: 58px;
  margin: 0;
}

.service-catering-page .package-meta {
  min-height: 20px;
  margin: 0;
}

.service-catering-page .package-card .body > b {
  color: var(--plum);
  font-size: 20px;
  line-height: 1.1;
}

.service-catering-page .package-card .btn {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
}

.service-catering-page .reviews-section {
  margin-top: 10px;
}

.service-catering-page .reviews-section .section-title {
  margin-bottom: 10px;
  text-align: center;
}

.service-catering-page .reviews-intro {
  display: block;
  max-width: 560px;
  margin: 0 auto 22px;
  text-align: center;
  line-height: 1.55;
}

.service-catering-page .faq-contact {
  align-items: stretch;
}

.wide-cta {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 70px;
  background: linear-gradient(135deg, #501040, #681653);
  color: #fff;
}
.wide-cta h2 { margin: 0; color: #ffe0a3; font: 28px/1.1 Georgia, serif; }
.wide-cta p { margin: 5px 0 0; color: #f6d8e7; }

.profile-nav .brand { font-family: Georgia, "Times New Roman", serif; font-weight: 600; color: var(--plum); }
.profile-page .view-link,
.profile-page .price {
  color: var(--plum);
}

.profile-page .verified,
.caterer-profile-page .partner-badge {
  background: linear-gradient(135deg, #17ff7a, #00c853);
  color: #083719;
  border: 1px solid #00b84a;
  box-shadow: 0 0 0 3px rgba(23, 255, 122, .20), 0 8px 18px rgba(0, 200, 83, .20);
}

.profile-page .stat-icon {
  background: #fff6e5;
  color: var(--gold);
}

.profile-page .profile-actions {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.profile-hero-card {
  position: relative;
  overflow: visible;
  margin-top: 10px;
}
.profile-cover {
  height: 185px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.profile-summary {
  min-height: 172px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 330px;
  gap: 24px;
  padding: 28px 24px 30px;
  align-items: center;
}
.profile-logo {
  width: 120px;
  height: 120px;
  margin-top: -52px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.profile-actions {
  margin-top: 0;
  display: grid;
  gap: 10px;
  padding: 0;
  align-self: center;
  justify-self: start;
}
.profile-actions .btn { width: 100%; min-height: 48px; }

.profile-stats { margin: 22px 0; }

.profile-stats .stat {
  gap: 12px;
  padding: 14px 16px;
}

.profile-stats .stat b {
  font-size: 20px;
  white-space: nowrap;
}

.profile-stats .stat span span {
  display: block;
  font-size: 11px;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  padding: 24px;
}
.about-grid h3, .box-title { margin: 0 0 16px; color: #221722; font-size: 18px; }
.video-thumb { min-height: 150px; overflow: hidden; border-radius: 10px; position: relative; }
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  box-shadow: 0 8px 18px rgba(76, 15, 64, .18);
}

.service-tile-grid { grid-template-columns: repeat(7, 1fr); }
.service-tile {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 850;
}
.service-tile .emoji { font-size: 28px; display: block; margin-bottom: 6px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-card { padding: 22px; position: relative; }
.pricing-card.featured { border-color: #d8a13a; box-shadow: 0 0 0 2px rgba(216,161,58,.14); }
.ribbon {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 2;
  padding: 7px 18px;
  border-radius: 7px;
  background: linear-gradient(180deg, #f1c76d, #d99b38);
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(76, 15, 64, .15);
}
.pricing-card.featured h3 { padding-top: 34px; }
.pricing-card ul { padding-left: 18px; color: #4e444f; font-size: 12px; line-height: 1.8; }

.gallery-grid { grid-template-columns: repeat(6, 1fr); }
.gallery-grid .photo { height: 126px; overflow: hidden; border-radius: 8px; }
.tabs { display: flex; gap: 20px; color: #312733; font-size: 12px; font-weight: 850; }
.tabs span:first-child { background: var(--plum); color: #fff; padding: 8px 18px; border-radius: 6px; }

.review-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 16px;
}
.rating-box { padding: 28px; }
.rating-number { font-size: 52px; color: #1f1720; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card { padding: 18px; }
.review-card p { color: #403540; font-size: 13px; line-height: 1.55; }

.enhanced-reviews {
  align-items: start;
  grid-template-columns: 280px minmax(0, 1fr);
}

.enhanced-reviews .rating-box {
  position: sticky;
  top: 88px;
}

.review-count {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.rating-breakdown {
  display: grid;
  grid-template-columns: 34px 1fr 30px;
  gap: 8px;
  align-items: center;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.rating-breakdown div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1e8ee;
}

.rating-breakdown b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.rating-breakdown em {
  color: #5d505d;
  font-style: normal;
  text-align: right;
}

.review-category-summary {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 14px;
  border-radius: 10px;
  background: #fffaf3;
}

.review-category-summary h4 {
  margin: 0 0 2px;
  color: var(--plum);
  font-size: 13px;
}

.review-category-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #4f444f;
  font-size: 12px;
  font-weight: 800;
}

.review-category-summary b {
  color: var(--plum);
}

.write-review-btn {
  width: 100%;
}

.review-feed {
  padding: 22px;
  min-height: 392px;
  display: flex;
  flex-direction: column;
}

.review-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.review-feed-head h3 {
  margin: 0 0 4px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.review-feed-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.review-story {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f6;
  color: var(--plum);
  font-weight: 900;
}

.review-story-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.review-story-head b {
  color: #211721;
  font-size: 14px;
}

.review-story-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.review-story p {
  margin: 6px 0;
  color: #403540;
  font-size: 13px;
  line-height: 1.6;
}

.review-photo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.review-photo-strip img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0e1eb;
}

.review-pages {
  flex: 1;
}

.review-page {
  display: none;
}

.review-page.active {
  display: block;
}

.review-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.review-pager button {
  width: 34px;
  height: 34px;
  border: 1px solid #ead5e3;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  font-weight: 900;
  cursor: pointer;
}

.review-pager button.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.form-grid,
.availability-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-card { padding: 22px; }
.availability-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.availability-check-btn {
  width: 100%;
  margin-top: 16px;
}
.field { display: grid; gap: 4px; color: #4f4250; font-size: 14px; font-weight: 650; }
.field input, .field select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 12px;
  background: #fff;
}

.faq-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.faq-panel h2,
.contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.1;
}

.faq-grid.vertical {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-panel {
  display: flex;
  flex-direction: column;
  padding: 34px 34px 30px;
  background: #f3f7fa;
  border-radius: 8px;
}

.faq-panel .faq-grid,
.faq-panel .faq-grid.vertical {
  flex: 1;
}

.faq-kicker {
  position: relative;
  margin: 0 0 18px;
  padding-left: 48px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.faq-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 1px;
  background: var(--plum);
}

.faq-panel h2 {
  margin-bottom: 28px;
  color: #211721;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.faq-item {
  position: relative;
  min-height: 0;
  padding: 22px 38px 22px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border: 0;
  border-top: 1px solid #d9dde1;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid #d9dde1;
}

.faq-item::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--plum);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.faq-item.is-open::after {
  content: "×";
}

.faq-item b {
  color: #211721;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.25;
}

.faq-item span {
  display: none;
  max-width: 760px;
  color: #6b606b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.faq-item.is-open span {
  display: block;
  padding-top: 10px;
}

.contact-panel {
  padding: 24px;
  border-color: #b88443;
  background:
    radial-gradient(circle at 92% 14%, rgba(244, 199, 109, .18), transparent 28%),
    linear-gradient(135deg, #4c0f40, #681653);
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #f8dca2;
  font-size: 12px;
  font-weight: 900;
}

.contact-panel h2 {
  color: #f8dca2;
  margin-bottom: 6px;
  text-align: center;
}

.contact-intro {
  margin: 0 0 18px;
  color: #f6d8e7;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ead9e4;
  border-radius: 7px;
  background: rgba(255, 253, 251, .96);
  color: #2e2130;
  outline: none;
  padding: 12px 13px;
  font: 600 14px/1.4 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #d7a24b;
  box-shadow: 0 0 0 3px rgba(215, 162, 75, .16);
  background: #fff;
}

.contact-form .btn-primary {
  background: linear-gradient(180deg, #f1c76d, #d99b38);
  color: var(--plum);
  box-shadow: 0 10px 18px rgba(28, 7, 24, .22);
}

.address-card {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #fff8f3;
  color: #514350;
  font-size: 13px;
  line-height: 1.45;
}
.service-areas {
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 18px;
  padding: 22px;
}
.areas { display: flex; flex-wrap: wrap; gap: 12px; }
.map-blob { min-height: 120px; border-radius: 12px; background: radial-gradient(circle at 60% 35%, #d8a13a 0 10px, transparent 11px), radial-gradient(circle at 35% 70%, #d8a13a 0 13px, transparent 14px), #f7f3f5; }

.reason-row, .similar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  text-align: center;
}
.reason { padding: 18px 10px; font-size: 12px; font-weight: 850; }
.reason span { display:block; font-size: 24px; margin-bottom: 8px; }
.similar-grid { grid-template-columns: repeat(4, 1fr); text-align: left; }
.similar-card { display: grid; grid-template-columns: 70px 1fr; gap: 10px; padding: 10px; }
.similar-card .thumb { height: 62px; border-radius: 7px; overflow:hidden; }

.footer {
  margin-top: 22px;
  padding: 28px 0 18px;
  background: linear-gradient(135deg, #4b0e3f, #681653);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr) 1.8fr;
  gap: 34px;
}
.footer h3 { margin: 0 0 10px; font: 28px/1 Georgia, serif; }
.footer h4 { margin: 0 0 10px; font-size: 13px; }
.footer p, .footer li { color: #f2d8e8; font-size: 12px; line-height: 1.55; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.newsletter { display: grid; grid-template-columns: 1fr 44px; height: 40px; border: 1px solid rgba(255,255,255,.45); border-radius: 6px; overflow: hidden; }
.newsletter input { border: 0; padding: 0 12px; }
.newsletter button { border: 0; background: var(--plum); color: #fff; font-size: 22px; }

.nav-links a.active {
  color: var(--plum);
  border-bottom: 2px solid var(--gold);
}

.subpage-hero {
  background:
    linear-gradient(90deg, #fffdfb 0 43%, rgba(255,253,251,.68) 57%, rgba(255,253,251,0) 75%),
    var(--hero-image) right center / auto 100% no-repeat,
    #fff8f3;
}

.subpage-hero .wrap {
  padding: 30px 0;
}

.gold-divider {
  width: 250px;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.gold-divider::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: var(--paper);
  padding: 0 10px;
}

.hero-feature-row,
.info-card-grid,
.contact-info-row,
.metric-row {
  display: grid;
  gap: 14px;
}

.hero-feature-row {
  grid-template-columns: repeat(3, 1fr);
  max-width: 74%;
  margin-top: 24px;
}

.feature-pill {
  min-height: 64px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.feature-pill .stat-icon {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.feature-pill b {
  display: block;
  color: #2c202c;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-pill span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.story-card {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 36px;
  padding: 12px;
  align-items: center;
}

.story-card .image,
.contact-map,
.support-cta .image {
  overflow: hidden;
  border-radius: 8px;
}

.story-card .content {
  padding: 16px 28px 16px 8px;
}

.mini-title {
  margin: 0;
  color: var(--plum);
  font: 28px/1.1 Georgia, "Times New Roman", serif;
}

.two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mission-card {
  min-height: 122px;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.large-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff8f3;
  color: var(--plum);
  border: 1px solid #f0d9be;
  font-size: 38px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.team-card {
  padding: 14px 16px 18px;
  text-align: center;
}

.team-avatar {
  width: 82px;
  height: 82px;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 5px solid #f7f0eb;
  border-radius: 50%;
}

.team-card h3 {
  margin: 0 0 4px;
  color: var(--plum);
  font-size: 16px;
}

.growth-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  padding: 20px;
}

.growth-chart {
  min-height: 150px;
  position: relative;
  border-left: 1px solid #ddd2da;
  border-bottom: 1px solid #ddd2da;
  background: repeating-linear-gradient(to bottom, transparent 0 29px, #eee7ec 30px);
}

.growth-line {
  position: absolute;
  inset: 18px 18px 34px 44px;
  border-bottom: 4px solid rgba(76,15,64,.25);
  clip-path: polygon(0 78%, 45% 62%, 100% 8%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(76,15,64,.14), rgba(76,15,64,.03));
}

.growth-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--plum);
}

.growth-point span {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--plum);
  font-weight: 900;
}

.cta-banner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 34px;
  background:
    radial-gradient(circle at 96% 50%, rgba(216,161,58,.18), transparent 28%),
    linear-gradient(135deg, #501040, #681653);
  color: #fff;
}

.cta-banner h2 {
  margin: 0 0 5px;
  color: #ffe0a3;
  font: 24px/1.1 Georgia, "Times New Roman", serif;
}

.cta-banner p {
  color: #f8d9e8;
}

.office-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 16px;
}

.office-card {
  padding: 24px;
}

.office-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.office-list p {
  margin: 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.contact-map {
  min-height: 360px;
}

.message-card {
  padding: 24px;
}

.wide-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.wide-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 850;
}

.wide-form input,
.wide-form select,
.wide-form textarea,
.event-form input,
.event-form select,
.event-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  color: #2f2530;
}

.wide-form textarea {
  min-height: 112px;
  padding-top: 12px;
  grid-column: 1 / -1;
}

.wide-form .submit-row {
  grid-column: 1 / -1;
  text-align: center;
}

.contact-info-row {
  grid-template-columns: repeat(4, 1fr);
}

.support-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 146px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(80,16,64,.98), rgba(104,22,83,.9)),
    var(--support-image) right center / auto 100% no-repeat;
  color: #fff;
}

.support-band h2 {
  margin-bottom: 10px;
  color: #ffe0a3;
  font: 28px/1.1 Georgia, "Times New Roman", serif;
}

.phone-box {
  min-width: 330px;
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--plum);
  font-size: 24px;
  font-weight: 900;
}

.event-form-card {
  padding: 28px 34px;
}

.event-form {
  display: grid;
  gap: 18px;
}

.event-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.service-choice {
  min-height: 78px;
  display: grid;
  place-items: center;
  gap: 6px;
  position: relative;
  text-align: center;
  color: var(--plum);
  font-size: 12px;
  font-weight: 850;
}

.service-choice input {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
}

.service-choice span {
  display: block;
  font-size: 26px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}

.process-step .large-icon {
  margin: 0 auto 12px;
  width: 72px;
  height: 72px;
  font-size: 32px;
}

.support-cta {
  display: grid;
  grid-template-columns: 250px 1fr 260px;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  background: #fff5ef;
}

.support-cta .image {
  height: 120px;
  align-self: end;
}

.metric-row {
  grid-template-columns: repeat(4, 1fr);
  background: #fff8fb;
  padding: 20px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.metric:last-child { border-right: 0; }
.metric b { display: block; color: var(--plum); font-size: 28px; }

.vendor-hero {
  min-height: 266px;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(90deg, #fffdfb 0 42%, rgba(255,253,251,.7) 54%, rgba(255,253,251,0) 73%),
    var(--vendor-hero-image) right center / auto 100% no-repeat,
    #fff8f3;
}

.vendor-hero .wrap {
  padding: 30px 0;
}

.vendor-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.vendor-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.vendor-hero-pills .feature-pill {
  min-width: 132px;
  box-shadow: none;
}

.vendor-benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 22px 18px;
  text-align: center;
}

.vendor-benefit {
  min-height: 118px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding: 0 16px;
  position: relative;
}

.vendor-benefit:not(:last-child)::after,
.vendor-process-step:not(:last-child)::after {
  content: "✦";
  position: absolute;
  right: -6px;
  top: 45%;
  color: var(--gold);
}

.vendor-benefit b,
.vendor-process-step b {
  color: #2d2230;
  font-size: 13px;
}

.vendor-benefit p,
.vendor-process-step p,
.reg-side p,
.reg-form-card p {
  margin: 0;
  color: #655767;
  font-size: 12px;
  line-height: 1.45;
}

.vendor-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff4e9;
  color: #c67825;
  font-size: 26px;
}

.join-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  min-height: 154px;
  padding: 10px;
}

.join-card .image {
  overflow: hidden;
  border-radius: 8px;
}

.join-card .content {
  display: grid;
  align-content: center;
  gap: 10px;
}

.vendor-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.vendor-process.two-stage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vendor-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
}

.vendor-process-step .step-number {
  color: var(--muted);
  text-align: center;
  font: 22px Georgia, serif;
}

.vendor-stats-strip,
.secure-strip {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-color: #edc682;
  background: #fffaf4;
}

.vendor-stats-strip {
  grid-template-columns: repeat(4, 1fr);
}

.vendor-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
}

.vendor-story-slider {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.vendor-story-slide {
  display: none;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.vendor-story-slide.active {
  display: grid;
}

.vendor-story-media {
  min-height: 235px;
  border-radius: 8px;
  overflow: hidden;
}

.video-story {
  position: relative;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.video-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(74, 16, 64, .68), rgba(28, 13, 31, .18));
}

.video-story button {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--plum);
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 16px 36px rgba(38, 15, 32, .24);
}

.video-story span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 251, .94);
  color: var(--plum);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 950;
}

.text-story {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid #efd9b6;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 161, 58, .22), transparent 32%),
    linear-gradient(135deg, #fffaf3, #fff);
  padding: 28px;
  color: var(--plum);
}

.text-story i {
  font-size: 34px;
  color: var(--gold);
}

.text-story p {
  margin: 0;
  color: var(--plum);
  font: 28px/1.22 Georgia, "Times New Roman", serif;
}

.vendor-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 235px;
  padding: 8px 8px 8px 0;
}

.story-type {
  width: fit-content;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff4e9;
  color: #a35f16;
  padding: 0 11px;
  font-size: 11px;
  font-weight: 950;
}

.vendor-story-copy > p {
  margin: 16px 0 18px;
  color: #302431;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.55;
}

.vendor-person {
  display: grid;
  gap: 4px;
}

.vendor-person strong {
  color: var(--plum);
  font-size: 18px;
}

.vendor-person span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.vendor-story-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.vendor-story-controls > button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #ead5e3;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
}

.vendor-story-dots {
  display: flex;
  gap: 8px;
}

.vendor-story-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #d8c5d2;
  cursor: pointer;
}

.vendor-story-dots button.active {
  width: 25px;
  background: var(--plum);
}

.quote-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: #f7eef4;
}

.reg-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 22px 28px;
  margin: 18px auto 20px;
}

.reg-progress.two-stage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reg-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  color: #6d6170;
  position: relative;
}

.reg-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 19px;
  width: 22px;
  border-top: 2px dotted #b58cab;
}

.reg-step .num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efeef0;
  color: #4f4350;
  font-weight: 900;
}

.reg-step.done .num,
.reg-step.active .num {
  background: var(--plum);
  color: #fff;
}

.reg-step.active {
  color: var(--plum);
  font-weight: 900;
}

.reg-main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: start;
}

.reg-form-card,
.reg-side,
.reg-help {
  padding: 24px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.choice-card,
.check-card,
.yesno {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px 16px;
  color: #2f2530;
  font-weight: 850;
}

.choice-card.active,
.check-card.active,
.yesno .active {
  border-color: var(--plum);
  box-shadow: 0 0 0 2px rgba(76,15,64,.08);
}

.reg-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 26px;
  margin-top: 20px;
}

.reg-fields.one-col {
  grid-template-columns: 1fr;
}

.reg-fields label,
.sidebar-form label {
  display: grid;
  gap: 8px;
  color: #352936;
  font-size: 12px;
  font-weight: 900;
}

.reg-fields input,
.reg-fields select,
.reg-fields textarea,
.sidebar-form input,
.sidebar-form select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  color: #3a2d3a;
}

.reg-fields textarea {
  min-height: 70px;
  padding-top: 12px;
}

.upload-box {
  min-height: 62px;
  border: 1px dashed #baa8b6;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--plum);
  font-weight: 900;
  background: #fff;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.form-actions.single-action {
  grid-template-columns: 1fr;
}

.reg-side {
  display: grid;
  gap: 16px;
}

.vendor-registration-stage-two .reg-main-grid {
  margin-top: 22px;
}

.vendor-registration-stage-two .reg-form-card {
  border-color: #b88443;
  background:
    radial-gradient(circle at 92% 14%, rgba(244, 199, 109, .18), transparent 28%),
    linear-gradient(135deg, #4c0f40, #681653);
  color: #fff;
  box-shadow: 0 12px 28px rgba(72, 28, 57, .08);
}

.vendor-registration-stage-two .reg-form-card .mini-title {
  color: #f8dca2;
  text-align: center;
}

.vendor-registration-stage-two .reg-form-card > p,
.vendor-registration-stage-two .reg-form-card .small {
  color: #f6d8e7;
}

.vendor-registration-stage-two .reg-form-card .reg-fields label {
  color: #f8dca2;
}

.vendor-registration-stage-two .reg-form-card .reg-fields input,
.vendor-registration-stage-two .reg-form-card .reg-fields select {
  border-color: #ead9e4;
  background: rgba(255, 253, 251, .96);
  color: #2e2130;
}

.vendor-registration-stage-two .reg-form-card .reg-fields input:focus,
.vendor-registration-stage-two .reg-form-card .reg-fields select:focus {
  border-color: #d7a24b;
  box-shadow: 0 0 0 3px rgba(215, 162, 75, .16);
  background: #fff;
  outline: none;
}

.vendor-registration-stage-two .reg-form-card .btn-primary {
  background: linear-gradient(180deg, #f1c76d, #d99b38);
  color: var(--plum);
  box-shadow: 0 10px 18px rgba(28, 7, 24, .22);
}

.reason-box {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reg-help {
  margin-top: 16px;
  background: linear-gradient(135deg, #fff5f9, #f5eaf5);
}

.safe-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  border-right: 1px solid #e8d3bd;
  padding-right: 16px;
}

.safe-item:last-child { border-right: 0; }
.safe-item b { display: block; color: var(--plum); font-size: 14px; }
.safe-item span:last-child { color: #675766; font-size: 12px; }

.vendor-wizard {
  display: grid;
  grid-template-columns: 285px 1fr;
  min-height: calc(100vh - 50px);
}

.wizard-sidebar {
  border-right: 1px solid var(--line);
  background: #fffdfb;
  padding: 34px 24px;
}

.wizard-steps {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  position: relative;
}

.wizard-steps::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: #efb8cd;
}

.wizard-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
}

.wizard-step.active {
  background: #fff0f6;
  color: var(--plum);
  font-weight: 900;
}

.wizard-step .num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #efb8cd;
  background: #fff;
  color: var(--plum);
  font-size: 22px;
}

.wizard-step.active .num {
  background: linear-gradient(180deg, #f1c76d, #d99b38);
  color: var(--plum);
}

.wizard-content {
  padding: 34px 42px;
}

.wizard-panel {
  padding: 26px;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  color: var(--plum);
  font-size: 18px;
  font-weight: 950;
}

.form-section-title::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--line);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
}

.check-card {
  justify-content: space-between;
}

.yesno-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
}

.yesno {
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
}

.yesno span {
  flex: 1;
  min-height: 38px;
  display: grid;
  place-items: center;
  color: #6b5b68;
}

.yesno .active {
  background: #fff3f8;
  color: var(--plum);
}

.events-page {
  background:
    radial-gradient(circle at 0 70%, rgba(128, 18, 98, .06), transparent 24%),
    radial-gradient(circle at 100% 72%, rgba(216, 161, 58, .08), transparent 24%),
    var(--paper);
}

.events-hero {
  background:
    linear-gradient(90deg, #fffdfb 0 42%, rgba(255,253,251,.76) 55%, rgba(255,253,251,0) 74%),
    #fff8f3;
  border-bottom: 1px solid #f1e6ed;
}

.events-hero .wrap {
  padding: 30px 0;
}

.events-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.events-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding-right: 18px;
  border-right: 1px solid #e9d8df;
}

.events-feature:last-child {
  border-right: 0;
}

.events-feature b {
  display: block;
  color: #2d2230;
  font-size: 15px;
}

.events-feature span:last-child {
  color: #625665;
  font-size: 12px;
}

.center-head {
  text-align: center;
  margin-bottom: 20px;
}

.center-head h2 {
  margin: 0;
  font: 32px/1.1 Georgia, "Times New Roman", serif;
  color: #251a25;
}

.center-head p {
  margin: 8px 0 0;
  color: #4f4350;
}

.center-divider {
  width: 96px;
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.center-divider::after {
  content: "✦";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: var(--paper);
  padding: 0 8px;
}

.event-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-list-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: #f0d7bd;
}

.event-list-card .image {
  height: 108px;
}

.event-list-card .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 16px 18px;
}

.event-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -29px 0 10px;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  border: 1px solid #f0d7e2;
  box-shadow: var(--shadow);
  font-size: 30px;
}

.event-list-card h3 {
  margin: 0 0 7px;
  color: #231823;
  font-size: 20px;
}

.event-list-card p {
  margin: 0;
  color: #3f3340;
  font-size: 13px;
  line-height: 1.4;
}

.event-list-card .view-link {
  margin-top: 8px;
  white-space: nowrap;
}

.event-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.event-reason {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(135deg, #fff, #fff5fb);
}

.event-reason h3 {
  margin: 0 0 6px;
  color: var(--plum);
  font: 19px/1.15 Georgia, "Times New Roman", serif;
}

.event-reason p {
  margin: 0;
  color: #5d515d;
  font-size: 12px;
  line-height: 1.4;
}

.event-custom-cta {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #fff8fb, #f7eaf5);
}

.event-custom-cta h2 {
  margin: 0 0 4px;
  color: var(--plum);
  font: 24px/1.15 Georgia, "Times New Roman", serif;
}

.event-custom-cta p {
  margin: 0;
  color: #524650;
}

@media (max-width: 980px) {
  .about-page .subpage-hero,
  .contact-page .subpage-hero,
  .plan-page .subpage-hero {
    background:
      linear-gradient(180deg, rgba(255,253,251,.96), rgba(255,253,251,.78)),
      var(--hero-image) center / cover no-repeat;
  }

  .about-page .hero-feature-row,
  .contact-page .hero-feature-row,
  .plan-page .hero-feature-row {
    max-width: none;
  }

  .plan-page .event-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .about-page .subpage-hero .wrap,
  .contact-page .subpage-hero .wrap,
  .plan-page .subpage-hero .wrap {
    text-align: center;
  }

  .about-page .subpage-hero .subcopy,
  .contact-page .subpage-hero .subcopy,
  .plan-page .subpage-hero .subcopy {
    max-width: none !important;
    margin-inline: auto;
  }

  .about-page .gold-divider,
  .contact-page .gold-divider,
  .plan-page .gold-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-page .feature-pill,
  .contact-page .feature-pill,
  .plan-page .feature-pill {
    min-height: 74px;
    grid-template-columns: 36px minmax(0, 1fr);
    text-align: left;
  }

  .about-page .feature-pill .stat-icon,
  .contact-page .feature-pill .stat-icon,
  .plan-page .feature-pill .stat-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .about-page .mission-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page .large-icon {
    margin: 0 auto;
  }

  .contact-page .office-card,
  .contact-page .message-card,
  .plan-page .event-form-card {
    padding: 20px 16px;
  }

  .contact-page .contact-map {
    min-height: 260px;
  }

  .contact-page .support-band {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .contact-page .phone-box {
    min-width: 0;
    width: 100%;
    font-size: 19px;
  }

  .plan-page .event-form-grid,
  .plan-page .service-select-grid {
    grid-template-columns: 1fr;
  }

  .plan-page .support-cta {
    grid-template-columns: 1fr;
    padding: 18px;
    text-align: center;
  }

  .plan-page .support-cta .image {
    height: 160px;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .service-catering-page .service-hero {
    background:
      linear-gradient(180deg, rgba(255,253,251,.94), rgba(255,253,251,.76)),
      url("page-assets/service-hero.jpg") center / cover no-repeat;
  }

  .service-catering-page .service-hero .wrap {
    padding-top: 24px;
  }

  .service-catering-page .service-hero .stats-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-catering-page .category-card {
    grid-template-columns: 1fr;
  }

  .service-catering-page .category-card img {
    min-height: 170px;
  }

  .service-catering-page .service-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-catering-page .wide-cta {
    padding: 22px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .service-catering-page .page-title {
    text-align: center;
    font-size: 34px;
    line-height: 1.06;
  }

  .service-catering-page .subcopy {
    max-width: none !important;
    margin-inline: auto;
    text-align: center;
    font-size: 14px;
  }

  .service-catering-page .service-hero .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .service-catering-page .service-hero .stat {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 78px;
    padding: 11px 10px;
  }

  .service-catering-page .service-hero .stat-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .service-catering-page .service-hero .stat b {
    font-size: clamp(12px, 3.2vw, 15px);
    white-space: normal;
  }

  .service-catering-page .service-hero .stat span span {
    font-size: 10px;
  }

  .service-catering-page .category-grid,
  .service-catering-page .vendor-card-grid,
  .service-catering-page .service-package-grid {
    grid-template-columns: 1fr;
  }

  .service-catering-page .package-card {
    grid-template-rows: 120px 1fr;
  }

  .service-catering-page .package-card .body {
    min-height: 220px;
  }

  .service-catering-page .package-card h3,
  .service-catering-page .package-card p {
    min-height: 0;
  }

  .service-catering-page .benefit-strip {
    grid-template-columns: 1fr;
  }

  .service-catering-page .home-review-layout {
    grid-template-columns: 1fr;
  }

  .vendor-registration-page .vendor-story-slide {
    grid-template-columns: 1fr;
  }

  .vendor-registration-page .vendor-story-copy {
    min-height: 0;
    padding: 0;
  }
}

@media (max-width: 980px) {
  .wrap { width: min(100% - 28px, 760px); }
  .nav { grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .nav-actions { justify-content: end; }
  .search-input { display: none; }
  .stats-grid, .benefit-strip, .vendor-card-grid, .package-grid, .category-grid, .service-hero .stats-grid, .gallery-grid, .reason-row, .events-feature-row, .event-list-grid, .event-reason-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar, .main-grid, .vendor-row, .profile-summary, .about-grid, .pricing-grid, .review-layout, .form-grid, .availability-service-grid, .availability-fields, .service-areas, .faq-contact, .footer-grid, .wide-cta, .story-card, .two-card-grid, .growth-card, .office-grid, .wide-form, .support-band, .event-form-grid, .process-grid, .support-cta, .vendor-benefits, .vendor-process, .reg-main-grid, .reg-fields, .secure-strip, .vendor-stats-strip, .vendor-testimonials, .choice-grid, .vendor-wizard, .check-grid, .yesno-grid, .event-custom-cta { grid-template-columns: 1fr; }
  .price-box { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 12px; }
  .side-panel { position: static; }
  .enhanced-reviews .rating-box { position: static; }
  .profile-actions {
    margin-top: 8px;
    justify-self: stretch;
  }

  .profile-title-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-share-mobile {
    align-self: flex-start;
    display: inline-flex;
  }

  .profile-share-desktop {
    display: none;
  }

  .profile-partner-row {
    display: block;
    margin: 0;
  }
  .service-tile-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid, .similar-grid, .horizontal-products { grid-template-columns: 1fr; }
  .hero-feature-row, .team-grid, .contact-info-row, .service-select-grid, .metric-row { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; }
  .phone-box { min-width: 0; }
  .vendor-hero { background-position: center bottom; background-size: auto 50%; padding-bottom: 150px; }
  .events-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255,253,251,.98) 0 52%, rgba(255,253,251,.86) 100%),
      url("page-assets/events-hero.jpg") center bottom / auto 48% no-repeat,
      #fff8f3;
    padding-bottom: 0;
  }
  .events-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
  }
  .events-feature {
    min-width: 0;
    border: 1px solid #eddde6;
    border-radius: 8px;
    background: rgba(255, 253, 251, .94);
    padding: 12px;
    box-shadow: 0 10px 24px rgba(74, 36, 61, .08);
  }
  .reg-progress { grid-template-columns: 1fr; }
  .reg-step::after { display: none; }
  .vendor-registration-stage-two .vendor-hero {
    min-height: auto;
    padding-bottom: 0;
    background:
      linear-gradient(90deg, rgba(255,253,251,.98) 0 48%, rgba(255,253,251,.78) 68%, rgba(255,253,251,.22) 100%),
      var(--vendor-hero-image) right center / auto 100% no-repeat,
      #fff8f3;
  }
  .vendor-registration-stage-two .vendor-hero .wrap {
    padding-bottom: 28px;
  }
  .vendor-registration-stage-two .vendor-hero-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 460px;
    gap: 12px;
  }
  .vendor-registration-stage-two .vendor-hero-pills .feature-pill {
    min-width: 0;
  }
  .vendor-registration-stage-two .secure-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wizard-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 1180px) {
  .nav-actions .icon-btn {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand { font-size: 24px; }
  .nav-actions .location-pill, .nav-actions .icon-btn { display: none; }
  .page-title { font-size: 36px; }
  .stats-grid, .benefit-strip, .vendor-card-grid, .package-grid, .category-grid, .service-hero .stats-grid, .gallery-grid, .reason-row, .service-tile-grid { grid-template-columns: 1fr; }
  .vendor-media { grid-template-columns: 1fr; }
  .vendor-media .logo-box { min-height: 100px; }
  .category-card { grid-template-columns: 1fr; }
  .wide-cta { padding: 22px; }
  .hero-feature-row, .team-grid, .contact-info-row, .service-select-grid, .metric-row { grid-template-columns: 1fr; }
  .subpage-hero { background-position: center bottom; background-size: auto 48%; padding-bottom: 150px; }
  .service-choice { min-height: 62px; }
  .vendor-hero-actions, .form-actions { grid-template-columns: 1fr; flex-direction: column; }
  .join-card, .quote-card, .vendor-process-step, .safe-item { grid-template-columns: 1fr; text-align: center; }
  .events-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .events-feature {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 10px 8px;
  }
  .events-feature .stat-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .events-feature b {
    font-size: 11px;
    line-height: 1.2;
  }
  .events-feature span:last-child {
    font-size: 10px;
    line-height: 1.2;
  }
  .event-list-grid, .event-reason-grid { grid-template-columns: 1fr; }
  .event-list-card .body, .event-reason { grid-template-columns: 1fr; }
  .vendor-registration-stage-two .vendor-hero {
    background:
      linear-gradient(180deg, rgba(255,253,251,.98) 0 64%, rgba(255,253,251,.84) 100%),
      var(--vendor-hero-image) center bottom / auto 46% no-repeat,
      #fff8f3;
  }
  .vendor-registration-stage-two .vendor-hero .wrap {
    padding-bottom: 22px;
  }
  .vendor-registration-stage-two .vendor-hero-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }
  .vendor-registration-stage-two .vendor-hero-pills .feature-pill {
    min-height: 58px;
    grid-template-columns: 32px 1fr;
    gap: 8px;
    padding: 10px;
  }
  .vendor-registration-stage-two .vendor-hero-pills .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .vendor-registration-stage-two .vendor-hero-pills b {
    font-size: 11px;
    line-height: 1.2;
  }
  .vendor-registration-stage-two .secure-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }
  .vendor-registration-stage-two .secure-strip .safe-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 8px;
    text-align: left;
  }
  .vendor-registration-stage-two .secure-strip .vendor-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .vendor-registration-stage-two .secure-strip b {
    font-size: 11px;
  }
  .vendor-registration-stage-two .secure-strip span span {
    font-size: 10px;
    line-height: 1.35;
  }
}

/* Shared Muhrta site shell */
.topbar {
  z-index: 100;
  background: rgba(255, 253, 250, .94);
  box-shadow: 0 2px 15px rgba(0,0,0,.1);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  color: var(--plum);
  font: 32px/1 Georgia, "Times New Roman", serif;
}

.mark {
  width: 42px;
  height: 42px;
  position: relative;
  color: var(--plum);
  font: 34px/1 Georgia, serif;
  flex: 0 0 auto;
}

.mark::before {
  content: "M";
  position: absolute;
  inset: 4px 0 0;
}

.mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: 0;
  left: 18px;
  box-shadow: -8px 8px 0 -2px var(--gold), 8px 8px 0 -2px var(--gold);
}

.brand strong {
  font: 32px/1 Georgia, "Times New Roman", serif;
  color: var(--plum);
}

.brand span {
  display: block;
}

.brand span span {
  margin-top: 2px;
  color: var(--muted);
  font: 11px/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
}


footer {
  background: linear-gradient(135deg, #4a0d3d, #5f124d 55%, #3d0c34);
  color: #fff;
  padding: 50px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns:1.1fr repeat(3, 1fr) 1.6fr;
  gap: 34px;
}

.footer-brand strong {
  font: 32px/1 Georgia, serif;
}

.footer-logo-link {
  width: 150px;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 253, 250, .96);
}

.footer-logo {
  width: 126px;
  height: auto;
  object-fit: contain;
}

.footer-brand p, footer a, footer li {
  color: #f3d8e7;
  font-size: 15px;
  line-height: 26px;
}
.footer-brand p, footer a, footer li i {
  padding-right:5px;
}

footer h4 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social { display: flex; gap: 16px; margin-top: 18px; }
.newsletter {
  display: grid;
  grid-template-columns: 1fr 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 14px;
}
.newsletter input {
  border: 0;
  padding: 0 16px;
  font: inherit;
}
.newsletter button {
  border: 0;
  background: #f3f0ed;
  color: var(--plum);
  font-size: 24px;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.2);
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  color: #f0d4e4;
  font-size: 12px;
}

.profile-page {
  color: var(--text);
  background: var(--paper);
}

.profile-page .btn-pink {
  background: linear-gradient(180deg, #f1c76d, #d99b38);
  color: var(--plum);
}

.profile-page .stars,
.profile-page .rating-number {
  color: var(--gold);
}

.profile-page .stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0;
}

.profile-page .service-tile .emoji,
.profile-page .reason span {
  color: var(--plum);
}

.profile-page .footer {
  padding-bottom: 18px;
}

.profile-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.profile-title-line h1 {
  margin: 16px 0 6px;
  font-size: 28px;
}

.profile-partner-row {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 0 0 8px;
}

.profile-share-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid #ead5e3;
  border-radius: 999px;
  background: #fff;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.profile-share-mobile {
  display: none;
}

.profile-share-desktop {
  min-height: 30px;
  padding: 0 11px;
}

.profile-action-row {
  display: grid;
  grid-template-columns: minmax(260px, 300px);
  gap: 12px;
  align-items: stretch;
  justify-content: start;
}

.profile-actions .custom-pricing-cta,
.profile-actions .vendor-contact-cta {
  width: 100%;
  min-height: 46px;
  height: 46px;
  justify-content: center;
}

.profile-actions .custom-pricing-cta {
  white-space: nowrap;
  padding-inline: 24px;
  font-size: 16px;
}

.profile-actions .vendor-contact-cta {
  font-size: 15px;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.availability-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 34px 28px 28px;
  border: 1px solid rgba(216, 161, 58, .35);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(34, 11, 29, .28);
  text-align: center;
}

.availability-status-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #e9fbef;
  color: #19b96a;
  font-size: 25px;
}

.availability-dialog h2 {
  margin: 0 0 9px;
  color: var(--plum);
  font-size: 32px;
}

.availability-dialog p {
  margin: 0 0 20px;
  color: #5d505d;
  font-size: 14px;
  line-height: 1.55;
}

.contact-verify-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(34, 11, 29, .26);
}

.contact-step {
  display: none;
  padding: 34px 34px 28px;
}

.contact-step.active {
  display: block;
}

.contact-check {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
  color: #00a10d;
  font-size: 18px;
}

.contact-step h2 {
  margin: 0 0 28px;
  color: #4b4b4b;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.contact-step h2 strong {
  display: block;
  margin-top: 8px;
  color: #4b4b4b;
}

.contact-step p {
  margin: -16px 0 28px;
  color: #4b4b4b;
  font-size: 17px;
}

.contact-verify-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 26px;
}

.contact-verify-form.single {
  grid-template-columns: 1fr;
}

.contact-verify-form label {
  display: grid;
  gap: 8px;
  color: #e63232;
  font-size: 15px;
  font-weight: 700;
}

.contact-verify-form input {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 2px solid #ee3d42;
  border-radius: 0;
  outline: none;
  color: #333;
  font: 700 20px/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
}

.contact-verify-form input::placeholder {
  color: #9b9b9b;
}

.phone-input,
.otp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid #ee3d42;
}

.phone-input input,
.otp-row input {
  border-bottom: 0;
}

.flag {
  font-size: 22px;
}

.phone-input > span:not(.flag) {
  color: #4b4b4b;
  font-size: 21px;
  font-weight: 800;
}

.otp-row {
  border-bottom-color: #45c7e8;
}

.otp-row span {
  color: #4b4b4b;
  font-size: 19px;
  font-weight: 800;
}

.contact-primary {
  grid-column: 1 / -1;
  min-height: 68px;
  border: 0;
  background: #00a10d;
  color: #fff;
  cursor: pointer;
  font-size: 27px;
  font-weight: 900;
}

.contact-primary.pale {
  background: #94cf8e;
}

.contact-edit {
  position: absolute;
  top: 26px;
  right: 34px;
  border: 0;
  background: transparent;
  color: #8b8b8b;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.contact-reveal {
  text-align: center;
}

.contact-reveal h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #008f09;
}

.contact-reveal h2 span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #008f09;
  color: #fff;
  font-size: 16px;
}

.vendor-contact-detail {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 10px 0 26px;
  color: #4b4b4b;
  font-size: 20px;
}

.vendor-contact-detail i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #9b9b9b;
  color: #fff;
}

.vendor-contact-detail a {
  color: #00a10d;
  font-weight: 900;
}

.vendor-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 -34px;
  padding: 28px 20px;
  border-top: 1px solid #ddd;
  color: #4b4b4b;
  font-size: 19px;
  font-weight: 800;
}

.vendor-consent input {
  width: 22px;
  height: 22px;
  accent-color: #e8327a;
}

.report-issue {
  margin-top: 28px;
  border: 0;
  background: transparent;
  color: #f01f16;
  cursor: pointer;
  font-size: 20px;
}

.hidden {
  display: none !important;
}

.enquiry-modal.open {
  display: flex;
}

.enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 14, 30, .58);
  backdrop-filter: blur(6px);
}

.enquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(720px, calc(100vh - 42px));
  overflow-y: auto;
  border: 1px solid #d8a13a;
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 8%, rgba(241, 199, 109, .24), transparent 28%),
    #fffdfb;
  box-shadow: 0 24px 70px rgba(35, 14, 30, .30);
  padding: 28px;
}

.enquiry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
}

.enquiry-dialog h2 {
  margin: 0 44px 8px 0;
  font-size: 34px;
}

.enquiry-dialog > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: #2e2130;
  outline: none;
  padding: 0 13px;
  font: 650 14px/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
}

.enquiry-form textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 161, 58, .16);
}

.enquiry-full,
.enquiry-submit {
  grid-column: 1 / -1;
}

.enquiry-full span {
  color: var(--muted);
  font-weight: 750;
}

.enquiry-submit {
  min-height: 46px;
  margin-top: 4px;
}

.review-form {
  display: grid;
  gap: 18px;
}

.review-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 2px;
}

.review-stepper span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f6edf4;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
}

.review-stepper span.active {
  background: var(--plum);
  color: #fff;
}

.review-step {
  display: none;
}

.review-step.active {
  display: block;
}

.review-step h3 {
  margin: 0 0 8px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.review-step-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.rating-criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-form .enquiry-form label {
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

.rating-criterion {
  display: grid;
  gap: 12px;
}

.rating-criterion > span {
  color: #231b24;
  font-size: 17px;
  font-weight: 900;
}

.star-input {
  display: flex;
  gap: 12px;
}

.star-input button {
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  color: #d8d8d8;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  padding: 0;
  transition: color .18s ease, transform .18s ease;
}

.star-input button.active,
.star-input button:hover,
.star-input button:hover ~ button.active {
  color: #f4b400;
}

.star-input button:hover {
  transform: translateY(-1px);
}

.review-upload-field {
  position: relative;
  gap: 10px;
}

.review-upload-field small {
  color: #342b35;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.review-upload-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.review-upload-box {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  border: 1.5px solid #d6294d;
  border-radius: 10px;
  background: #fde6e8;
  color: #211721;
  text-align: center;
  cursor: pointer;
}

.review-upload-box i {
  font-size: 32px;
  color: #211721;
}

.review-upload-box strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.review-upload-box em {
  display: block;
  color: #342b35;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.vendor-reply {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #efd9b6;
  border-radius: 8px;
  background: #fff8ef;
  color: #514454;
  font-size: 12px;
  line-height: 1.45;
}

.vendor-reply b {
  display: block;
  margin-bottom: 4px;
  color: var(--plum);
  font-size: 12px;
}

.thank-you-shell {
  min-height: 54vh;
  display: grid;
  place-items: center;
  padding: 70px 20px;
}

.thank-you-panel {
  max-width: 760px;
  width: 100%;
  text-align: center;
}

.thank-you-panel h1 {
  margin: 16px 0 8px;
  color: var(--plum);
  font-size: clamp(42px, 7vw, 72px);
}

.thank-you-panel p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.review-form-actions {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
}

.review-form-actions .review-submit {
  display: none;
}

.review-form.ready-to-submit [data-review-next] {
  display: none;
}

.review-form.ready-to-submit .review-submit {
  display: inline-flex;
}

@media (max-width: 980px) {
  .nav {
    min-height: 62px;
    display: flex;
    grid-template-columns: none;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 28px;
  }

  .brand .mark {
    width: 36px;
    height: 36px;
    font-size: 30px;
  }

  .navlinks,
  .nav-links,
  .login-wrap {
    display: none;
  }

  .nav-actions {
    justify-content: end;
    margin-left: auto;
    gap: 8px;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
  }

  .standard-header .nav {
    min-height: 108px;
    padding: 9px 0;
  }

  .brand-logo {
    height: 88px;
    max-width: 190px;
  }

  .mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 250, .98);
    box-shadow: 0 18px 34px rgba(74, 36, 61, .16);
  }

  .topbar.menu-open .mobile-panel {
    display: block;
  }

  .mobile-panel-inner {
    display: grid;
    gap: 8px;
    padding: 12px 0 16px;
  }

  .mobile-panel a,
  .mobile-panel summary {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: #342234;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
  }

  .mobile-panel summary::-webkit-details-marker {
    display: none;
  }

  .mobile-panel summary::after {
    content: "\f078";
    font: var(--fa-font-solid);
    color: var(--gold);
  }

  .mobile-panel details[open] summary::after {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    display: grid;
    gap: 6px;
    padding: 8px 0 4px 14px;
  }

  .mobile-submenu a {
    min-height: 36px;
    background: #fff8f2;
    font-size: 13px;
  }

  .mobile-login-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-logo-link {
    width: 136px;
    min-height: 64px;
  }

  .footer-logo {
    width: 114px;
  }

  .copyright {
    justify-content: center;
    text-align: center;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 58px;
    gap: 8px;
  }

  .brand {
    font-size: 23px;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand span span {
    display: none;
  }

  .brand .mark {
    width: 32px;
    height: 32px;
    font-size: 27px;
  }

  .nav .btn {
    min-height: 38px;
    min-width: auto;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .standard-header .nav {
    min-height: 92px;
    padding: 8px 0;
  }

  .brand-logo {
    height: 74px;
    max-width: 160px;
  }

  .mobile-panel {
    max-height: calc(100vh - 58px);
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .footer-grid > div:not(.footer-brand):not(:last-child) {
    min-width: 0;
  }

  .footer h4 {
    font-size: 12px;
  }

  .footer p,
  .footer li {
    font-size: 11px;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-logo-link {
    margin-inline: auto;
  }

  .vendor-registration-stage-two .vendor-hero {
    min-height: auto;
    padding-bottom: 0;
    background:
      linear-gradient(180deg, rgba(255,253,251,.98) 0 64%, rgba(255,253,251,.84) 100%),
      var(--vendor-hero-image) center bottom / auto 46% no-repeat,
      #fff8f3;
  }

  .vendor-registration-stage-two .vendor-hero .wrap {
    padding-bottom: 22px;
  }

  .vendor-registration-stage-two .vendor-hero-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .vendor-registration-stage-two .vendor-hero-pills .feature-pill {
    min-width: 0;
    min-height: 58px;
    grid-template-columns: 32px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .vendor-registration-stage-two .vendor-hero-pills .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .vendor-registration-stage-two .vendor-hero-pills b {
    font-size: 11px;
    line-height: 1.2;
  }

  .vendor-registration-stage-two .secure-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .vendor-registration-stage-two .secure-strip .safe-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 8px;
    text-align: left;
  }

  .vendor-registration-stage-two .secure-strip .vendor-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .vendor-registration-stage-two .secure-strip b {
    font-size: 11px;
  }

  .vendor-registration-stage-two .secure-strip span span {
    font-size: 10px;
    line-height: 1.35;
  }

  .copyright {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
  }

  .profile-action-row {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .home-review-layout {
    grid-template-columns: 1fr;
  }

  .review-feed-head,
  .review-story-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-criteria,
  .review-form-actions,
  .contact-verify-form {
    grid-template-columns: 1fr;
  }

  .contact-step {
    padding: 30px 20px 24px;
  }

  .contact-step h2 {
    font-size: 21px;
  }

  .contact-primary {
    min-height: 58px;
    font-size: 22px;
  }

  .vendor-consent {
    margin-inline: -20px;
    font-size: 16px;
  }

  .enquiry-modal {
    padding: 14px;
  }

  .enquiry-dialog {
    padding: 24px 18px;
  }

  .enquiry-dialog h2 {
    font-size: 29px;
  }
}

@media (max-width: 560px) {
  .profile-page .profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .profile-page .profile-stats .stat {
    min-height: 74px;
    gap: 9px;
    padding: 12px 10px;
  }

  .profile-page .profile-stats .stat-icon {
    width: 34px;
    height: 34px;
    font-size: 17px;
    flex: 0 0 34px;
  }

  .profile-page .profile-stats .stat b {
    font-size: 16px;
  }

  .profile-page .profile-stats .stat span span {
    font-size: 10px;
  }

  .profile-page .service-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .profile-page .service-tile {
    min-height: 92px;
    padding: 11px 8px;
    font-size: 11px;
  }

  .profile-page .service-tile .emoji {
    margin-bottom: 5px;
    font-size: 22px;
  }

  .profile-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .profile-page .gallery-grid .photo {
    height: auto;
    aspect-ratio: 1.25 / 1;
  }

  .profile-page .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .profile-page .tabs {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .profile-page .tabs span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .profile-page .reason-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .profile-page .reason {
    min-height: 88px;
    padding: 12px 8px;
    display: grid;
    place-items: center;
    align-content: center;
    font-size: 11px;
  }

  .profile-page .reason span {
    margin-bottom: 5px;
    font-size: 20px;
  }
}

.search-page main {
  background:
    radial-gradient(circle at 8% 10%, rgba(216, 161, 58, .08), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, #fff 46%, #fffaf6 100%);
}

.search-page .page-title {
  margin-top: 18px;
}

.search-page .results-search-bar {
  align-items: end;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.35fr auto;
  gap: 14px;
  margin: 18px 0;
  padding: 14px;
}

.search-page .results-search-bar .btn {
  min-height: 40px;
  min-width: 122px;
}

.search-page .results-location-input {
  font: 750 12px/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
}

.search-page .main-grid {
  grid-template-columns: 282px minmax(0, 1fr);
}

.search-page .listing-filters {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.search-page .filter-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.search-page .filter-head h2 {
  color: var(--plum);
  font-size: 28px;
  line-height: 1;
  margin: 0;
}

.search-page .filter-head button {
  border: 0;
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.search-page .filter-group {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding: 15px 0;
}

.search-page .filter-group:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.search-page .filter-group h3 {
  color: #281d29;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}

.search-page .filter-group label {
  align-items: center;
  color: #655866;
  display: flex;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.search-page .filter-group input {
  accent-color: var(--plum);
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.search-page .filter-apply-desktop {
  width: 100%;
  margin-top: 8px;
}

.search-page .filter-bar {
  align-items: end;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.search-page .mobile-filter-launch {
  display: none;
  margin: 14px 0 0;
}

.search-page .select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: #2e2130;
}

.search-page .vendor-row {
  align-items: stretch;
}

.search-page .vendor-info {
  min-width: 0;
  padding: 4px 0;
}

.search-page .vendor-info p {
  margin: 5px 0;
}

.search-page .vendor-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.search-page .price-box {
  display: grid;
  align-content: center;
}

.search-page .price-box .btn {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  justify-content: center;
}

.search-page .plan-card .btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.search-page .footer {
  margin-top: 0;
}

.search-page .search-filter-dialog {
  width: min(100%, 520px);
}

.search-page .mobile-filter-form {
  display: grid;
  gap: 13px;
}

.search-page .mobile-filter-form .btn {
  margin-top: 5px;
}

.search-page .mobile-toggle-filter {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 12px;
}

@media (max-width: 1180px) {
  .search-page .filter-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .search-page .vendor-row {
    grid-template-columns: 180px 1fr 132px;
  }

  .search-page .vendor-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .search-page .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-page .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .search-page .results-search-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-page .results-search-bar .btn {
    grid-column: 1 / -1;
  }

  .search-page .main-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .search-page .listing-filters {
    display: none;
  }

  .search-page .vendor-row {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .search-page .price-box {
    border-left: 0;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0 0;
  }

  .search-page .price-box .small,
  .search-page .price-box .price {
    grid-column: 1 / -1;
  }

  .search-page .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .search-page .mobile-filter-launch {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 120;
    width: auto;
    box-shadow: 0 10px 24px rgba(74, 36, 61, .16);
  }

  .search-page .filter-bar {
    display: none;
  }

  .search-page main > .wrap:first-child .stats-grid {
    display: none;
  }

  .search-page {
    padding-bottom: 72px;
  }
}

@media (max-width: 560px) {
  .search-page .wrap {
    width: min(100% - 28px, 760px);
  }

  .search-page .page-title {
    font-size: 34px;
    line-height: 1.05;
  }

  .search-page .subcopy {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .search-page .results-search-bar {
    grid-template-columns: 1fr;
    gap: 11px;
    margin: 14px 0 10px;
    padding: 13px;
  }

  .search-page .results-search-bar .btn {
    width: 100%;
  }

  .search-page .stats-grid {
    gap: 10px;
  }

  .search-page .mobile-filter-launch {
    margin: 10px 0 0;
    min-height: 44px;
  }

  .search-page .stat {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    min-height: 82px;
    padding: 12px 10px;
  }

  .search-page .stat-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .search-page .stat b {
    font-size: clamp(12px, 3.2vw, 16px);
    line-height: 1.1;
    white-space: normal;
  }

  .search-page .stat:nth-child(4) b {
    font-size: clamp(10px, 2.9vw, 13px);
  }

  .search-page .stat span span {
    font-size: 9.5px;
    line-height: 1.15;
    white-space: normal;
  }

  .search-page .results-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .search-page .vendor-row {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .search-page .vendor-media {
    grid-template-columns: 1fr 92px;
    min-height: 132px;
  }

  .search-page .vendor-info h3 {
    font-size: 18px;
  }

  .search-page .vendor-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0;
  }

  .search-page .vendor-facts span {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 8px;
  }

  .search-page .price-box {
    align-items: center;
    grid-template-columns: minmax(0, .9fr) minmax(158px, 1.1fr);
    grid-template-rows: repeat(2, 38px);
    gap: 8px 12px;
    min-height: 92px;
  }

  .search-page .price-box .btn {
    min-height: 38px;
    margin-top: 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .search-page .price-box > .small,
  .search-page .price-box > .price {
    grid-column: 1;
  }

  .search-page .price-box > .small:first-child {
    grid-row: 1;
    align-self: end;
  }

  .search-page .price-box > .price {
    grid-row: 1 / span 2;
    align-self: center;
    padding-top: 10px;
    font-size: 24px;
    line-height: 1;
  }

  .search-page .price-box > .small:nth-of-type(2) {
    grid-row: 2;
    align-self: start;
    padding-top: 20px;
  }

  .search-page .price-box > .btn-primary {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
  }

  .search-page .price-box > [data-enquiry-trigger] {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
  }

  .search-page .price-box > [data-contact-trigger] {
    display: none !important;
  }

  .search-page .benefit-strip {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .search-page .horizontal-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .search-page .mini-product {
    grid-template-columns: 94px 1fr;
    min-width: 0;
  }

  .search-page .faq-contact {
    gap: 14px;
  }

  .search-page .search-filter-dialog {
    width: calc(100vw - 28px);
    padding: 24px 18px;
  }

  .search-page .search-filter-dialog h2 {
    font-size: 30px;
    line-height: 1.05;
  }
}

.inline-link-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.profile-page .profile-work-tabs span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--plum);
  font-weight: 850;
  padding: 8px 12px;
}

.profile-page .profile-work-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
  font: 850 12px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  padding: 8px 12px;
}

.profile-page .profile-work-tabs span:first-child,
.profile-page .profile-work-tabs button.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.profile-page .gallery-grid .photo.hidden {
  display: none;
}

.profile-page .pricing-grid {
  align-items: stretch;
}

.profile-page .pricing-card {
  display: flex;
  flex-direction: column;
}

.profile-page .pricing-card ul {
  flex: 1;
}

.profile-page .pricing-card .btn {
  margin-top: auto;
}

.profile-page .service-tile-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .profile-page .service-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-modal-dialog,
.photo-modal-dialog {
  max-height: min(86vh, 760px);
  overflow-y: auto;
}

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.all-service-card {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 72px;
  padding: 14px;
}

.all-service-card i {
  align-items: center;
  background: #fff3f7;
  border-radius: 50%;
  color: var(--pink);
  display: inline-flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.all-service-card span {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}

.photo-modal-tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  overflow-x: auto;
  padding-bottom: 2px;
}

.photo-modal-tabs button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum);
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 850;
  padding: 9px 14px;
}

.photo-modal-tabs button.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.photo-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.photo-modal-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.photo-modal-item.hidden {
  display: none;
}

.photo-modal-item img {
  aspect-ratio: 1.35 / 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.photo-modal-item figcaption {
  color: var(--plum);
  font-size: 12px;
  font-weight: 850;
  padding: 9px 10px;
}

@media (max-width: 560px) {
  .profile-page .profile-stats .stat {
    align-items: center;
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    min-height: 88px;
    overflow: hidden;
    padding: 14px 16px;
  }

  .profile-page .profile-stats .stat > span:last-child {
    display: block;
    min-width: 0;
  }

  .profile-page .profile-stats .stat-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    font-size: 20px;
  }

  .profile-page .profile-stats .stat b {
    display: block;
    font-size: 15px;
    line-height: 1.1;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .profile-page .profile-stats .stat:nth-child(3) b {
    font-size: clamp(12px, 3.7vw, 15px);
    white-space: nowrap;
  }

  .profile-page .profile-stats .stat span span {
    display: block;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
  }

  .profile-page .section-head .inline-link-button {
    align-self: flex-start;
  }

  .profile-page .profile-work-tabs span,
  .profile-page .profile-work-tabs button {
    flex: 0 0 auto;
    font-size: 11px;
    white-space: nowrap;
  }

  .service-modal-dialog,
  .photo-modal-dialog {
    width: calc(100vw - 28px);
  }

  .all-services-grid,
  .photo-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .all-service-card {
    align-items: flex-start;
    flex-direction: column;
    min-height: 104px;
    padding: 12px;
  }
}

.profile-page .service-modal-dialog,
.profile-page .photo-modal-dialog {
  width: min(100%, 760px) !important;
  padding: 28px !important;
}

.profile-page .service-modal-dialog .all-services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 18px !important;
}

.profile-page .service-modal-dialog .all-service-card {
  align-items: center !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  display: flex !important;
  gap: 10px !important;
  min-height: 74px !important;
  padding: 14px !important;
}

.profile-page .service-modal-dialog .all-service-card i {
  align-items: center !important;
  background: #fff3f7 !important;
  border-radius: 50% !important;
  color: var(--pink) !important;
  display: inline-flex !important;
  flex: 0 0 36px !important;
  font-size: 16px !important;
  height: 36px !important;
  justify-content: center !important;
  width: 36px !important;
}

.profile-page .service-modal-dialog .all-service-card span {
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
}

.profile-page .photo-modal-dialog .photo-modal-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 16px 0 !important;
}

.profile-page .photo-modal-dialog .photo-modal-tabs button {
  appearance: none;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  color: var(--plum) !important;
  cursor: pointer;
  font: 850 13px/1 Inter, ui-sans-serif, system-ui, sans-serif !important;
  padding: 9px 14px !important;
}

.profile-page .photo-modal-dialog .photo-modal-tabs button.active {
  background: var(--plum) !important;
  border-color: var(--plum) !important;
  color: #fff !important;
}

.profile-page .photo-modal-dialog .photo-modal-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.profile-page .photo-modal-dialog .photo-modal-item {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 20px rgba(74, 36, 61, .08) !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.profile-page .photo-modal-dialog .photo-modal-item img {
  aspect-ratio: 1.28 / 1 !important;
  display: block !important;
  height: auto !important;
  object-fit: cover !important;
  width: 100% !important;
}

.profile-page .photo-modal-dialog .photo-modal-item figcaption {
  color: var(--plum) !important;
  font: 850 12px/1.2 Inter, ui-sans-serif, system-ui, sans-serif !important;
  padding: 9px 10px !important;
}

@media (max-width: 560px) {
  .profile-page .service-modal-dialog,
  .profile-page .photo-modal-dialog {
    width: calc(100vw - 28px) !important;
    padding: 22px 18px !important;
  }

  .profile-page .service-modal-dialog h2,
  .profile-page .photo-modal-dialog h2 {
    font-size: 30px !important;
    line-height: 1.05 !important;
  }

  .profile-page .service-modal-dialog .all-services-grid,
  .profile-page .photo-modal-dialog .photo-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .profile-page .service-modal-dialog .all-service-card {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 9px !important;
    min-height: 108px !important;
    padding: 12px !important;
  }

  .profile-page .service-modal-dialog .all-service-card span {
    font-size: 12px !important;
  }

  .profile-page .photo-modal-dialog .photo-modal-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
  }

  .profile-page .photo-modal-dialog .photo-modal-tabs button {
    flex: 0 0 auto !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}

@media (max-width: 560px) {
  .profile-page .profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .profile-page .profile-stats .stat {
    box-sizing: border-box;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 9px !important;
    min-width: 0;
    min-height: 82px !important;
    padding: 12px 10px !important;
  }

  .profile-page .profile-stats .stat-icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
    font-size: 16px !important;
  }

  .profile-page .profile-stats .stat b {
    max-width: 100%;
    font-size: clamp(11px, 3.05vw, 14px) !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  .profile-page .profile-stats .stat:nth-child(3) b {
    font-size: clamp(10px, 2.9vw, 13px) !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
  }

  .profile-page .profile-stats .stat span span {
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }
}

.caterer-profile-page .caterer-logo {
  align-items: center;
  background: #fffaf2;
  border: 1px solid #ead7b2;
  display: flex;
  justify-content: center;
}

.caterer-profile-page .caterer-logo span {
  border: 2px solid #d7a241;
  border-radius: 50%;
  color: #b57a17;
  display: grid;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 900;
  height: 78px;
  place-items: center;
  width: 78px;
}

.caterer-profile-page {
  padding-bottom: 76px;
}

.caterer-profile-page .caterer-hero-card .profile-cover {
  background: #220f1c;
  height: 260px;
}

.caterer-profile-page .caterer-hero-card .profile-cover img {
  filter: saturate(1.08) contrast(1.04);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  width: 100%;
}

.caterer-profile-page .caterer-hero-card .profile-summary {
  gap: 18px;
  grid-template-columns: 150px minmax(0, 1fr) 300px;
  min-height: 174px;
  padding-bottom: 28px;
}

.caterer-profile-page .caterer-hero-card .profile-logo {
  height: 140px;
  margin-top: -76px;
  width: 140px;
}

.caterer-profile-page .caterer-price-panel {
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  margin-top: -124px;
  padding: 22px;
  position: relative;
  z-index: 2;
}

.caterer-profile-page .caterer-price-panel p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin: 0;
}

.caterer-profile-page .caterer-price-panel h2 {
  color: var(--pink);
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 4px;
}

.caterer-profile-page .caterer-price-panel h2 span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.caterer-profile-page .caterer-price-panel .btn {
  min-height: 42px;
  width: 100%;
}

.caterer-profile-page .top-compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.caterer-profile-page .top-compliance-badges span {
  align-items: center;
  background: #fffaf3;
  border: 1px solid #eadbc7;
  border-radius: 999px;
  color: #4e404d;
  display: inline-flex;
  font-size: 11px;
  font-weight: 850;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  white-space: nowrap;
}

.caterer-profile-page .top-compliance-badges i {
  color: var(--gold);
}

.caterer-profile-page .partner-badge {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  padding: 5px 10px;
}

.caterer-profile-page .vendor-address {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 750;
  gap: 7px;
  margin: 4px 0 8px;
}

.caterer-profile-page .vendor-address i {
  color: var(--pink);
}

.caterer-profile-page .vendor-rating-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.caterer-profile-page .food-type-badge {
  align-items: center;
  background: #fff3f7;
  border: 1px solid #f0cedd;
  border-radius: 999px;
  color: var(--plum);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 6px;
  padding: 5px 10px;
}

.caterer-profile-page .availability-form-dialog {
  width: min(100%, 620px);
}

.caterer-profile-page .availability-popup-form {
  grid-template-columns: 1fr;
}

.caterer-profile-page .caterer-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.caterer-profile-page .caterer-stats .stat {
  min-width: 0;
}

.caterer-profile-page .caterer-stats .stat b {
  font-size: clamp(15px, 1.25vw, 18px);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.caterer-profile-page .caterer-stats .stat span span {
  font-size: 10.5px;
  line-height: 1.1;
}

.caterer-profile-page .profile-two-column {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  margin-top: 12px;
}

.caterer-profile-page .caterer-about-card,
.caterer-profile-page .cuisine-card,
.caterer-profile-page .caterer-pricing-section,
.caterer-profile-page .caterer-work-section,
.caterer-profile-page .caterer-awards {
  padding: 20px;
}

.caterer-profile-page .caterer-about-content {
  align-items: flex-start;
  display: grid;
  gap: 18px;
  grid-template-columns: 156px 1fr;
}

.caterer-profile-page .caterer-about-content img {
  aspect-ratio: 1 / 1.28;
  border: 4px solid #fff7ea;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(76, 15, 64, .12);
  height: 150px;
  object-fit: cover;
  width: 150px;
}

.caterer-profile-page .cuisine-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.caterer-profile-page .cuisine-grid button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font-weight: 850;
  gap: 8px;
  min-height: 72px;
  place-items: center;
}

.caterer-profile-page .cuisine-grid i {
  color: var(--gold);
  font-size: 22px;
}

.caterer-profile-page .caterer-package-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.caterer-profile-page .caterer-package-grid .pricing-card {
  min-height: 330px;
  padding: 22px;
}

.caterer-profile-page .caterer-package-grid .pricing-card h3 {
  min-height: 38px;
}

.caterer-profile-page .caterer-package-grid .pricing-card > b {
  color: var(--plum);
  display: block;
  font-size: 28px;
  margin: 6px 0 10px;
}

.caterer-profile-page .caterer-package-grid .pricing-card > b span {
  color: var(--muted);
  font-size: 12px;
}

.caterer-profile-page .caterer-package-grid .pricing-card .btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}

.caterer-profile-page .package-note {
  margin: 14px 0 0;
  text-align: center;
}

.caterer-profile-page .caterer-gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.caterer-profile-page .caterer-gallery .photo img {
  aspect-ratio: 1.55 / 1;
}

.caterer-profile-page .caterer-info-grid,
.caterer-profile-page .caterer-compliance-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.caterer-profile-page .caterer-compliance-grid {
  grid-template-columns: 1fr 1fr;
}

.caterer-profile-page .caterer-review-section {
  align-items: stretch;
  margin-top: 12px;
}

.caterer-profile-page .caterer-review-section .rating-box {
  position: static;
}

.caterer-profile-page .caterer-rating {
  display: flex;
  flex-direction: column;
}

.caterer-profile-page .caterer-rating .write-review-btn {
  margin-top: auto;
}

.caterer-profile-page .caterer-review-feed {
  display: flex;
  flex-direction: column;
}

.caterer-profile-page .caterer-rating,
.caterer-profile-page .caterer-review-feed,
.caterer-profile-page .caterer-compliance,
.caterer-profile-page .caterer-policies {
  padding: 20px;
}

.caterer-profile-page .caterer-compliance ul,
.caterer-profile-page .caterer-policies ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.caterer-profile-page .caterer-compliance li,
.caterer-profile-page .caterer-policies li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 24px 1fr auto;
  padding-bottom: 9px;
}

.caterer-profile-page .caterer-policies li {
  grid-template-columns: 1fr auto;
}

.caterer-profile-page .caterer-compliance i {
  color: var(--plum);
}

.caterer-profile-page .caterer-compliance b {
  color: #159447;
  font-size: 11px;
}

.caterer-profile-page .caterer-policies b {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.caterer-profile-page .policy-more-btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  margin-top: 16px;
  text-decoration: none;
  width: 100%;
}

.caterer-profile-page .caterer-availability-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.caterer-profile-page .caterer-why-mini {
  margin-top: 12px;
  padding: 20px;
}

.caterer-profile-page .caterer-why-mini .reason-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.caterer-profile-page .award-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.caterer-profile-page .award-grid div {
  align-items: center;
  background: #fff9ef;
  border: 1px solid #f0dcc0;
  border-radius: 8px;
  display: grid;
  gap: 5px;
  min-height: 110px;
  padding: 14px;
  text-align: center;
}

.caterer-profile-page .award-grid i {
  color: var(--gold);
  font-size: 30px;
}

.caterer-profile-page .award-grid span {
  color: var(--muted);
  font-size: 12px;
}

.caterer-profile-page .vendor-faq-event {
  margin-top: 12px;
  margin-bottom: 20px;
}

.caterer-profile-page .vendor-faq-event .faq-panel,
.caterer-profile-page .vendor-faq-event .contact-panel {
  min-height: 100%;
}

.caterer-profile-page .vendor-faq-event .faq-panel {
  padding: 34px 34px 30px;
  border: 0;
  background: #f3f7fa;
  box-shadow: none;
}

.caterer-profile-page .vendor-faq-event .faq-kicker {
  position: relative;
  margin: 0 0 18px;
  padding-left: 48px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.caterer-profile-page .vendor-faq-event .faq-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 1px;
  background: var(--plum);
}

.caterer-profile-page .vendor-faq-event .faq-panel h2 {
  margin-bottom: 28px;
  color: #211721;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.1;
}

.caterer-profile-page .vendor-faq-event .faq-grid.vertical {
  gap: 0;
}

.caterer-profile-page .vendor-faq-event .faq-item {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  padding: 22px 38px 22px 0;
  border-top: 1px solid #d9dde1;
  background: transparent;
}

.caterer-profile-page .vendor-faq-event .faq-item:last-child {
  border-bottom: 1px solid #d9dde1;
}

.caterer-profile-page .vendor-faq-event .faq-item::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 22px;
  color: var(--plum);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.caterer-profile-page .vendor-faq-event .faq-item.is-open::after {
  content: "×";
}

.caterer-profile-page .vendor-faq-event .faq-item b {
  color: #211721;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.25;
}

.caterer-profile-page .vendor-faq-event .faq-item span {
  display: none;
  max-width: 760px;
  color: #6b606b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.caterer-profile-page .vendor-faq-event .faq-item.is-open span {
  display: block;
  padding-top: 10px;
}

.caterer-profile-page .vendor-faq-event .contact-form {
  grid-template-columns: 1fr 1fr;
}

.caterer-profile-page .vendor-faq-event .contact-form label:nth-child(3),
.caterer-profile-page .vendor-faq-event .contact-form label:nth-child(6),
.caterer-profile-page .vendor-faq-event .contact-form .btn-primary {
  grid-column: 1 / -1;
}

.caterer-profile-page .caterer-closing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.25fr .72fr;
  margin-bottom: 26px;
  padding: 24px;
}

.caterer-profile-page .caterer-closing-single {
  grid-template-columns: 1fr;
}

.caterer-profile-page .caterer-closing-single article {
  max-width: none;
}

.caterer-profile-page .caterer-closing-grid h3 {
  color: var(--plum);
  margin: 0 0 12px;
}

.caterer-profile-page .caterer-closing-grid p {
  color: #4b404b;
  line-height: 1.6;
  margin: 0;
}

.caterer-profile-page .mini-metric-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.caterer-profile-page .mini-metric-row span,
.caterer-profile-page .process-line span {
  align-items: center;
  color: var(--muted);
  display: grid;
  font-size: 11px;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.caterer-profile-page .mini-metric-row i,
.caterer-profile-page .process-line i {
  align-items: center;
  background: #fff3f7;
  border-radius: 50%;
  color: var(--plum);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.caterer-profile-page .mini-metric-row b,
.caterer-profile-page .process-line b {
  color: var(--ink);
  display: block;
}

.caterer-profile-page .process-line {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
}

.caterer-profile-page .follow-row {
  display: flex;
  gap: 14px;
  margin: 20px 0 18px;
}

.caterer-profile-page .follow-row a {
  align-items: center;
  background: var(--plum);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  width: 42px;
}

.caterer-sticky-bar {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -10px 30px rgba(76, 15, 64, .08);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  left: 0;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  position: fixed;
  right: 0;
  z-index: 30;
}

.caterer-sticky-bar button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
}

.caterer-sticky-bar .whatsapp {
  background: #10a846;
  color: #fff;
}

.caterer-sticky-bar .quote {
  background: var(--plum);
  color: #fff;
}

.caterer-detail-page .detail-hero {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 18px 0;
  padding: 28px;
}

.caterer-detail-page .detail-hero h1 {
  color: var(--plum);
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 8px;
}

.caterer-detail-page .detail-hero p {
  color: var(--muted);
  margin: 0;
}

.caterer-detail-page .detail-package-grid,
.caterer-detail-page .policy-detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.caterer-detail-page .policy-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.caterer-detail-page .detail-package,
.caterer-detail-page .policy-detail-grid .card,
.caterer-detail-page .detail-note {
  padding: 24px;
}

.caterer-detail-page .detail-package {
  display: flex;
  flex-direction: column;
  position: relative;
}

.caterer-detail-page .detail-package h2,
.caterer-detail-page .policy-detail-grid h2,
.caterer-detail-page .detail-note h2 {
  color: var(--plum);
  margin: 0 0 10px;
}

.caterer-detail-page .detail-package strong {
  color: var(--plum);
  font-size: 28px;
  margin: 4px 0 10px;
}

.caterer-detail-page .detail-package p,
.caterer-detail-page .detail-note p {
  color: var(--muted);
  line-height: 1.55;
}

.caterer-detail-page .detail-package ul,
.caterer-detail-page .policy-detail-grid ul {
  color: #4e444f;
  line-height: 1.8;
  padding-left: 18px;
}

@media (max-width: 1120px) {
  .caterer-profile-page .caterer-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .caterer-info-grid,
  .caterer-profile-page .caterer-compliance-grid,
  .caterer-profile-page .caterer-availability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .caterer-why-mini {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .caterer-profile-page .caterer-hero-card .profile-summary {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .caterer-profile-page .caterer-price-panel {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .caterer-profile-page .profile-two-column,
  .caterer-profile-page .caterer-info-grid,
  .caterer-profile-page .caterer-compliance-grid,
  .caterer-profile-page .caterer-availability-grid,
  .caterer-profile-page .caterer-closing-grid {
    grid-template-columns: 1fr;
  }

  .caterer-profile-page .caterer-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .caterer-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .caterer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .caterer-why-mini .reason-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .caterer-detail-page .detail-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .caterer-detail-page .detail-package-grid,
  .caterer-detail-page .policy-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .caterer-profile-page .caterer-hero-card .profile-cover {
    height: 190px;
  }

  .caterer-profile-page .caterer-hero-card .profile-summary {
    align-items: start;
    gap: 8px 10px;
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 18px 14px;
  }

  .caterer-profile-page .caterer-hero-card .profile-logo {
    align-self: center;
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 60px;
    margin-top: 0;
    width: 60px;
  }

  .caterer-profile-page .caterer-hero-card .profile-summary > div:nth-child(2) {
    display: contents;
  }

  .caterer-profile-page .caterer-hero-card .profile-title-line {
    align-items: center;
    display: flex;
    gap: 8px;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 30px;
  }

  .caterer-profile-page .caterer-hero-card .vendor-address {
    align-self: start;
    grid-column: 2;
    grid-row: 2;
    font-size: 11px;
    line-height: 1.2;
    margin: 0;
  }

  .caterer-profile-page .caterer-hero-card .profile-title-line h1 {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.05;
    margin: 0;
    min-width: 0;
  }

  .caterer-profile-page .caterer-hero-card .profile-partner-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 6px 0 0;
  }

  .caterer-profile-page .caterer-hero-card .profile-partner-row .partner-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .caterer-profile-page .caterer-hero-card .profile-partner-row .verified {
    font-size: 10px;
    padding: 4px 8px;
  }

  .caterer-profile-page .caterer-hero-card .profile-share-mobile {
    display: none;
  }

  .caterer-profile-page .caterer-hero-card .profile-share-desktop {
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 10px;
    min-height: 28px;
    padding: 5px 8px;
  }

  .caterer-profile-page .caterer-hero-card .profile-partner-row + p {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    grid-column: 1 / -1;
    grid-row: 4;
    margin: -2px 0 0;
  }

  .caterer-profile-page .caterer-hero-card .top-compliance-badges {
    grid-column: 1 / -1;
    grid-row: 5;
    margin-top: 2px;
  }

  .caterer-profile-page .top-compliance-badges span {
    flex: 1 1 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .caterer-profile-page .caterer-logo span {
    font-size: 17px;
    height: 40px;
    width: 40px;
  }

  .caterer-profile-page .caterer-price-panel {
    padding: 16px;
  }

  .caterer-profile-page .caterer-stats {
    display: none !important;
  }

  .caterer-profile-page .caterer-about-content {
    justify-items: center;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .caterer-profile-page .caterer-about-content img {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    height: 104px;
    width: 104px;
  }

  .caterer-profile-page .caterer-about-content p {
    font-size: 12px;
    line-height: 1.55;
  }

  .caterer-profile-page .caterer-about-content .chips {
    justify-content: center;
  }

  .caterer-profile-page .cuisine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .caterer-package-grid {
    grid-template-columns: 1fr;
  }

  .caterer-profile-page .caterer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-profile-page .caterer-gallery .photo img {
    aspect-ratio: 1.1 / 1;
  }

  .caterer-profile-page .caterer-policies li {
    align-items: flex-start;
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .caterer-profile-page .caterer-policies b {
    text-align: left;
  }

  .caterer-profile-page .award-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .caterer-profile-page .award-grid div {
    min-height: 96px;
    padding: 10px 6px;
  }

  .caterer-profile-page .award-grid b {
    font-size: 11px;
  }

  .caterer-profile-page .vendor-faq-event .contact-form {
    grid-template-columns: 1fr;
  }

  .caterer-profile-page .mini-metric-row,
  .caterer-profile-page .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caterer-sticky-bar {
    gap: 6px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 8px 8px;
  }

  .caterer-sticky-bar button {
    flex-direction: column;
    font-size: 10px;
    gap: 3px;
    min-height: 48px;
  }

  .caterer-detail-page .detail-hero {
    padding: 20px;
  }

  .caterer-detail-page .detail-hero h1 {
    font-size: 30px;
  }

  .caterer-detail-page .detail-package-grid,
  .caterer-detail-page .policy-detail-grid {
    grid-template-columns: 1fr;
  }
}
