:root {
  --color-primary: #a5164e;
  --color-primary-dark: #721135;
  --color-coral: #e35b46;
  --color-ink: #24181d;
  --color-muted: #746260;
  --color-soft: #fff6ed;
  --color-blush: #fff0f3;
  --color-mint: #eef7ef;
  --color-ivory: #fffaf2;
  --color-white: #ffffff;
  --color-line: rgba(102, 62, 52, 0.16);
  --color-gold: #c58a2e;
  --color-success: #198754;
  --color-danger: #b42318;
  --shadow-soft: 0 24px 60px rgba(57, 28, 35, 0.14);
  --shadow-card: 0 14px 34px rgba(57, 28, 35, 0.09);
  --radius: 8px;
  --container: 100%;
  --font-display: Georgia, "Times New Roman", serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(74, 54, 48, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  height: 130px;
  width: auto;
  max-width: 450px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: none;
}

.brand-logo:hover {
  cursor: default;
}

.auth-logo {
  width: 128px;
  height: 128px;
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
}

.brand-name {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--color-primary);
}

.nav a:hover::after,
.nav a.active::after {
  opacity: 1;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.menu-button {
  display: none;
}

.button,
.icon-button,
.text-button,
.login-link {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 15px;
  white-space: nowrap;
}

.button:hover,
.icon-button:hover,
.text-button:hover,
.login-link:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(165, 31, 77, 0.18);
}

.button.primary:hover {
  background: var(--color-primary-dark);
}

.button.secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid rgba(165, 31, 77, 0.55);
}

.button.ghost {
  background: transparent;
  color: var(--color-muted);
}

.button.danger {
  background: #fff1f0;
  color: var(--color-danger);
}

.button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
}

.icon-button {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--color-line);
  color: var(--color-ink);
}

.icon-button.menu-button {
  display: none;
}

.login-link {
  color: var(--color-ink);
  min-height: 40px;
  padding: 0 2px;
  font-size: 15px;
}

.text-button {
  color: var(--color-primary);
  background: transparent;
  padding: 0;
  font-size: 14px;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.main {
  min-height: 64vh;
}

.hero {
  min-height: 500px;
  background: linear-gradient(90deg, #fff 0%, #fff 43%, #f4f0eb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: stretch;
  min-height: 500px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 28px 34px 0;
}

.hero-copy h1 {
  margin: 0;
  max-width: 590px;
  color: #222020;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.1vw, 54px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 520px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.68;
}

.hero-search {
  width: min(660px, 100%);
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(150px, 1.1fr) minmax(142px, 0.84fr) minmax(130px, 0.78fr) auto;
  align-items: center;
  gap: 0;
  padding: 10px;
  background: var(--color-white);
  border: 1px solid rgba(74, 54, 48, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(59, 42, 39, 0.16);
}

.search-control {
  min-width: 0;
  min-height: 52px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--color-muted);
  border-right: 1px solid rgba(74, 54, 48, 0.12);
}

.search-control strong {
  display: block;
  color: #443a37;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.search-control input,
.search-control select {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 4px 0 0;
  color: var(--color-muted);
  background: transparent;
  font-size: 12px;
}

.search-control select {
  appearance: auto;
}

.hero-search .button {
  min-height: 50px;
  min-width: 94px;
  padding: 0 20px;
}

.trust-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
}

.trust-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: #584e4a;
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.trust-icon .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: #312b29;
  font-size: 12px;
  font-weight: 900;
}

.trust-item small {
  margin-top: 1px;
  color: var(--color-muted);
  font-size: 10px;
  line-height: 1.25;
}

.hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #efe7df;
  margin-right: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media.media-failed::before {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(165, 31, 77, 0.13), transparent 36%),
    linear-gradient(315deg, rgba(74, 54, 48, 0.14), transparent 42%);
}

.section {
  padding: 56px 0;
}

.section.white {
  background: #fff;
}

.section.compact {
  padding: 34px 0;
}

.category-band {
  padding: 36px 0 34px;
  background: var(--color-soft);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h2,
.page-title h1,
.panel-title h2,
.booking-panel h2,
.dashboard-panel h2,
.support-card h2 {
  margin: 0;
  color: #241f1f;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p,
.page-title p,
.panel-title p,
.booking-panel p,
.dashboard-panel p,
.support-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
  max-width: 650px;
}

.page-title {
  padding: 44px 0 24px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-tile {
  display: grid;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
}

.category-tile-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid rgba(165, 31, 77, 0.15);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.categories {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.vendors {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.vendors-section .grid.vendors {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card,
.vendor-card,
.panel,
.cms-card,
.chat-card,
.booking-card,
.empty-state,
.auth-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.category-card {
  padding: 0;
  text-decoration: none;
  display: grid;
  gap: 0;
  overflow: hidden;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 31, 77, 0.34);
}

.category-card-img {
  width: 100%;
  height: 240px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

.category-card-body {
  padding: 18px;
  text-align: center;
}

.category-card.has-image .category-card-body {
  text-align: left;
}

.category-card-body .category-icon {
  margin-bottom: 12px;
}

.category-card h3,
.vendor-card h3,
.cms-card h3 {
  margin: 0 0 4px;
  color: #282222;
  font-size: 15px;
  line-height: 1.25;
}

.category-card p,
.vendor-card p,
.cms-card p,
.empty-state p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.count-line {
  margin-top: 14px;
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 13px;
}

.vendor-card {
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease;
  box-shadow: 0 8px 22px rgba(74, 54, 48, 0.08);
}

.vendor-media {
  aspect-ratio: 1.3 / 1;
  background: #eee;
  position: relative;
  overflow: hidden;
}

.vendor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  border-radius: 4px;
  padding: 5px 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.favorite-toggle {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(39, 34, 36, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.vendor-body {
  padding: 14px 14px 16px;
}

.vendor-role {
  color: var(--color-muted);
  font-size: 12px;
}

.vendor-meta,
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--color-muted);
  font-size: 12px;
}

.vendor-meta .icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: -2px;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 9px;
  color: #655b55;
  font-size: 12px;
  font-weight: 800;
}

.rating .icon {
  width: 14px;
  height: 14px;
  color: #f1ad27;
  fill: #f1ad27;
}

.vendor-price {
  margin-top: 13px;
}

.price {
  display: block;
  color: var(--color-ink);
  font-size: 17px;
  font-weight: 900;
}

.vendor-price small {
  display: block;
  color: var(--color-muted);
  font-size: 11px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.card-actions .button {
  min-height: 36px;
  padding: 0 10px;
  font-size: 11px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(200px, 1.5fr) repeat(6, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #5f5651;
  font-size: 11px;
  font-weight: 900;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 5px;
  background: #fff;
  color: var(--color-ink);
  padding: 10px 12px;
  outline: none;
  font-size: 13px;
}

.textarea {
  min-height: 108px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(165, 31, 77, 0.55);
  box-shadow: 0 0 0 3px rgba(165, 31, 77, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.vendor-register-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.vendor-stepper {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
}

.vendor-step-tab {
  min-height: 46px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-muted);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.vendor-step-tab span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-primary);
  font-size: 12px;
}

.vendor-step-tab.active {
  border-color: rgba(165, 31, 77, 0.44);
  color: var(--color-primary);
  box-shadow: 0 8px 18px rgba(74, 54, 48, 0.06);
}

.vendor-form {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.vendor-progress {
  height: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-soft);
}

.vendor-progress span {
  display: block;
  width: 14.28%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.vendor-step {
  display: none;
}

.vendor-step.active {
  display: block;
}

.vendor-form-message {
  min-height: 0;
  margin-bottom: 12px;
  color: var(--color-danger);
  font-weight: 800;
}

.vendor-form-message:empty {
  margin-bottom: 0;
}

.inline-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.inline-control .button {
  min-height: 42px;
}

.field-note {
  color: var(--color-muted);
  font-size: 12px;
}

.package-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.package-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fbfaf8;
}

.package-row .full {
  grid-column: 1 / 3;
}

.package-remove {
  align-self: start;
  margin-top: 22px;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.upload-box {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(165, 31, 77, 0.45);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.upload-box span,
.upload-box>label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 900;
}

.upload-box small {
  color: var(--color-muted);
}

.document-box {
  align-content: start;
}

.file-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.file-preview {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.file-preview img {
  width: 100%;
  height: 112px;
  grid-column: 1 / -1;
  border-radius: 6px;
  object-fit: cover;
}

.file-preview span {
  overflow: hidden;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-preview span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.multi-select {
  min-height: 180px;
}

.radio-grid,
.agreement-stack {
  display: grid;
  gap: 10px;
}

.radio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.radio-card,
.check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: #342e2b;
  font-weight: 800;
}

.radio-card input,
.check-card input {
  flex: 0 0 auto;
  accent-color: var(--color-primary);
}

.vendor-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.success-card {
  display: grid;
  gap: 12px;
}

.panel {
  padding: 22px;
}

.enquiry-form {
  box-shadow: none;
}

.compact-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.compact-form .panel-title {
  display: none;
}

.compact-form .hero-actions {
  margin-top: 16px;
}

.compact-form .button {
  width: 100%;
}

.action-band {
  background: linear-gradient(90deg, var(--color-blush) 0%, var(--color-blush) 50%, var(--color-mint) 50%, var(--color-mint) 100%);
  padding: 42px 0;
}

.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.booking-panel,
.dashboard-panel {
  min-width: 0;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: stretch;
}

.booking-form-wrap {
  min-width: 0;
}

.enquiry-image,
.support-image {
  overflow: hidden;
  border-radius: 6px;
  background: #ece2dc;
}

.enquiry-image img,
.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.dashboard-preview {
  min-height: 330px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(74, 54, 48, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(74, 54, 48, 0.12);
}

.dashboard-rail {
  padding: 14px 10px;
  background: #fbfaf8;
  border-right: 1px solid rgba(74, 54, 48, 0.1);
  display: grid;
  align-content: start;
  gap: 8px;
}

.rail-item {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  color: #5f5651;
  font-size: 11px;
  font-weight: 800;
  border-radius: 5px;
}

.rail-item .icon {
  width: 15px;
  height: 15px;
}

.rail-item.active {
  background: var(--color-primary);
  color: #fff;
}

.chat-window {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-header,
.chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(74, 54, 48, 0.1);
}

.chat-header small {
  display: block;
  color: var(--color-success);
  font-size: 10px;
  font-weight: 800;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcbf9f, #8ea0bf);
}

.chat-menu {
  margin-left: auto;
}

.chat-menu .icon {
  width: 18px;
  height: 18px;
}

.chat-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  background: #fff;
}

.message {
  width: fit-content;
  max-width: 80%;
  padding: 9px 11px;
  border-radius: 8px;
  color: #453d39;
  font-size: 11px;
  line-height: 1.45;
}

.message.incoming {
  background: #f5f1ed;
}

.message.outgoing {
  justify-self: end;
  background: #e8f0dc;
}

.thumb-row {
  display: flex;
  gap: 7px;
  margin-top: 2px;
}

.thumb-row img {
  width: 56px;
  height: 52px;
  border-radius: 5px;
  object-fit: cover;
}

.chat-input {
  border-top: 1px solid rgba(74, 54, 48, 0.1);
  border-bottom: 0;
}

.chat-input span {
  flex: 1;
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(74, 54, 48, 0.1);
  border-radius: 5px;
  color: #aaa09a;
  font-size: 11px;
}

.chat-input .icon-button {
  width: 34px;
  height: 34px;
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.feature-row p {
  margin: 3px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.support-band {
  background: #fff;
  padding: 42px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr) minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: stretch;
}

.support-card {
  min-width: 0;
  padding: 4px 10px 4px 0;
  border-right: 1px solid rgba(74, 54, 48, 0.14);
}

.support-card.vendor-card-mini {
  padding-right: 18px;
}

.faq-list {
  display: grid;
  gap: 0;
  margin: 14px 0;
}

.faq-row {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #332e2b;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 54, 48, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.faq-row .icon {
  width: 15px;
  height: 15px;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-stack a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #342e2b;
  text-decoration: none;
}

.contact-stack .icon {
  color: var(--color-primary);
}

.contact-stack strong,
.contact-stack small {
  display: block;
}

.contact-stack small {
  color: var(--color-muted);
}

.support-image {
  min-height: 210px;
}

.support-image video,
.enquiry-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 34px;
}

.detail-media {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #eee;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: grid;
  align-content: center;
}

.detail-copy h1 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.detail-copy p {
  color: var(--color-muted);
  font-size: 17px;
}

.detail-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fact {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background: #fff;
}

.fact span {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-top: 4px;
}

.cms-card,
.booking-card,
.chat-card {
  padding: 18px;
}

.cms-card {
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.cms-content {
  white-space: pre-wrap;
  color: var(--color-muted);
}

.auth-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 42px 0;
  background: var(--color-soft);
}

.auth-card {
  width: min(460px, calc(100% - 32px));
  padding: 24px;
}

.auth-card h1 {
  margin: 16px 0 8px;
  font-family: var(--font-display);
  font-size: 34px;
}

.tabs {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 4px;
  border-radius: var(--radius);
}

.tab {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--color-muted);
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  background: var(--color-primary);
  color: #fff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f5e8ed;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.empty-state {
  padding: 34px;
  text-align: center;
}

.home-empty-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
}

.home-empty-card {
  max-width: 620px;
  margin-inline: auto;
}

.home-empty-card .empty-state {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.home-empty-card .hero-actions {
  justify-content: center;
  margin-top: -1px;
  padding: 0 34px 34px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 0;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.empty-state .category-icon {
  margin: 0 auto 14px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--container), calc(100% - 64px));
  margin: 42px auto;
}

.skeleton {
  border-radius: var(--radius);
  min-height: 260px;
  background: linear-gradient(90deg, rgba(247, 240, 234, 0.8), rgba(255, 255, 255, 1), rgba(247, 240, 234, 0.8));
  background-size: 220% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border: 1px solid var(--color-line);
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.toast {
  width: min(380px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--color-ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.toast.error {
  background: var(--color-danger);
}

.site-footer {
  background: #2d0f1a;
  color: #fff;
  padding: 34px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 42px;
}

.site-footer .brand-logo {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer .brand-name {
  color: #fff;
  font-size: 26px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: block;
  margin: 7px 0;
  font-size: 13px;
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  margin: 14px 0 0;
  max-width: 370px;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.noscript {
  max-width: 680px;
  margin: 80px auto;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
}

body {
  background:
    linear-gradient(180deg, #fffaf2 0, #ffffff 520px),
    #ffffff;
}

.site-header {
  background: rgba(255, 252, 247, 0.9);
  border-bottom: 1px solid rgba(165, 22, 78, 0.1);
  box-shadow: 0 10px 30px rgba(70, 36, 33, 0.06);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-coral), var(--color-gold));
}

.header-inner {
  min-height: 88px;
  padding-bottom: 5px;
}

.brand {
  gap: 12px;
}

.brand-logo {
  height: 130px;
  width: auto;
  max-width: 450px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  margin-bottom: 0;
  position: relative;
  z-index: 50;
  transition: none;
  border: none;
  mix-blend-mode: multiply;
}

.brand-name {
  color: var(--color-primary-dark);
  font-size: 28px;
}

.nav {
  gap: 24px;
}

.nav a {
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  letter-spacing: 0.2px;
}

.nav a::after {
  height: 2px;
  bottom: 0px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-coral));
}

.button {
  min-height: 46px;
  padding: 0 20px;
  letter-spacing: 0;
}

.button.primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-coral));
  box-shadow: 0 16px 30px rgba(165, 22, 78, 0.22);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), #c94839);
  box-shadow: 0 18px 34px rgba(165, 22, 78, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-primary-dark);
  border-color: rgba(165, 22, 78, 0.28);
  box-shadow: 0 10px 22px rgba(57, 28, 35, 0.06);
}

.button.secondary:hover {
  border-color: rgba(165, 22, 78, 0.6);
  background: #fff8f4;
}

.text-button {
  min-height: 34px;
  color: var(--color-primary-dark);
  font-weight: 900;
}

.text-button .icon {
  transition: transform 0.16s ease;
}

.text-button:hover .icon {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 239, 225, 0.88) 100%),
    repeating-linear-gradient(135deg, rgba(165, 22, 78, 0.05) 0 1px, transparent 1px 28px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(197, 138, 46, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(197, 138, 46, 0.07) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: 34px;
}

.hero-copy {
  padding: 46px 0 42px;
}

.hero-copy h1 {
  max-width: 690px;
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 570px;
  color: #715c5d;
  font-size: 17px;
  line-height: 1.75;
}

.hero-search {
  width: min(760px, 100%);
  margin-top: 32px;
  padding: 8px;
  border: 1px solid rgba(165, 22, 78, 0.14);
  border-left: 4px solid var(--color-gold);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(82, 44, 40, 0.16);
}

.search-control {
  min-height: 58px;
  color: var(--color-primary);
}

.search-control strong {
  color: #38262b;
  font-size: 11px;
}

.search-control input,
.search-control select {
  color: #796462;
  font-size: 13px;
}

.hero-search .button {
  min-height: 56px;
}

.trust-strip {
  width: min(760px, 100%);
  margin-top: 26px;
  padding: 14px;
  border: 1px solid rgba(165, 22, 78, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 28px rgba(82, 44, 40, 0.07);
  backdrop-filter: blur(10px);
}

.trust-item {
  gap: 10px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: #fff2e5;
  color: var(--color-primary);
  border: 1px solid rgba(197, 138, 46, 0.26);
}

.trust-item strong {
  color: #2f2025;
  font-size: 12px;
}

.trust-item small {
  color: #856e68;
}

.hero-media {
  align-self: center;
  min-height: 500px;
  margin: 42px 0 42px 0;
  border: 1px solid rgba(197, 138, 46, 0.3);
  border-radius: var(--radius);
  background: #f5e2d8;
  box-shadow: 0 30px 70px rgba(82, 44, 40, 0.22);
}

.hero-media::before {
  display: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 6px;
  pointer-events: none;
}

.hero-media-image {
  transform: scale(1.01);
  transition: transform 0.8s ease;
}

.hero:hover .hero-media-image {
  transform: scale(1.045);
}

.section {
  padding: 76px 0;
}

.section.white {
  background: #fff;
}

.section:not(.white):not(.compact):not(.support-band) {
  background: var(--color-ivory);
}

.category-band {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff4ee 0%, #fffaf2 58%, #fff 100%);
  border-block: 1px solid rgba(165, 22, 78, 0.08);
}

.category-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(165, 22, 78, 0.055) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(197, 138, 46, 0.05) 25%, transparent 25%);
  background-size: 68px 68px;
  opacity: 0.32;
  pointer-events: none;
}

.category-band .container {
  position: relative;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2,
.page-title h1,
.booking-panel h2,
.dashboard-panel h2,
.support-card h2 {
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -1px;
  font-size: clamp(30px, 3.35vw, 44px);
  line-height: 1.05;
  text-wrap: balance;
}

.panel-title h2 {
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-wrap: balance;
}

.section-head p,
.page-title p,
.panel-title p,
.booking-panel p,
.dashboard-panel p,
.support-card p {
  color: #755f60;
  font-size: 15px;
  line-height: 1.65;
}

.category-strip {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-tile-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid rgba(165, 31, 77, 0.15);
}

.grid {
  gap: 22px;
}

.grid.two {
  gap: 24px;
}

.category-card,
.vendor-card,
.panel,
.cms-card,
.chat-card,
.booking-card,
.empty-state,
.auth-card {
  border-color: rgba(102, 62, 52, 0.12);
  box-shadow: var(--shadow-card);
}

.panel,
.cms-card,
.booking-card,
.chat-card,
.auth-card {
  position: relative;
  overflow: hidden;
}

.section:not(.compact) .grid .panel::before,
.cms-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-coral), var(--color-gold));
}

.panel {
  padding: 32px;
  border-radius: 12px;
}

.panel:hover,
.cms-card:hover,
.category-card:hover {
  box-shadow: 0 20px 44px rgba(82, 44, 40, 0.12);
}

.category-card {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.category-card-body {
  padding: 22px;
}

.category-card h3,
.vendor-card h3,
.cms-card h3 {
  color: #2b1920;
  font-family: var(--font-display);
  font-size: 20px;
}

.category-card p,
.vendor-card p,
.cms-card p,
.empty-state p {
  color: #766260;
  line-height: 1.6;
}

.count-line {
  color: var(--color-primary);
}

.gallery-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-showcase-card {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f5f0ec;
  box-shadow: 0 8px 28px rgba(74, 54, 48, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(57, 28, 35, 0.18);
}

.gallery-showcase-card:hover img {
  transform: scale(1.08);
}

.gallery-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: #f5f5f5;
  box-shadow: var(--shadow-card);
}

.gallery-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-image-card:hover img {
  transform: scale(1.06);
}

/* Custom Services Section Redesign */
.services-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #fdf2f8 0%, #fff7ed 50%, #fdf2f8 100%);
}

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.services-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(165, 22, 78, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #282222;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.services-header p {
  color: #755f60;
  font-size: 16px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(165, 31, 77, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(82, 44, 40, 0.08);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff0f5, #fff7ed);
  color: var(--color-primary);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #282222;
  margin: 0;
}

.service-card-body p {
  font-size: 13px;
  color: #755f60;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 48px 0;
  }

  .services-header h2 {
    font-size: 28px;
  }
}

.curated-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #fdf2f8 0%, #fff7ed 50%, #fdf2f8 100%);
}

.curated-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.curated-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #282222;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.curated-subtitle {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.curated-text {
  font-size: 16px;
  color: #755f60;
  line-height: 1.7;
  margin-bottom: 28px;
}

.curated-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.curated-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(165, 31, 77, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.curated-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(82, 44, 40, 0.08);
}

.curated-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff0f5, #fff7ed);
  color: var(--color-primary);
}

.curated-feature-icon .icon {
  width: 22px;
  height: 22px;
}

.curated-feature div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.curated-feature strong {
  font-size: 14px;
  color: #282222;
  font-weight: 700;
}

.curated-feature span:last-child {
  font-size: 13px;
  color: #755f60;
}

@media (max-width: 768px) {
  .curated-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .curated-content h2 {
    font-size: 28px;
  }

  .curated-features {
    grid-template-columns: 1fr;
  }
}

.grid.vendors {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.vendors-section .grid.vendors {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}

.vendor-card {
  background: #fff;
  border-color: rgba(165, 22, 78, 0.1);
  box-shadow: 0 16px 38px rgba(57, 28, 35, 0.1);
}

.vendor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(165, 22, 78, 0.36);
  box-shadow: 0 24px 52px rgba(57, 28, 35, 0.16);
}

.vendor-media {
  aspect-ratio: 1.42 / 1;
  background: #f5e1d8;
}

.vendor-media img {
  transition: transform 0.45s ease;
}

.vendor-card:hover .vendor-media img {
  transform: scale(1.055);
}

.vendor-badge {
  left: 10px;
  top: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-coral));
  box-shadow: 0 10px 22px rgba(114, 17, 53, 0.2);
}

.favorite-toggle {
  right: 10px;
  top: 10px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.78);
}

.vendor-body {
  padding: 18px 18px 20px;
}

.vendor-card h3 {
  margin-top: 0;
  font-size: 21px;
}

.vendor-role {
  color: var(--color-primary);
  font-weight: 900;
}

.rating {
  color: #5d493f;
}

.price {
  color: #24151b;
  font-size: 22px;
}

.vendor-price {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(102, 62, 52, 0.1);
}

.card-actions {
  gap: 10px;
}

.card-actions .button {
  min-height: 40px;
  font-size: 12px;
}

.filters,
.vendor-form,
.dashboard-preview,
.fact,
.tabs {
  border-color: rgba(102, 62, 52, 0.12);
  box-shadow: var(--shadow-card);
}

.input,
.select,
.textarea {
  border-color: rgba(102, 62, 52, 0.16);
  background: #fffdf9;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(227, 91, 70, 0.7);
  box-shadow: 0 0 0 4px rgba(227, 91, 70, 0.12);
}

.support-band {
  background:
    linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  padding: 70px 0;
}

.faq-list {
  gap: 12px;
}

.faq-row {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(102, 62, 52, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(57, 28, 35, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.faq-row:hover {
  transform: translateX(3px);
  border-color: rgba(165, 22, 78, 0.3);
}

details.faq-accordion {
  border: 1px solid rgba(102, 62, 52, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(57, 28, 35, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease;
  overflow: hidden;
}

details.faq-accordion:hover {
  transform: translateX(3px);
  border-color: rgba(165, 22, 78, 0.3);
}

details.faq-accordion summary {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #332e2b;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

details.faq-accordion summary::-webkit-details-marker {
  display: none;
}

details.faq-accordion summary .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

details.faq-accordion[open] summary .icon {
  transform: rotate(90deg);
}

details.faq-accordion .faq-content {
  padding: 0 18px 18px;
  color: #755f60;
  font-size: 14px;
  line-height: 1.6;
}

details.faq-accordion .faq-content p {
  margin: 0;
}

.detail-hero {
  padding-top: 20px;
}

.detail-media {
  border-color: rgba(197, 138, 46, 0.34);
  box-shadow: 0 24px 54px rgba(57, 28, 35, 0.14);
}

.detail-copy h1 {
  color: #24151b;
}

.fact {
  background: #fffdf9;
}

.fact span {
  color: var(--color-primary-dark);
}

.auth-wrap {
  background:
    linear-gradient(135deg, #fffaf2 0%, #fff 50%, #fff0f3 100%);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #2d0f1a 0%, #3b1424 54%, #2d0f1a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
}

.site-footer .brand-logo {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer strong {
  color: #ffe3b0;
}

.site-footer a:hover {
  color: #fff;
}

@media (min-width: 1121px) {
  .hero-media {
    margin-right: 0;
  }
}

@media (max-width: 1120px) {
  .hero-media {
    margin-right: 0;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .nav a {
    padding: 6px 0;
  }

  .nav a::after {
    bottom: -4px;
  }

  .hero-grid,
  .split-band,
  .detail-hero,
  .dashboard-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    margin-right: 0;
  }

  .action-band {
    background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-blush) 50%, var(--color-mint) 50%, var(--color-mint) 100%);
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card:nth-child(2n) {
    border-right: 0;
  }

  .grid.vendors,
  .skeleton-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-register-shell {
    grid-template-columns: 1fr;
  }

  .vendor-stepper {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .upload-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: 100%;
  }

  .icon-button.menu-button {
    display: inline-flex;
  }

  .header-inner {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    inset: 70px 16px auto 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .nav a::after {
    display: none;
  }

  .header-actions .button.secondary,
  .login-link {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, #fffaf2 0%, #fff 72%, #fff3ed 100%);
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-search {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .search-control {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 54, 48, 0.12);
    padding: 9px 10px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-panel,
  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .dashboard-rail {
    grid-auto-flow: column;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(74, 54, 48, 0.1);
  }

  .enquiry-image {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .container,
  .skeleton-grid {
    width: 100%;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .header-actions .button.primary {
    display: none;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-media {
    min-height: 220px;
    margin-block: 4px 22px;
  }

  .hero-copy {
    padding: 30px 0 18px;
  }

  .hero-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    padding: 7px;
  }

  .search-control {
    min-height: 48px;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 6px;
    padding: 8px;
    border-right: 0;
  }

  .search-control strong {
    font-size: 10px;
  }

  .search-control input,
  .search-control select {
    font-size: 11px;
  }

  .hero-search .button {
    min-height: 48px;
    padding: 0 10px;
  }

  .hero-copy .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
  }

  .trust-strip {
    display: none;
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.categories,
  .grid.vendors,
  .grid.two,
  .skeleton-grid,
  .filters,
  .form-grid,
  .fact-grid,
  .support-grid,
  .services-grid,
  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .support-card {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 54, 48, 0.14);
    padding: 0 0 20px;
  }

  .support-image {
    min-height: 260px;
  }

  .vendor-form {
    padding: 16px;
  }

  .vendor-stepper {
    grid-template-columns: 1fr 1fr;
  }

  .vendor-step-tab {
    min-height: 42px;
    font-size: 12px;
  }

  .inline-control,
  .package-row,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .package-row .full {
    grid-column: auto;
  }

  .package-remove {
    width: 100%;
    margin-top: 0;
  }

  .vendor-form-actions {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions,
  .hero-actions,
  .card-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .carousel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .carousel-head-text {
    padding-left: 0;
    text-align: left;
  }

  .carousel-head-text h2 {
    font-size: 24px;
  }

  .carousel-track .vendor-card {
    flex: 0 0 calc(100% - 48px);
    min-width: 0;
  }

  .carousel-wrapper {
    margin: 0 -12px;
    padding: 16px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Vendor Dashboard Enhancements */
.vendor-dashboard-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.status-pill.status-draft {
  background-color: #fef3c7;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.status-pill.status-accepted {
  background-color: #d1fae5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.status-pill.status-rejected {
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.status-pill.status-cancelled {
  background-color: #f3f4f6;
  color: #4b5563;
  border: 1px solid rgba(75, 85, 99, 0.2);
}

.chat-row-item {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-row-item:hover {
  background-color: var(--color-soft);
  transform: translateX(4px);
}

.message {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.star-rating-input label {
  transition: transform 0.2s ease;
}

.star-rating-input label:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .vendor-dashboard-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Premium Vendor Detail Redesign */
.vendor-detail-header {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 34px;
  box-shadow: var(--shadow-soft);
  background: var(--color-white);
  border: 1px solid var(--color-line);
}

.vendor-detail-banner {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.vendor-detail-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.vendor-detail-profile-wrapper {
  position: relative;
  margin-top: -90px;
  padding: 0 32px 32px;
  z-index: 10;
}

.vendor-detail-profile-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 48px rgba(57, 28, 35, 0.12);
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 28px;
  align-items: center;
}

.vendor-profile-avatar {
  width: 130px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-card);
  background: var(--color-white);
  flex-shrink: 0;
}

.vendor-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-profile-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vendor-profile-info h1 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 36px);
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.2;
}

.vendor-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.vendor-profile-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vendor-profile-meta .divider {
  color: var(--color-line);
}

.vendor-badge-featured {
  background: linear-gradient(135deg, var(--color-gold) 0%, #ecc94b 100%);
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vendor-badge-category {
  background: var(--color-blush);
  color: var(--color-primary);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vendor-trust-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-gold);
  font-weight: 800;
}

.vendor-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Services Offered tags */
.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-tag {
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(165, 22, 78, 0.2);
}

/* Pricing Packages section */
.detail-packages-section {
  margin-top: 30px;
}

.detail-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.premium-package-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(57, 28, 35, 0.02);
}

.premium-package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary);
}

.package-header {
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.package-header span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-muted);
  font-weight: 900;
  display: block;
  margin-bottom: 6px;
}

.package-header h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.3;
}

.package-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
}

.package-inclusions {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.package-inclusions ul {
  margin: 0;
  padding-left: 18px;
}

.package-inclusions li {
  margin-bottom: 6px;
}

.package-action-btn {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius);
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.premium-package-card:hover .package-action-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(165, 22, 78, 0.2);
}

/* Premium DJ Glow Accents */
.vendor-premium-dj {
  border-left: 5px solid var(--color-primary);
  background: radial-gradient(circle at top right, rgba(165, 22, 78, 0.02) 0%, transparent 60%);
}

@media (max-width: 900px) {
  .vendor-detail-profile-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 24px;
    gap: 20px;
  }

  .vendor-profile-meta {
    justify-content: center;
  }

  .vendor-profile-actions {
    justify-content: center;
    width: 100%;
  }

  .vendor-detail-banner {
    height: 220px;
  }

  .vendor-detail-profile-wrapper {
    margin-top: -70px;
    padding: 0 16px 24px;
  }
}


/* Carousels */
.carousel-section {
  padding: 40px 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}

.carousel-head-text {
  flex: 1;
  text-align: center;
  padding-left: 96px;
}

.carousel-head-text h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(28px, 3.35vw, 40px);
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--color-ink);
  line-height: 1.05;
}

.carousel-head-text p {
  margin: 8px 0 0;
  color: #755f60;
  font-size: 15px;
}

.carousel-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.carousel-nav {
  display: flex;
  gap: 8px;
}

.carousel-prev,
.carousel-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.carousel-wrapper {
  margin: 0 -24px;
  padding: 16px 24px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  margin-bottom: -24px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}



.carousel-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track .vendor-card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  min-width: 220px;
}

.carousel-track .testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.carousel-track:has(.testimonial-slide) {
  gap: 0;
  scroll-snap-type: x mandatory;
}

.carousel-wrapper:has(.testimonial-slide) {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.premium-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  max-width: 720px;
  margin: 0 auto;
}

.premium-quote-icon {
  display: none;
}

.premium-card-body {
  flex-grow: 1;
}

.premium-testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
  font-style: italic;
  margin: 0 0 24px 0;
}

.premium-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}

.premium-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.premium-author-name {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
}

.premium-author-role {
  margin: 0;
  font-size: 12px;
  color: var(--color-muted);
}

/* Project Card Styles */
.project-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(165, 31, 77, 0.08);
  box-shadow: 0 10px 40px rgba(82, 44, 40, 0.06);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(82, 44, 40, 0.12);
}

.project-card-media {
  margin: 0;
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #fdfbfb;
}

.project-card-media img,
.project-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .project-card-media img {
  transform: scale(1.08);
}

.project-card-body {
  padding: 36px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: #fff;
}

.project-title h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.project-subtitle {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(165, 31, 77, 0.08);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 20px 0;
}

.project-text {
  font-size: 15px;
  line-height: 1.8;
  color: #6a595a;
  margin: 0;
  flex-grow: 1;
}

.project-actions {
  margin-top: 24px;
}

/* Mobile Grid for Vendor Carousels */
@media (max-width: 768px) {
  .vendor-carousel-section .carousel-nav {
    display: none;
  }

  .vendor-carousel-section .carousel-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .vendor-carousel-section .carousel-track .vendor-card {
    min-width: unset;
    width: 100%;
    flex: unset;
    scroll-snap-align: none;
    box-sizing: border-box;
  }

  .vendor-carousel-section .carousel-head {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .vendor-carousel-section .carousel-head-text {
    text-align: center;
    width: 100%;
  }
}

/* Premium Project / Client Cards */
.project-card {
  background: #ffffff;
  border: 1px solid rgba(165, 31, 77, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 54, 48, 0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-coral));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(165, 31, 77, 0.12);
  border-color: rgba(165, 31, 77, 0.2);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.project-title {
  margin-bottom: 12px;
}

.project-title h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-ink);
  font-family: var(--font-display);
  line-height: 1.3;
}

.project-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-text {
  margin: 0;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.project-card-media {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid rgba(165, 31, 77, 0.05);
}

.project-card-media img,
.project-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-card-media img,
.project-card:hover .project-card-media video {
  transform: scale(1.08);
}

.floating-book-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 20px rgba(165, 22, 78, 0.4);
  z-index: 50;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 1px;
  transition: background 0.2s, padding 0.2s;
}

.floating-book-btn:hover {
  background: var(--color-primary-dark);
  padding: 14px 22px;
}

@media (max-width: 640px) {
  .floating-book-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
}

.vendor-terms-box {
  margin-bottom: 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.vendor-terms-scroll {
  max-height: 340px;
  overflow-y: auto;
  padding: 20px 24px;
  background: #fff;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-ink);
}

.vendor-terms-scroll h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.vendor-terms-scroll h4 {
  margin: 16px 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.vendor-terms-scroll p {
  margin: 4px 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.plan-loading {
  grid-column: 1 / -1;
  padding: 30px;
  text-align: center;
  color: var(--color-muted);
  font-weight: 800;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 2px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  border-color: rgba(165, 31, 77, 0.3);
}

.plan-card.selected {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(165, 31, 77, 0.15), var(--shadow-card);
}

.plan-radio {
  display: none;
}

.plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.plan-card-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  color: var(--color-ink);
}

.plan-badge {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(165, 31, 77, 0.1);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.plan-amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-ink);
}

.plan-gst {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.plan-total {
  width: 100%;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-duration {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.plan-desc {
  margin: 0;
  color: #5a534e;
  font-size: 13px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.plan-features li {
  padding-left: 18px;
  position: relative;
  color: #5a534e;
  font-size: 12px;
  font-weight: 700;
}

.plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 900;
}

@media (max-width: 768px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}