:root {
  --ivory: #FFF9F5;
  --blush: #E8B7C8;
  --rose-mist: #F7E8EE;
  --champagne: #D8B76E;
  --plum: #3B1F2B;
  --charcoal: #2B2B2B;
  --border: #EADDE2;
  --success: #4F8A6A;
  --warning: #9D6D25;
  --danger: #9B3A46;
  --white: #FFFFFF;
  --shadow-sm: 0 10px 30px rgba(59, 31, 43, 0.08);
  --shadow-md: 0 18px 60px rgba(59, 31, 43, 0.13);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1220px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(216, 183, 110, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--plum);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding-block: 56px 88px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(247, 232, 238, 0.72), rgba(255, 249, 245, 0.95));
}

.section-blush {
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 183, 110, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(247, 232, 238, 0.98), rgba(232, 183, 200, 0.35));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block-end: 10px;
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.125rem, 7vw, 4.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

p {
  margin: 0;
}

.lead {
  color: rgba(43, 43, 43, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.75;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 28px;
  margin-block-end: 34px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-block-start: 14px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--plum);
  color: var(--ivory);
  box-shadow: 0 12px 26px rgba(59, 31, 43, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(59, 31, 43, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--border);
  color: var(--plum);
}

.btn-secondary:hover {
  background: var(--rose-mist);
}

.btn-gold {
  background: var(--champagne);
  color: var(--plum);
}

.btn.full {
  width: 100%;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.icon-wrap {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(216, 183, 110, 0.5);
  border-radius: 16px;
  background: rgba(255, 249, 245, 0.8);
  color: var(--plum);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(234, 221, 226, 0.8);
  background: rgba(255, 249, 245, 0.9);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 245, 0.78);
  box-shadow: 0 12px 34px rgba(59, 31, 43, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(216, 183, 110, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-mist), var(--ivory));
  color: var(--plum);
  font-family: var(--font-heading);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(43, 43, 43, 0.8);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  inset-block-end: -9px;
  inset-inline: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--champagne);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.lang-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.lang-toggle button {
  min-width: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-toggle button.is-active {
  background: var(--plum);
  color: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--plum);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(59, 31, 43, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  z-index: 150;
  display: flex;
  width: min(88vw, 390px);
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--ivory);
  box-shadow: -24px 0 60px rgba(59, 31, 43, 0.16);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--plum);
  font-size: 1.35rem;
}

.mobile-links {
  display: grid;
  gap: 10px;
}

.mobile-links a {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--plum);
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 88px;
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 183, 110, 0.24), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(232, 183, 200, 0.36), transparent 30%),
    linear-gradient(135deg, rgba(247, 232, 238, 0.98), rgba(255, 249, 245, 0.96) 52%, rgba(232, 183, 200, 0.38));
}

.hero::after {
  position: absolute;
  inset-block: 12%;
  inset-inline-end: -140px;
  width: 360px;
  border: 1px solid rgba(216, 183, 110, 0.45);
  border-radius: 999px;
  content: "";
  transform: rotate(18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(216, 183, 110, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 9px 12px;
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr auto;
  gap: 10px;
  width: min(100%, 820px);
  border: 1px solid rgba(234, 221, 226, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  padding: 10px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 249, 245, 0.92);
  color: var(--plum);
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--plum) 50%),
    linear-gradient(135deg, var(--plum) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-inline-end: 42px;
}

.field select option {
  background: var(--ivory);
  color: var(--plum);
}

.field select:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  background-color: rgba(247, 232, 238, 0.45);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(232, 183, 200, 0.95);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216, 183, 110, 0.18);
  outline: 0;
}

.field input.sr-file,
.sr-file {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.file-drop {
  display: grid;
  gap: 4px;
  min-height: 96px;
  align-content: center;
  border: 1px dashed rgba(216, 183, 110, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 183, 200, 0.18), transparent 30%),
    rgba(255, 249, 245, 0.8);
  color: var(--plum);
  padding: 18px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.file-drop strong {
  font-size: 0.96rem;
  font-weight: 900;
}

.file-drop span {
  color: rgba(43, 43, 43, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
}

.file-drop:hover,
.sr-file:focus-visible + .fine-print {
  border-color: var(--champagne);
  box-shadow: 0 14px 34px rgba(59, 31, 43, 0.08);
  transform: translateY(-1px);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.78rem;
}

.field-highlight input,
.field-highlight select,
.field-highlight textarea,
.field-highlight .phone-input {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216, 183, 110, 0.18);
}

.hero-collage {
  position: relative;
  min-height: 560px;
}

.collage-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 249, 245, 0.85);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.collage-card:hover img {
  transform: scale(1.04);
}

.collage-main {
  inset-block-start: 20px;
  inset-inline-end: 0;
  width: 78%;
  height: 390px;
}

.collage-small {
  inset-block-end: 48px;
  inset-inline-start: 0;
  width: 48%;
  height: 230px;
}

.collage-note {
  position: absolute;
  inset-block-end: 10px;
  inset-inline-end: 24px;
  width: 230px;
  border: 1px solid rgba(216, 183, 110, 0.45);
  border-radius: 22px;
  background: rgba(255, 249, 245, 0.86);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.collage-note strong {
  display: block;
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.1;
}

.collage-note span {
  display: block;
  margin-block-start: 8px;
  color: rgba(43, 43, 43, 0.72);
  font-size: 0.88rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.step-card,
.benefit-card,
.testimonial-card,
.panel,
.vendor-card,
.pricing-card,
.dashboard-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.category-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.vendor-card:hover,
.pricing-card:hover {
  border-color: rgba(216, 183, 110, 0.62);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-card p {
  color: rgba(43, 43, 43, 0.72);
  font-size: 0.93rem;
}

.category-card strong {
  align-self: end;
  color: var(--plum);
}

.category-link {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(216, 183, 110, 0.55);
  text-underline-offset: 5px;
  transition: gap 180ms ease, color 180ms ease, text-decoration-color 180ms ease;
}

.category-link:hover {
  gap: 10px;
  color: #24121b;
  text-decoration-color: var(--champagne);
}

.tabs-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.workflow-panel {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  padding: 22px;
}

.workflow-panel h3 {
  margin-block-end: 18px;
}

.steps-grid {
  display: grid;
  gap: 12px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.step-num {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: var(--ivory);
  font-weight: 800;
}

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

.vendor-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vendor-media {
  position: relative;
  display: block;
  aspect-ratio: 1.25 / 0.86;
  overflow: hidden;
}

.vendor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.vendor-card:hover .vendor-media img {
  transform: scale(1.04);
}

.category-pill,
.verified {
  position: absolute;
  inset-block-start: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.category-pill {
  inset-inline-start: 14px;
  background: rgba(255, 249, 245, 0.9);
  color: var(--plum);
}

.verified {
  inset-inline-end: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(216, 183, 110, 0.92);
  color: var(--plum);
}

.verified .icon {
  width: 14px;
  height: 14px;
}

.verified.inline {
  position: static;
  vertical-align: middle;
  margin-inline-start: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
}

.vendor-body {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.vendor-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ivory);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(59, 31, 43, 0.12);
}

.vendor-heading p {
  color: rgba(43, 43, 43, 0.7);
  font-size: 0.9rem;
}

.meta-line,
.profile-meta,
.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(43, 43, 43, 0.74);
  font-size: 0.9rem;
}

.meta-line .icon {
  width: 18px;
  height: 18px;
  color: var(--champagne);
}

.stars {
  color: var(--champagne);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.vendor-desc {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(43, 43, 43, 0.74);
  font-size: 0.93rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vendor-foot,
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-actions {
  flex-wrap: wrap;
}

.vendor-card .service-card-kicker {
  margin-block-end: 2px;
}

.photo-count-pill {
  position: absolute;
  inset-block-end: 14px;
  inset-inline-end: 14px;
  border-radius: 999px;
  background: rgba(59, 31, 43, 0.82);
  color: var(--ivory);
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.extra-hour-line {
  color: rgba(43, 43, 43, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.reliability-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(234, 221, 226, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(232, 183, 200, 0.2), transparent 32%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  margin-block: 18px;
  padding: 20px;
}

.reliability-score {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(216, 183, 110, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--ivory) 57%, transparent 59%),
    conic-gradient(var(--score-color, var(--success)) calc(var(--score, 100) * 1%), rgba(234, 221, 226, 0.74) 0);
  color: var(--plum);
  font-size: 1.8rem;
  font-weight: 900;
}

.reliability-body {
  display: grid;
  gap: 12px;
}

.reliability-body h3 {
  margin: 0;
}

.reliability-body p {
  color: rgba(43, 43, 43, 0.72);
}

.reliability-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.reliability-metrics div {
  border: 1px solid rgba(234, 221, 226, 0.85);
  border-radius: 16px;
  background: rgba(255, 249, 245, 0.72);
  padding: 10px;
}

.reliability-metrics dt {
  color: rgba(43, 43, 43, 0.62);
  font-size: 0.76rem;
  font-weight: 850;
}

.reliability-metrics dd {
  margin: 3px 0 0;
  color: var(--plum);
  font-weight: 900;
}

.reliability-tips {
  border: 1px dashed rgba(216, 183, 110, 0.55);
  border-radius: 16px;
  background: rgba(247, 232, 238, 0.34);
  color: rgba(43, 43, 43, 0.74);
  padding: 12px;
  font-size: 0.9rem;
}

.reliability-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(79, 138, 106, 0.12);
  color: #2B6C4D;
  padding: 7px 10px;
  font-size: 0.75rem;
  font-weight: 900;
}

.reliability-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.price {
  color: var(--plum);
  font-size: 1.1rem;
  font-weight: 900;
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 800;
}

.status-badge.success {
  background: rgba(79, 138, 106, 0.13);
  color: #2B6C4D;
}

.status-badge.warn {
  background: rgba(216, 183, 110, 0.22);
  color: var(--warning);
}

.status-badge.danger {
  background: rgba(155, 58, 70, 0.12);
  color: var(--danger);
}

.status-badge.info,
.status-badge.muted {
  background: rgba(247, 232, 238, 0.78);
  color: var(--plum);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.benefit-card p {
  color: rgba(43, 43, 43, 0.7);
  font-size: 0.92rem;
}

.vendor-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.56fr);
  gap: 38px;
  align-items: center;
  border: 1px solid rgba(216, 183, 110, 0.42);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 249, 245, 0.92), rgba(232, 183, 200, 0.34)),
    var(--rose-mist);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.accent-line {
  width: 80px;
  height: 3px;
  margin-block: 18px;
  border-radius: 999px;
  background: var(--champagne);
}

.mini-profile {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  padding: 18px;
}

.mini-profile img {
  width: 100%;
  aspect-ratio: 1.2;
  border-radius: 22px;
  object-fit: cover;
}

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

.testimonial-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.testimonial-card p {
  color: rgba(43, 43, 43, 0.78);
}

.testimonial-card strong {
  color: var(--plum);
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--plum);
  padding: 20px 22px;
  text-align: start;
  font-weight: 900;
}

.faq-button::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  padding: 0 22px 20px;
  color: rgba(43, 43, 43, 0.74);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 183, 110, 0.16), transparent 28%),
    var(--plum);
  color: rgba(255, 249, 245, 0.82);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: 34px;
}

.site-footer .brand,
.site-footer h3 {
  color: var(--ivory);
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 249, 245, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-block-start: 14px;
}

.footer-links a:hover {
  color: var(--champagne);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-block-start: 44px;
  border-top: 1px solid rgba(255, 249, 245, 0.16);
  padding-block-start: 22px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 64px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 183, 110, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(247, 232, 238, 0.94), rgba(255, 249, 245, 0.95));
}

.page-hero .container {
  display: grid;
  max-width: 960px;
  gap: 16px;
  text-align: center;
}

.explore-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  inset-block-start: 98px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 16px;
}

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

.filter-open,
.filter-close {
  display: none;
}

.explore-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block-end: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 38px;
  text-align: center;
}

.premium-empty {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 320px;
  align-content: center;
  border-style: solid;
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 183, 110, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 232, 238, 0.58));
}

.premium-empty h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.auth-card,
.access-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.access-screen {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
}

.access-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.access-card .hero-actions {
  justify-content: center;
  margin-block-start: 22px;
}

.auth-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.76);
  margin-block-end: 18px;
}

.auth-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--plum);
  padding: 10px 15px;
  font-weight: 800;
}

.auth-tabs button.is-active {
  background: var(--plum);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(59, 31, 43, 0.16);
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(59, 31, 43, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--border);
}

.google-auth-btn {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.94);
  color: var(--plum);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 12px 18px;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.google-auth-btn:hover {
  border-color: rgba(232, 183, 200, 0.95);
  background: var(--rose-mist);
  transform: translateY(-1px);
}

.google-auth-btn:focus-visible {
  outline: 0;
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216, 183, 110, 0.2);
}

.google-auth-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.google-mark {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(234, 221, 226, 0.95);
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-family: Inter, sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
}

.phone-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 50px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 249, 245, 0.92);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.phone-input:focus-within {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216, 183, 110, 0.18);
}

.phone-input .phone-prefix {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-inline-end: 1px solid var(--border);
  background: rgba(247, 232, 238, 0.62);
  color: var(--plum);
  padding-inline: 14px;
  font-weight: 900;
}

.phone-input input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-input input:focus {
  box-shadow: none;
}

.map-location-field {
  border: 1px solid rgba(216, 183, 110, 0.32);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(247, 232, 238, 0.46), rgba(255, 249, 245, 0.86));
  padding: 14px;
}

.coordinate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-block-start: 10px;
}

.map-location-summary {
  border: 1px dashed rgba(216, 183, 110, 0.58);
  border-radius: 14px;
  background: rgba(255, 249, 245, 0.74);
  color: var(--plum);
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.map-location-summary.is-selected {
  border-style: solid;
  border-color: rgba(79, 138, 106, 0.38);
  background: rgba(79, 138, 106, 0.1);
  color: #2B6C4D;
}

.map-confirm-btn {
  justify-self: start;
  min-height: 42px;
  padding: 10px 16px;
}

.auth-note {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(216, 183, 110, 0.42);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(247, 232, 238, 0.78), rgba(255, 249, 245, 0.85));
  padding: 26px;
}

.check-field {
  display: grid;
  gap: 8px;
  align-content: start;
}

.check-field label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--charcoal);
  font-weight: 700;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-block-start: 4px;
  accent-color: var(--plum);
}

.profile-preview {
  display: grid;
  gap: 10px;
  margin-block-start: 10px;
}

.profile-preview img {
  width: 112px;
  height: 112px;
  border: 4px solid var(--ivory);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.media-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-block-start: 12px;
}

.media-preview-item {
  position: relative;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(234, 221, 226, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 10px;
  box-shadow: 0 10px 26px rgba(59, 31, 43, 0.06);
}

.media-preview-item img,
.media-preview-item video {
  width: 100%;
  aspect-ratio: 1.2 / 0.8;
  border-radius: 14px;
  object-fit: cover;
  background: var(--rose-mist);
}

.media-cover-badge {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-start: 18px;
  border-radius: 999px;
  background: rgba(216, 183, 110, 0.92);
  color: var(--plum);
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 900;
}

.media-preview-meta {
  display: grid;
  gap: 8px;
}

.media-preview-meta strong {
  overflow: hidden;
  color: var(--plum);
  font-size: 0.85rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-empty {
  border: 1px solid rgba(216, 183, 110, 0.32);
  border-radius: 16px;
  background: rgba(247, 232, 238, 0.36);
  color: rgba(43, 43, 43, 0.72);
  margin: 4px 0 0;
  padding: 14px;
  font-size: 0.9rem;
}

.media-actions.compact {
  gap: 6px;
}

.media-actions.compact .btn {
  min-height: 34px;
  padding: 8px 10px;
  font-size: 0.78rem;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.btn-danger {
  border-color: rgba(128, 38, 50, 0.2);
  background: #7c2432;
  color: var(--ivory);
}

.service-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.service-row.is-draft {
  border-color: rgba(216, 183, 110, 0.42);
  background: rgba(255, 249, 245, 0.78);
}

.service-row.is-published {
  border-color: rgba(79, 138, 106, 0.2);
}

.service-row-media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1.25 / 0.85;
  background: var(--rose-mist);
}

.service-row-media img,
.service-row-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row-body {
  display: grid;
  gap: 8px;
}

.service-row-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.service-row h3 {
  margin-block-start: 8px;
}

.service-row p {
  color: rgba(43, 43, 43, 0.72);
}

.service-pricing-summary {
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-row > strong {
  white-space: nowrap;
  color: var(--plum);
  font-size: 1.06rem;
}

.service-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(216, 183, 110, 0.24), transparent 28%),
    linear-gradient(135deg, var(--rose-mist), var(--ivory));
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
}

.status-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status-badge {
  gap: 7px;
}

.service-preview-card {
  overflow: hidden;
  border: 1px solid rgba(234, 221, 226, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(59, 31, 43, 0.08);
}

.service-preview-media {
  position: relative;
  aspect-ratio: 1.25 / 0.82;
  overflow: hidden;
  background: var(--rose-mist);
}

.service-preview-media img,
.service-preview-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-preview-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.service-preview-kicker,
.service-card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.service-preview-card h4 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.service-preview-desc {
  color: rgba(43, 43, 43, 0.74);
  font-size: 0.92rem;
}

.service-preview-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-preview-facts span {
  border: 1px solid rgba(234, 221, 226, 0.82);
  border-radius: 14px;
  background: rgba(255, 249, 245, 0.72);
  padding: 9px 10px;
  color: rgba(43, 43, 43, 0.74);
  font-size: 0.8rem;
  font-weight: 750;
}

.service-preview-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-block-start: 1px solid var(--border);
  padding-block-start: 12px;
}

.service-preview-price strong {
  color: var(--plum);
  font-size: 1.1rem;
  font-weight: 900;
}

.service-preview-price span {
  color: rgba(43, 43, 43, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.publish-checklist li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.publish-checklist li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: rgba(216, 183, 110, 0.78);
  content: "";
}

.publish-checklist li.is-complete {
  color: #2B6C4D;
  font-weight: 800;
}

.publish-checklist li.is-complete::before {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
  background: rgba(79, 138, 106, 0.16);
  color: #2B6C4D;
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.vendor-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback {
  display: grid;
  place-items: center;
  background: var(--rose-mist);
  color: var(--plum);
  font-weight: 900;
}

.settings-note {
  border: 1px solid rgba(216, 183, 110, 0.42);
  border-radius: 18px;
  background: rgba(247, 232, 238, 0.5);
  padding: 14px;
  color: rgba(43, 43, 43, 0.74);
}

.profile-missing-list {
  margin-block-start: 16px;
}

.profile-missing-list ul {
  display: grid;
  gap: 6px;
  margin-block-start: 8px;
  padding-inline-start: 20px;
}

.public-only,
.session-only {
  display: contents;
}

.profile-hero {
  position: relative;
  min-height: 530px;
  padding: 300px 24px 44px;
}

.profile-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.profile-hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 420px;
  background: linear-gradient(180deg, rgba(59, 31, 43, 0.12), rgba(59, 31, 43, 0.62));
  content: "";
}

.profile-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 249, 245, 0.92);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.profile-avatar {
  width: 132px;
  height: 132px;
  border: 6px solid var(--ivory);
  border-radius: 50%;
  object-fit: cover;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

.profile-main {
  display: grid;
  gap: 20px;
}

.panel {
  padding: 24px;
}

.panel h2 {
  margin-block-end: 14px;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}

.pricing-table,
.price-breakdown {
  display: grid;
  gap: 10px;
  margin-block-start: 16px;
}

.pricing-table div,
.price-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding-block: 10px;
}

.price-breakdown dt {
  color: rgba(43, 43, 43, 0.72);
}

.price-breakdown dd {
  margin: 0;
  color: var(--plum);
  font-weight: 900;
}

.price-breakdown .total {
  border-block: 1px solid rgba(216, 183, 110, 0.6);
  font-size: 1.08rem;
}

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

.portfolio-grid img,
.video-tile {
  width: 100%;
  aspect-ratio: 1.15 / 0.82;
  border-radius: 18px;
  object-fit: cover;
}

.video-tile {
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(59, 31, 43, 0.78), rgba(59, 31, 43, 0.42)),
    url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=800&q=80") center / cover;
  color: var(--ivory);
}

.media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 16px;
}

.media-preview {
  display: grid;
  gap: 8px;
  margin-block-start: 14px;
}

.media-preview-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--ivory);
  padding: 10px 12px;
}

.profile-side {
  position: sticky;
  inset-block-start: 98px;
}

.booking-box {
  display: grid;
  gap: 12px;
}

.calendar-mock {
  display: grid;
  gap: 8px;
  border: 1px dashed rgba(216, 183, 110, 0.8);
  border-radius: 18px;
  background: rgba(247, 232, 238, 0.54);
  padding: 18px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.dashboard-shell-head {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid rgba(234, 221, 226, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 232, 238, 0.5)),
    var(--ivory);
  box-shadow: var(--shadow-sm);
  margin-block: 0 24px;
  padding: 22px;
}

.dashboard-shell-head h1 {
  margin-block: 6px 4px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.dashboard-shell-head p {
  max-width: 760px;
  color: rgba(43, 43, 43, 0.7);
}

.dashboard-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.dashboard-mobile-nav {
  display: none;
  min-width: min(100%, 280px);
}

.dashboard-mobile-nav span {
  display: block;
  margin-block-end: 6px;
  color: rgba(43, 43, 43, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-sidebar {
  position: sticky;
  inset-block-start: 98px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  padding: 12px;
}

.dashboard-sidebar a {
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--plum);
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.dashboard-sidebar a:hover,
.dashboard-sidebar a[aria-current="page"] {
  border-color: rgba(216, 183, 110, 0.28);
  background: linear-gradient(135deg, rgba(247, 232, 238, 0.88), rgba(255, 249, 245, 0.8));
  transform: translateX(2px);
}

.dashboard-sidebar a:focus-visible {
  outline: 3px solid rgba(216, 183, 110, 0.42);
  outline-offset: 3px;
}

.dashboard-main {
  display: grid;
  gap: 24px;
}

.dashboard-section[hidden] {
  display: none !important;
}

.dashboard-section.is-active {
  animation: dashboardFade 220ms ease;
}

@keyframes dashboardFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-overview-panel {
  display: grid;
  gap: 22px;
}

.compact-heading {
  margin-block-end: 0;
}

.compact-heading p {
  max-width: 760px;
}

.panel-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-block-end: 18px;
}

.panel-head p {
  color: rgba(43, 43, 43, 0.72);
}

.dashboard-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.activity-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(216, 183, 110, 0.36);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(247, 232, 238, 0.58), rgba(255, 249, 245, 0.92));
  padding: 18px;
}

.activity-list {
  display: grid;
  gap: 10px;
}

.activity-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(234, 221, 226, 0.74);
  padding-block: 8px;
}

.activity-list > div:last-child {
  border-bottom: 0;
}

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

.dashboard-card {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 20px;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--blush), var(--champagne));
  opacity: 0.72;
}

.dashboard-card span {
  display: block;
  color: rgba(43, 43, 43, 0.66);
  font-size: 0.88rem;
  font-weight: 800;
}

.dashboard-card strong {
  display: block;
  margin-block-start: 6px;
  color: var(--plum);
  font-size: 1.6rem;
}

.profile-completion-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  margin-block-start: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.profile-completion-card.needs-work {
  border-color: rgba(216, 183, 110, 0.52);
  background: linear-gradient(135deg, rgba(255, 249, 245, 0.92), rgba(247, 232, 238, 0.62));
}

.profile-completion-card h3 {
  margin-block: 6px 8px;
}

.profile-completion-card p,
.profile-completion-card li {
  color: rgba(43, 43, 43, 0.72);
}

.profile-completion-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-start: 12px;
  padding: 0;
  list-style: none;
}

.profile-completion-card li {
  border: 1px solid rgba(216, 183, 110, 0.34);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.86);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.completion-ring {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--ivory) 55%, transparent 57%),
    conic-gradient(var(--champagne) calc(var(--completion) * 1%), rgba(234, 221, 226, 0.9) 0);
  text-align: center;
}

.completion-ring strong {
  color: var(--plum);
  font-size: 1.35rem;
  line-height: 1;
}

.completion-ring span {
  color: rgba(43, 43, 43, 0.66);
  font-size: 0.74rem;
  font-weight: 800;
}

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

.form-grid .span-2 {
  grid-column: 1 / -1;
}

.form-section {
  display: grid;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  padding: 18px;
}

.form-section legend {
  padding-inline: 8px;
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 800;
}

.settings-form {
  align-items: start;
}

.service-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.service-editor-form {
  min-width: 0;
}

.publish-card {
  position: sticky;
  inset-block-start: 98px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.publish-card .vendor-grid {
  grid-template-columns: 1fr;
}

.publish-checklist {
  border: 1px solid rgba(216, 183, 110, 0.28);
  border-radius: 18px;
  background: rgba(255, 249, 245, 0.76);
  padding: 14px;
}

.publish-checklist span {
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.publish-checklist ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-inline-start: 18px;
  color: rgba(43, 43, 43, 0.72);
  font-size: 0.9rem;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.74);
  margin-block: 8px 18px;
  padding: 6px;
}

.dashboard-tabs button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--plum);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 9px 14px;
}

.dashboard-tabs button:hover,
.dashboard-tabs button:focus-visible {
  border-color: rgba(216, 183, 110, 0.44);
  background: rgba(247, 232, 238, 0.58);
  outline: none;
}

.dashboard-tabs button.is-active {
  background: var(--plum);
  box-shadow: 0 10px 22px rgba(59, 31, 43, 0.16);
  color: var(--ivory);
}

.progress-tracker {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(234, 221, 226, 0.88);
  border-radius: 20px;
  background: rgba(255, 249, 245, 0.7);
  padding: 12px;
}

.progress-step {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(43, 43, 43, 0.62);
  font-size: 0.78rem;
}

.progress-dot {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(234, 221, 226, 0.96);
  border-radius: 999px;
  background: #f5f1ef;
  color: rgba(43, 43, 43, 0.58);
  font-weight: 900;
}

.progress-step strong {
  display: block;
  color: var(--plum);
  font-size: 0.82rem;
}

.progress-step p {
  margin: 3px 0 0;
}

.progress-step small {
  display: block;
  margin-block-start: 4px;
  color: rgba(43, 43, 43, 0.58);
  font-weight: 800;
}

.progress-step.is-complete .progress-dot {
  border-color: rgba(64, 133, 88, 0.28);
  background: rgba(64, 133, 88, 0.12);
  color: #2f7047;
}

.progress-step.is-current .progress-dot {
  border-color: rgba(216, 183, 110, 0.7);
  background: var(--plum);
  color: var(--ivory);
}

.next-action,
.email-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(216, 183, 110, 0.28);
  border-radius: 16px;
  background: rgba(255, 249, 245, 0.78);
  padding: 12px 14px;
}

.next-action strong,
.email-status-row span {
  color: var(--plum);
  font-weight: 900;
}

.next-action span {
  color: rgba(43, 43, 43, 0.7);
  font-size: 0.9rem;
}

.notification-panel .panel-head,
.compact-panel-head {
  margin-block-end: 8px;
}

.notification-list {
  display: grid;
  gap: 10px;
}

.notification-item {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(234, 221, 226, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.notification-item.is-unread {
  border-color: rgba(216, 183, 110, 0.46);
  background: rgba(255, 249, 245, 0.92);
}

.notification-item p {
  margin: 4px 0;
  color: rgba(43, 43, 43, 0.72);
}

.notification-item span {
  color: rgba(43, 43, 43, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

.event-group-list {
  display: grid;
  gap: 16px;
  margin-block: 18px;
}

.event-group-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(216, 183, 110, 0.34);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(247, 232, 238, 0.52), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.event-group-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.event-progress-bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(234, 221, 226, 0.78);
}

.event-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--plum), var(--champagne));
}

.event-vendor-list {
  display: grid;
  gap: 8px;
}

.event-vendor-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(234, 221, 226, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
}

.booking-details-modal {
  display: grid;
  gap: 14px;
}

.compact-activity {
  padding: 14px;
}

.booking-list {
  display: grid;
  gap: 14px;
  margin-block-start: 16px;
}

.booking-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.booking-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.booking-card h3 {
  margin-block-start: 6px;
}

.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-meta span {
  border: 1px solid rgba(234, 221, 226, 0.9);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.82);
  color: rgba(43, 43, 43, 0.74);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-money {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.booking-money div {
  border: 1px solid rgba(234, 221, 226, 0.9);
  border-radius: 16px;
  background: rgba(255, 249, 245, 0.7);
  padding: 12px;
}

.booking-money dt {
  color: rgba(43, 43, 43, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
}

.booking-money dd {
  margin: 4px 0 0;
  color: var(--plum);
  font-weight: 900;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-note {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(216, 183, 110, 0.36);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 249, 245, 0.88), rgba(247, 232, 238, 0.62));
  padding: 14px;
}

.policy-note strong {
  color: var(--plum);
}

.policy-note p,
.policy-note span {
  color: rgba(43, 43, 43, 0.72);
  font-size: 0.9rem;
}

.policy-note.is-warning,
.policy-warning {
  border-color: rgba(155, 58, 70, 0.2);
  background: rgba(155, 58, 70, 0.08);
}

.policy-warning {
  border-radius: 14px;
  color: #7c2432;
  font-weight: 800;
  padding: 12px;
}

.cancellation-result {
  border-color: rgba(234, 221, 226, 0.92);
}

.cancellation-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cancellation-breakdown div {
  border: 1px solid rgba(234, 221, 226, 0.88);
  border-radius: 14px;
  background: rgba(255, 249, 245, 0.82);
  padding: 10px;
}

.cancellation-breakdown dt {
  color: rgba(43, 43, 43, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.cancellation-breakdown dd {
  margin: 4px 0 0;
  color: var(--plum);
  font-weight: 900;
}

.cancellation-modal-content {
  display: grid;
  gap: 14px;
}

.compact-card {
  box-shadow: none;
}

.cancellation-agreement-preview {
  margin-block-start: 16px;
}

.qr-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px dashed rgba(216, 183, 110, 0.74);
  border-radius: 20px;
  background: rgba(247, 232, 238, 0.42);
  padding: 14px;
}

.qr-card code {
  display: inline-block;
  margin-block: 6px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--plum);
  padding: 8px 12px;
  font-weight: 900;
}

.checkout-vendor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-vendor span {
  display: block;
  color: rgba(43, 43, 43, 0.7);
  font-size: 0.9rem;
}

.fine-print {
  color: rgba(43, 43, 43, 0.68);
  font-size: 0.88rem;
}

.qr-box {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(90deg, var(--plum) 10px, transparent 10px) 0 0 / 40px 40px,
    linear-gradient(var(--plum) 10px, transparent 10px) 0 0 / 40px 40px,
    var(--ivory);
  color: var(--ivory);
  font-weight: 900;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: rgba(59, 31, 43, 0.38);
  padding: 20px;
}

.modal-card {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(216, 183, 110, 0.36);
  border-radius: 28px;
  background: var(--ivory);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.modal-card h2 {
  margin-block: 8px 10px;
}

.modal-close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
}

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

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.modal-error {
  min-height: 1.1em;
  color: var(--danger);
  font-weight: 800;
}

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

.pricing-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card ul,
.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li,
.check-list li {
  position: relative;
  display: block;
  padding-inline-start: 28px;
}

.pricing-card li::before,
.check-list li::before {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  color: var(--champagne);
  content: "✓";
  font-weight: 900;
}

.toast {
  position: fixed;
  inset-block-end: 22px;
  inset-inline: 22px;
  z-index: 300;
  width: fit-content;
  max-width: min(520px, calc(100vw - 44px));
  margin-inline: auto;
  border: 1px solid rgba(216, 183, 110, 0.5);
  border-radius: 999px;
  background: var(--plum);
  color: var(--ivory);
  padding: 13px 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 460px;
  }

  .category-grid,
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .section {
    padding: 72px 0;
  }

  .container {
    padding-inline: 20px;
  }

  .section-head,
  .auth-layout,
  .tabs-two,
  .vendor-cta,
  .explore-layout,
  .profile-layout,
  .dashboard-layout,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-panel .btn {
    grid-column: 1 / -1;
  }

  .filter-open,
  .filter-close {
    display: inline-flex;
  }

  .filter-panel {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 160;
    max-height: 88vh;
    overflow: auto;
    border-radius: 28px 28px 0 0;
    padding: 22px;
    transform: translateY(105%);
    transition: transform 220ms ease;
  }

  .filter-panel.is-open {
    transform: translateY(0);
  }

  .profile-side,
  .dashboard-sidebar,
  .filter-panel {
    position: static;
  }

  .filter-panel {
    position: fixed;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-mobile-nav {
    display: block;
  }

  .dashboard-shell-head,
  .dashboard-header-actions,
  .service-editor-layout,
  .progress-tracker {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .dashboard-shell-head {
    flex-direction: column;
  }

  .dashboard-header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .dashboard-header-actions .btn,
  .dashboard-mobile-nav {
    width: 100%;
  }

  .publish-card {
    position: static;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .section {
    padding: 56px 0;
  }

  .container {
    padding-inline: 18px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    font-size: 1.42rem;
  }

  .hero {
    padding-block: 52px 62px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-actions,
  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .search-panel,
  .category-grid,
  .benefit-grid,
  .vendor-grid,
  .testimonial-grid,
  .dashboard-grid,
  .coordinate-grid,
  .service-preview-facts,
  .reliability-card,
  .reliability-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 390px;
  }

  .collage-main {
    width: 86%;
    height: 280px;
  }

  .collage-small {
    width: 55%;
    height: 170px;
  }

  .collage-note {
    width: 190px;
    padding: 14px;
  }

  .category-card {
    min-height: 0;
  }

  .vendor-cta {
    padding: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .profile-hero {
    min-height: auto;
    padding-block-start: 240px;
  }

  .profile-cover,
  .profile-hero::before {
    height: 320px;
  }

  .profile-card {
    grid-template-columns: 1fr;
    text-align: start;
  }

  .profile-avatar {
    width: 104px;
    height: 104px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table div,
  .price-breakdown div,
  .explore-topbar,
  .profile-completion-card,
  .service-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .completion-ring {
    width: 98px;
    height: 98px;
  }

  .service-row-media {
    width: 100%;
  }

  .panel-head,
  .booking-card-head,
  .qr-card,
  .booking-money,
  .cancellation-breakdown {
    grid-template-columns: 1fr;
  }

  .panel-head,
  .booking-card-head,
  .event-group-head,
  .notification-item,
  .next-action,
  .email-status-row {
    flex-direction: column;
  }

  .dashboard-actions,
  .form-actions,
  .booking-actions,
  .modal-actions,
  .dashboard-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-tabs {
    border-radius: 22px;
  }

  .pricing-table div,
  .price-breakdown div,
  .explore-topbar {
    flex-direction: column;
  }

  .qr-box {
    width: 150px;
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
