: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: min(100% - 40px, 1100px);
  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);
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  /*min-width: 160px;*/
  width:20%;
}
.brand img {width:70%;}

.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: 500;
  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: 50%;
  z-index: 90;
  width: 235px;
  display: none;
  transform: translateX(-50%);
  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 {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--plum);
  box-shadow: none;
}

.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: 13px;
  font-weight: 800;
}

.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;
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 10px 18px rgba(74, 15, 63, .18);
}

.btn-gold {
  background: linear-gradient(180deg, #efc36b, #d99b38);
  color: #35122f;
}

.hero {
  position: relative;
}

.hero-inner {
  position: relative;
  padding: 38px 0 104px;
}

h1 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(42px, 6vw, 64px);
  line-height: .98;
}

.gold-dot { color: var(--gold); }

.lead {
  max-width: 445px;
  margin: 18px 0 0;
  color: #5e505d;
  font-size: 17px;
  line-height: 1.45;
}

.search-card {
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  z-index: 35;
  width: min(100% - 32px, 1120px);
  min-height: 86px;
  display: grid;
  grid-template-columns: .98fr 1.32fr 1.12fr .88fr auto;
  gap: 0;
  align-items: center;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: visible;
}

.field {
  min-height: 86px;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  background: #fff;
}

.field small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 4px;
}

.field strong { font-size: 16px; }

.field-text {
  display: grid;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.filter-button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #2e2130;
  cursor: pointer;
  text-align: left;
  font: 800 14px/1.2 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
  padding: 0 24px 0 0;
}

.field:focus-within {
  box-shadow: inset 0 0 0 2px rgba(201, 140, 50, .22);
  background: #fffaf5;
}

.field.open {
  z-index: 30;
  box-shadow: inset 0 0 0 2px rgba(201, 140, 50, .22);
}

.filter-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 16px;
  right: 16px;
  z-index: 80;
  display: none;
  margin: 0;
  padding: 8px;
  max-height: 250px;
  overflow-y: auto;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(74, 36, 61, .24);
}

.field.open .filter-menu {
  display: grid;
  gap: 3px;
}

.filter-option {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #2e2130;
  cursor: pointer;
  text-align: left;
  padding: 0 10px;
  font-weight: 750;
}

.filter-option:hover,
.filter-option:focus {
  background: #fff5ec;
  outline: none;
  color: var(--plum);
}

.filter-option[aria-selected="true"] {
  background: var(--plum);
  color: #fff;
}

.field .icon, .benefit .icon {
  width: 26px;
  height: 26px;
  border: 1px solid #eac9da;
  color: var(--rose);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 14px;
}

.field .down { margin-left: auto; color: var(--gold); }

.date-input,
.location-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #2e2130;
  cursor: pointer;
  font: 800 14px/1.2 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
  padding: 0;
}

.location-input::placeholder {
  color: #8b7b87;
  opacity: 1;
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .75;
  filter: sepia(1) saturate(1.5) hue-rotate(330deg);
}

.search-action { padding: 0 18px; }
.search-action .btn { min-width: 182px; }

.benefits {
  padding: 66px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 9vw, 120px);
  color: #3c2b38;
  font-size: 13px;
  font-weight: 800;
}

.benefit { display: flex; align-items: center; gap: 9px; }
.benefit .icon { border-color: #e5b764; color: var(--gold); }

.section {
  padding: 10px 0 12px;
  border-top: 1px solid #f4ecf1;
}

.section-title {
  position: relative;
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.1;
}

.section-title::before {
  content: "✦";
  display: block;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 6px;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.view-link {
  position: absolute;
  right: 0;
  top: 12px;
  color: var(--plum);
  font-weight: 800;
  font-size: 13px;
}

.slider-shell {
  position: relative;
  display: flex;
  flex-direction: column;
}

.slider-controls {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.slider-more {
  color: var(--plum);
  font-weight: 800;
  font-size: 13px;
  margin-right: 8px;
}

.slider-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d8c6d3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(72, 28, 57, .08);
}

.slider-track {
  order: 1;
  display: grid;
  grid-auto-flow: column;
  /*grid-auto-columns: var(--slide-size, 260px);*/
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 12px;
  scrollbar-width: thin;
}

.event-grid.slider-track,
.service-grid.slider-track,
.vendor-grid.slider-track,
.package-grid.slider-track,
.steps-grid.slider-track {
  grid-template-columns: none;
}

.slider-track > * {
  scroll-snap-align: start;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.event-card, .service-card, .vendor-card, .package-card, .step-card, .quote-card, .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(72, 28, 57, .06);
  overflow: hidden;
  margin-bottom: 15px;
}

.event-card {
  min-height: 135px;
  position: relative;
}

.event-card .pic { height: 100px; }
.event-card h3 {
  margin: 11px 14px 13px;
  font-size: 14px;
}

.mini-badge {
  position: absolute;
  left: 10px;
  top: 72px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--gold);
  border: 1px solid #ecd3ab;
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: stretch;
}

.service-card .content, .package-card .content {
  padding: 18px 18px 14px;
}

h3 {
  margin: 0 0 9px;
  color: var(--plum);
  font-size: 18px;
  line-height: 1.15;
}

p { margin: 0; line-height: 1.45; }

.muted {
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 13px;
  color: var(--plum);
  font-weight: 800;
  font-size: 13px;
}

.vendor-grid, .package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vendor-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.vendor-card .pic {
  height: 92px;
  flex: 0 0 92px;
}

.tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 9px;
  border-radius: 5px;
  background: var(--plum);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.vendor-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 13px 13px 15px;
}

.monogram {
  width: 56px;
  height: 56px;
  border: 2px solid #d9a64a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 10px;
  margin-bottom: 8px;
  background: #fff;
  color: #ba842b;
  font: 26px/1 Georgia, serif;
}

.vendor-name {
  margin: 0 0 2px;
  color: #261b28;
  font-weight: 900;
  font-size: 14px;
}

.meta, .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.vendor-bottom {
  margin-top: auto;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.vendor-body .outline-btn {
  margin-top: 12px;
  align-self: flex-start;
}

.price-lines {
  display: grid;
  gap: 4px;
}

.price-line {
  display: grid;
  gap: 1px;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 2px;
}

.price strong {
  font-size: 20px;
  color: #271727;
}

.price-line strong {
  font-size: 15px;
  white-space: nowrap;
}

.compact-price {
  display: grid;
  gap: 5px;
}

.compact-price span {
  color: #271727;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.compact-price b {
  color: var(--muted);
  font-size: 11px;
  margin-right: 4px;
}

.compact-price sup {
  color: var(--gold);
  font-size: 12px;
  top: -.2em;
  position: relative;
}

.outline-btn {
  border: 1px solid #a97296;
  color: var(--plum);
  background: #fff;
  border-radius: 5px;
  height: 34px;
  min-width: 108px;
  font-weight: 800;
  font-size: 12px;
}

.package-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 1fr 88px;
  position: relative;
}

.package-card .content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.package-card .thumb {
  width: 84px;
  height: 92px;
  margin: auto 10px auto 0;
  border-radius: 8px;
  overflow: hidden;
}

.package-card.featured { border-color: #dca240; box-shadow: 0 0 0 2px rgba(218,162,64,.16); }
.package-card.featured .content { padding-top: 48px; }
.ribbon {
  position: absolute;
  left: 14px;
  top: 10px;
  z-index: 5;
  padding: 6px 18px;
  background: #dba13d;
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(86, 42, 0, .18);
}

.package-card h3 {
  color: #2e2130;
  font-size: 15px;
  margin-bottom: 9px;
}

.package-card .amount {
  display: block;
  color: var(--plum);
  font-size: 22px;
  font-weight: 900;
}

.package-card .text-link {
  margin-top: auto;
}

.cta-band {
  margin: 18px 0 12px;
  min-height: 170px;
  display: grid;
  grid-template-columns: 1.1fr 1.45fr;
  align-items: center;
  gap: 28px;
  padding: 24px 42px;
  border: 2px solid #c89038;
  border-radius: 9px;
  background:
	radial-gradient(circle at 94% 40%, rgba(255,199,106,.15), transparent 32%),
	linear-gradient(135deg, #4b0d3e, #65124f 52%, #421035);
  color: #fff;
  overflow: hidden;
}

.cta-band h2 {
  margin: 0;
  color: #f4c76d;
  font: 38px/1.02 Georgia, serif;
}

.cta-band p {
  max-width: 430px;
  margin: 13px 0 18px;
  color: #f7ddea;
  font-size: 13px;
}

.cta-band > div:first-child {
  text-align: center;
}

.cta-band > div:first-child p {
  margin-left: auto;
  margin-right: auto;
}

.cta-services {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.cta-tile {
  text-align: center;
  font-weight: 900;
  color: #fff;
}

.cta-tile .pic {
  aspect-ratio: 1 / .78;
  border: 2px solid #bb8d44;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 9px;
}

.plus {
  color: #f4c76d;
  font: 42px/1 Georgia, serif;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card {
  min-height: 102px;
  padding: 18px 18px 18px 82px;
  position: relative;
  overflow: visible;
}

.number {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.step-icon {
  position: absolute;
  left: 26px;
  top: 36px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--plum);
  border: 1px solid #ead1df;
  border-radius: 50%;
  font-size: 23px;
}

.step-card h3 {
  font-size: 15px;
  color: var(--plum);
}

.info-band {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 34px;
  padding: 10px 0 22px;
}

.feature-list h3, .locations h3 {
  margin-bottom: 15px;
}

.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.feature-list b { color: var(--plum); display: block; font-size: 14px; }

.round-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #d9b4c9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--plum);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.place {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.place span:first-child { color: var(--gold); font-size: 22px; }

.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;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-card {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: #ecdbe5;
  box-shadow: 0 14px 30px rgba(72, 28, 57, .08);
}

.stars {
  display: flex;
  gap: 3px;
  color: #dfa232;
  font-size: 15px;
}
.quote-card p {
  margin: 16px 0 22px;
  color: #4c3c4a;
  font-size: 15px;
  line-height: 1.6;
}
.person { display: flex; align-items: center; gap: 11px; font-size: 13px; color: var(--muted); }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1c07d, #5e174d);
  flex: 0 0 auto;
}
.person b { display: block; color: #2d2130; font-size: 14px; }

.vendor-cta {
  margin: 8px 0 20px;
  min-height: 95px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 42px;
  color: #fff;
  background: linear-gradient(135deg, #521141, #681750 55%, #3f0d35);
  border: 2px solid #bd8735;
  border-radius: 9px;
}

.vendor-cta .shop {
  width: 78px;
  height: 78px;
  border: 1px solid #cfa14c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #efc76d;
  font-size: 36px;
  margin-left: auto;
}

.vendor-cta h2 {
  margin: 0 0 4px;
  color: #f4c76d;
  font: 31px/1 Georgia, serif;
}

.vendor-cta p { color: #f3dbe8; }

.faq-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding-bottom: 24px;
}

.faq-panel {
  display: flex;
  flex-direction: column;
}

.faq-panel .faq-grid {
  flex: 1;
}

.faq-panel h2,
.contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.1;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-item {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
}

.cities-card {
  padding: 20px;
}

.cities-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.cities-head h2 {
  margin: 0;
  font-size: 28px;
}

.city-pages {
  display: flex;
  gap: 8px;
}

.city-page-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #d8c6d3;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  font-weight: 900;
  cursor: pointer;
}

.city-page-btn.active {
  background: var(--plum);
  color: #fff;
}

.cities-scroll {
  max-height: 118px;
  overflow-y: auto;
  padding-right: 6px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.city-pill {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: #fff;
  color: #4d3f4d;
  font-size: 12px;
  font-weight: 800;
}

.contact-panel {
  background:
	radial-gradient(circle at 92% 14%, rgba(244, 199, 109, .18), transparent 28%),
	linear-gradient(135deg, #4c0f40, #681653);
  border: 1px solid #b88443;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(72, 28, 57, .08);
  color: #fff;
  padding: 24px;
}

.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 textarea {
  width: 100%;
  border: 1px solid #ead9e4;
  border-radius: 6px;
  background: rgba(255, 253, 251, .96);
  color: #2e2130;
  font: 600 14px/1.4 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d7a24b;
  box-shadow: 0 0 0 3px rgba(215, 162, 75, .16);
  background: #fff;
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

.contact-form .btn-primary {
  background: linear-gradient(180deg, #f1c76d, #d99b38);
  color: var(--plum);
  box-shadow: 0 10px 18px rgba(28, 7, 24, .22);
}

footer {
  background: linear-gradient(135deg, #4a0d3d, #5f124d 55%, #3d0c34);
  color: #fff;
  padding: 28px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr) 1.9fr;
  gap: 34px;
}

.footer-brand strong {
  font: 32px/1 Georgia, serif;
}

.footer-brand p, footer a, footer li {
  color: #f3d8e7;
  font-size: 12px;
  line-height: 1.55;
}

footer h4 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 13px;
}

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;
}

.swiper-slide {text-align: center;display: flex;justify-content: center;align-items: center;width: 75%;padding:0px;}
.swiper-slide .card{width: 100%;border:none;background:none;}
.swiper {width: 100%; margin: 0px auto;}
.swiper-button-next {color: #777 !important;font-weight: bolder;fill: #a4a4a4 !important;stroke: #a4a4a4 !important;}
.swiper-button-prev {color: #777 !important;font-weight: bolder;fill: #a4a4a4 !important;stroke: #a4a4a4 !important;}
.swiper-button-prev::after,.swiper-button-next::after {font-size: 18px;font-weight: bolder;}


.accordion-header {
  padding: 5px;
}
.accordion-item {
  background-color: #fff;
  border: 0px solid rgba(0,0,0,.125);
  margin-bottom: 15px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.2), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
}
.accordion-no {
  background-color: #4f4c69;
  color: #FFF;
  padding: 20px 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  width: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 0 10px;
  background:linear-gradient(180deg,rgb(178, 218, 248) 0%, rgb(80, 141, 238) 100%);
}
.accordion-button {
  background-color: #FFF !important;
  width: 100%;
  text-align: left;
  border: none;
  padding:8px 10px;
}
.accordion-body{padding:10px;font-size: 15px;}
.accordion-button h5{margin:0;font-size: 15px;font-weight: 600;color: var(--plum);}
.accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}

.bannerSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.bannerSwiper .slide-content {
    position: absolute;
    left: 8%;
    top: 20%;
    padding: 40px 20px 20px;
	width: 30%;
  text-align: left;
}
.bannerSwiper .slide-content h3 {
    margin: 0 0 5px;
	font-size: clamp(42px, 6vw, 64px);
  line-height: .98;
}
.bannerSwiper .slide-content p {
    margin: 0;
    font-size: 14px;
}


@media (max-width: 960px) {
  .wrap { width: min(100% - 28px, 760px); }
  .navlinks { display: none; }
  .topbar {
	z-index: 100;
  }
  .nav {
	height: 62px;
	gap: 12px;
  }
  .brand {
	min-width: 0;
  }
  .brand .mark {
	width: 36px;
	height: 36px;
	font-size: 30px;
  }
  .brand strong {
	font-size: 28px;
  }
  .nav-actions {
	gap: 8px;
	margin-left: auto;
  }
  .mobile-toggle {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
  }
  .login-wrap {
	display: none;
  }
  .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;
  }
  .hero {
	position:absolute;
  }
  .hero-inner {
	padding: 30px 0 230px;
	text-align: center;
  }
  .hero h1,
  .lead {
	margin-left: auto;
	margin-right: auto;
  }
  .search-card {
	position: static;
	transform: none;
	margin: -178px auto 0;
	grid-template-columns: 1fr;
  }
  .section {
	padding: 14px 0;
  }
  .field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-action { padding: 16px; }
  .search-action .btn { width: 100%; }
  .benefits { padding-top: 18px; flex-wrap: wrap; gap: 14px 24px; }
  .event-grid, .vendor-grid, .package-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card {
	padding: 18px 18px 18px 68px;
  }
  .step-card .number {
	display: none;
  }
  .step-icon {
	left: 18px;
	top: 22px;
  }
  .service-grid, .info-band, .faq-contact { grid-template-columns: 1fr; }
  .feature-list ul {
	grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-list li {
	grid-template-columns: 30px 1fr;
	gap: 8px;
	font-size: 12px;
  }
  .feature-list b {
	font-size: 13px;
  }
  .location-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
  }
  .place {
	min-height: 42px;
	justify-content: center;
	padding: 0 8px;
	text-align: center;
	font-size: 12px;
  }
  .place span:first-child {
	font-size: 16px;
  }
  .locations .text-link {
	width: 100%;
	justify-content: center;
  }
  .vendor-cta {
	text-align: center;
	justify-items: center;
  }
  .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 {
	padding-top: 24px;
  }
  footer h4 {
	margin-bottom: 8px;
  }
  footer li {
	line-height: 1.85;
  }
  .copyright {
	justify-content: center;
	text-align: center;
  }
  .cta-band, .vendor-cta { grid-template-columns: 1fr; padding: 24px; }
  .vendor-cta .shop { margin: 0; }
  .view-link { position: static; margin-left: 18px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 22px, 520px); }
  .nav {
	height: 58px;
	gap: 8px;
  }
  .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;
  }
  .mobile-panel {
	max-height: calc(100vh - 58px);
  }
  .hero {
	min-height: 455px;
	background:
	  radial-gradient(circle at 50% 16%, rgba(244, 199, 109, .22), transparent 38%),
	  linear-gradient(180deg, rgba(255, 247, 240, .98) 0 36%, rgba(255, 241, 233, .68) 62%, rgba(255, 253, 250, .06)),
	  url("muhrta-assets/hero-stage.png") center bottom / auto 53% no-repeat,
	  #fff3eb;
  }
  .hero-inner { padding: 24px 0 210px; }
  .lead { font-size: 15px; }
  h1 {
	font-size: 38px;
  }
  .search-card {
	margin-top: -158px;
  }
  .field {
	min-height: 74px;
	padding: 13px 14px;
  }
  .section-title {
	font-size: 31px;
  }
  .event-grid, .vendor-grid, .package-grid, .steps-grid, .quote-grid {
	grid-template-columns: 1fr;
  }
  .service-card { grid-template-columns: 1fr; }
  .service-card .pic { height: 150px; }
  .cta-services { grid-template-columns: 1fr; }
  .plus { display: none; }
  .feature-list ul,
  .location-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-list li {
	min-height: 98px;
	grid-template-columns: 1fr;
	justify-items: center;
	align-content: start;
	text-align: center;
	padding: 12px 8px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
  }
  .round-icon {
	width: 34px;
	height: 34px;
  }
  .location-grid {
	gap: 8px;
  }
  .place {
	min-height: 42px;
  }
  .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-brand p, footer a, footer li {
	font-size: 11px;
  }
  .footer-brand,
  .footer-grid > div:last-child {
	grid-column: 1 / -1;
  }
  .footer-brand p {
	max-width: 100%;
  }
  .social {
	margin-top: 12px;
  }
  .copyright {
	flex-direction: column;
	align-items: center;
	gap: 7px;
	text-align: center;
  }
}