/*
 * Single Vendor Profile — public-facing vendor page.
 *
 * Source: design handoff at ~/Desktop/design_handoff_vendor_profile/.
 * The site supplies its own header/footer; this stylesheet covers only the
 * vendor-profile content region: 11 main sections + a sticky right-rail aside.
 *
 * Layout primitives:
 *   - Body grid: minmax(0, 1fr) 360px, gap 48 (main column ≈ 868px wide)
 *   - Sticky tab nav: 56px tall, top: 0
 *   - Sticky aside: top: 72px (clears tab nav + 16px breathing)
 */

/* ============================================================
   Section 1 — Photo Gallery (1280 × 470)
   ============================================================ */
.vp-gallery { padding: 16px 0 0; }

.vp-gallery__grid {
    display: grid;
    grid-template-columns: 632px 1fr;
    gap: 6px;
    height: 470px;
    width: 100%;
}

.vp-gallery__big {
    border-radius: 6px 0 0 6px;
    position: relative;
    overflow: hidden;
    background: var(--sdwd-soft);
}

.vp-gallery__big img,
.vp-gallery__small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vp-gallery__cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 232px 232px;
    gap: 6px;
}

.vp-gallery__small {
    background: var(--sdwd-soft);
    overflow: hidden;
}

.vp-gallery__small.is-tr { border-top-right-radius: 6px; }
.vp-gallery__small.is-br { border-bottom-right-radius: 6px; }

.vp-gallery__chips {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    gap: 8px;
}

.vp-gallery__chip {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--sdwd-border);
    color: var(--sdwd-subtext);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   Section 2 — Sticky Tab Nav (1280 × 56)
   ============================================================ */
.vp-tabs-wrap {
    position: sticky;
    top: 0;
    z-index: 800;
    background: var(--sdwd-bg);
    border-bottom: 1px solid var(--sdwd-border);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.vp-tabs-wrap > .container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vp-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 56px;
    overflow-x: auto;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
}

.vp-tabs__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.vp-tabs__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 56px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--sdwd-subtext);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.vp-tabs__action:hover {
    color: var(--sdwd-accent);
}

.vp-tabs__action[aria-pressed="true"] {
    color: var(--sdwd-accent);
}

/* Save toggle: render both icons, show one based on aria-pressed state.
   Avoids hardcoding icomoon glyph codepoints (font regen would break them). */
.vp-tabs__action[aria-pressed="false"] .vp-tabs__icon--on,
.vp-tabs__action[aria-pressed="true"]  .vp-tabs__icon--off {
    display: none;
}

.vp-tabs li { margin: 0; }

.vp-tabs a {
    display: inline-flex;
    align-items: center;
    height: 56px;
    color: var(--sdwd-subtext);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding: 0 2px;
}

.vp-tabs a:hover,
.vp-tabs a.is-active {
    color: var(--sdwd-accent);
    border-bottom-color: var(--sdwd-accent);
}

/* ============================================================
   Body grid — main 868 / aside 360 / gap 48
   ============================================================ */
.vp-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    padding: 32px 0 64px;
    align-items: start;
}

.vp-main {
    min-width: 0;
    display: grid;
    gap: 48px;
}

.vp-main h2 {
    font-size: 22px;
    color: var(--sdwd-subtext);
    margin: 0 0 12px;
    font-weight: 800;
}

.vp-aside {
    position: sticky;
    top: 72px;
    display: grid;
    gap: 16px;
}

/* ============================================================
   Section A — Sticky Vendor Card (right rail)
   ============================================================ */
.vp-vendor-card {
    border: 1px solid var(--sdwd-border);
    border-radius: 8px;
    padding: 18px;
    background: var(--sdwd-bg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.vp-vendor-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.vp-vendor-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex: 0 0 48px;
    background: var(--sdwd-soft);
    object-fit: cover;
}

.vp-vendor-card__name {
    margin: 0;
    font-weight: 700;
    color: var(--sdwd-subtext);
    font-size: 15px;
    line-height: 1.2;
}

.vp-vendor-card__role {
    color: var(--sdwd-muted);
    font-size: 13px;
}

.vp-vendor-card__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--sdwd-subtext);
}

.vp-vendor-card__price small {
    font-size: 13px;
    font-weight: 500;
    color: var(--sdwd-muted);
}

.vp-vendor-card__row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sdwd-accent);
    margin: 8px 0;
}

.vp-vendor-card__row a {
    color: var(--sdwd-accent);
    text-decoration: none;
}

.vp-vendor-card__row a:hover { text-decoration: underline; }

.vp-vendor-card__cta {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.vp-vendor-card__cta .btn {
    flex: 1;
    height: 44px;
    font-size: 15px;
}

.vp-vendor-card__phone {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid var(--sdwd-accent);
    border-radius: 4px;
    color: var(--sdwd-accent);
    display: grid;
    place-items: center;
    background: var(--sdwd-bg);
    text-decoration: none;
}

.vp-vendor-card__phone:hover {
    background: var(--sdwd-soft-accent);
}

/* ============================================================
   Section 3 — About
   ============================================================ */
.vp-about__title {
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--sdwd-subtext);
}

.vp-about__copy {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sdwd-body-text);
}

.vp-about__copy.is-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vp-about__more {
    font-weight: 700;
    color: var(--sdwd-subtext);
    text-decoration: underline;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 14px;
}

.vp-about__meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--sdwd-border);
}

.vp-about__meta h4 {
    font-size: 13px;
    margin: 0 0 8px;
    color: var(--sdwd-subtext);
    font-weight: 700;
}

.vp-about__meta ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.vp-about__meta li {
    font-size: 13px;
    padding: 4px 0;
    color: var(--sdwd-body-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vp-about__meta a {
    color: var(--sdwd-accent);
    text-decoration: none;
}

.vp-about__meta a:hover { text-decoration: underline; }

/* ============================================================
   Section 4 — Real Weddings carousel
   ============================================================ */
.vp-carousel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vp-carousel-head__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vp-carousel-arrows {
    display: flex;
    gap: 8px;
}

.vp-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--sdwd-border);
    background: var(--sdwd-bg);
    display: grid;
    place-items: center;
    color: var(--sdwd-subtext);
    cursor: pointer;
    font-size: 16px;
}

.vp-arrow:hover {
    background: var(--sdwd-soft);
}

.vp-rw-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.vp-rw-card {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
}

.vp-rwcard__img {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    background: var(--sdwd-soft);
    overflow: hidden;
}

.vp-rwcard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-rwcard__title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--sdwd-subtext);
}

.vp-rwcard__photos {
    font-size: 12px;
    color: var(--sdwd-muted);
    margin-top: 2px;
}

.vp-rwcard__count {
    font-size: 12px;
    color: var(--sdwd-muted);
    padding: 2px 8px;
    border: 1px solid var(--sdwd-border);
    border-radius: 999px;
}

/* ============================================================
   Section 5 — Pricing & Deals (1–3 packages)
   ============================================================ */
.vp-pricing__head {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.vp-pricing__head-stat {
    font-size: 14px;
    color: var(--sdwd-subtext);
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.vp-pricing__cards {
    display: grid;
    grid-template-columns: repeat(var(--pkg-count, 2), minmax(0, 1fr));
    gap: 16px;
}

.vp-pkg {
    border: 1px solid var(--sdwd-border);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    background: var(--sdwd-bg);
}

.vp-pkg__pop {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--sdwd-accent-bg);
    color: var(--sdwd-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
}

.vp-pkg__title {
    font-size: 16px;
    margin: 0 0 6px;
    color: var(--sdwd-subtext);
    font-weight: 700;
}

.vp-pkg__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--sdwd-subtext);
}

.vp-pkg__price small {
    font-size: 13px;
    font-weight: 500;
    color: var(--sdwd-muted);
}

.vp-pkg__list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: var(--sdwd-body-text);
}

.vp-pkg__list li::before {
    content: '\2713';
    color: var(--sdwd-accent);
    margin-right: 8px;
    font-weight: 700;
}

.vp-pkg__cta {
    display: block;
    text-align: center;
    height: 44px;
    line-height: 42px;
    border: 1px solid var(--sdwd-accent);
    color: var(--sdwd-accent);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.vp-pkg__cta:hover {
    background: var(--sdwd-soft-accent);
}

/* ============================================================
   Section 6 — Availability (calendar — pixel-precise spec)
   ============================================================ */
.vp-cal-card {
    border: 1px solid var(--sdwd-border);
    border-radius: 8px;
    background: var(--sdwd-bg);
    padding: 24px;
    width: 100%;
    max-width: 868px;
}

.vp-cal-years {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    color: var(--sdwd-muted);
    margin-bottom: 14px;
}

.vp-cal-years button {
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 4px 6px;
}

.vp-cal-years .is-active {
    color: var(--sdwd-subtext);
    font-weight: 800;
}

.vp-cal-grid {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    align-items: start;
}

.vp-cal-month-head {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    margin-bottom: 8px;
}

.vp-cal-arrow {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--sdwd-subtext);
    cursor: pointer;
    background: transparent;
    border: 0;
    font-size: 16px;
}

.vp-cal-month-name {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--sdwd-subtext);
}

.vp-cal-dows,
.vp-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.vp-cal-dow {
    height: 28px;
    display: grid;
    place-items: center;
    font-size: 11px;
    color: var(--sdwd-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.vp-cal-day {
    height: 32px;
    display: grid;
    place-items: center;
    font-size: 13px;
    color: var(--sdwd-subtext);
    border-radius: 3px;
}

.vp-cal-day.is-past { color: var(--sdwd-day-past); }
.vp-cal-day.is-full { background: var(--sdwd-soft-accent); }
.vp-cal-day.is-limited {
    background: linear-gradient(135deg, var(--sdwd-soft-accent) 50%, var(--sdwd-mint-bg-deep) 50%);
}

.vp-cal-divider {
    width: 1px;
    background: var(--sdwd-border);
    justify-self: center;
    height: 100%;
    align-self: stretch;
}

.vp-cal-legend {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--sdwd-body-text);
}

.vp-cal-legend__sw {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.vp-cal-legend__sw--full { background: var(--sdwd-soft-accent); }
.vp-cal-legend__sw--lim {
    background: linear-gradient(135deg, var(--sdwd-soft-accent) 50%, var(--sdwd-mint-bg-deep) 50%);
}

/* Confirm availability promo (used under calendar + at end of FAQ). */
.vp-confirm,
.vp-still {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    background: var(--sdwd-soft-accent);
    border-radius: 8px;
    padding: 24px;
    align-items: center;
    margin-top: 20px;
}

.vp-confirm__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--sdwd-subtext);
    margin: 0 0 6px;
}

.vp-confirm__copy {
    font-size: 14px;
    color: var(--sdwd-body-text);
    margin-bottom: 14px;
}

.vp-confirm__btn {
    background: var(--sdwd-accent);
    color: #fff;
    border: 0;
    height: 44px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.vp-confirm__btn:hover {
    background: var(--sdwd-btn-primary-hover);
}

.vp-confirm__img {
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    background: var(--sdwd-soft);
}

/* ============================================================
   Section 7 — FAQ
   ============================================================ */
.vp-faq__q {
    font-size: 14px;
    font-weight: 700;
    color: var(--sdwd-subtext);
    margin: 22px 0 10px;
}

.vp-faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 24px;
    font-size: 14px;
    color: var(--sdwd-body-text);
}

/* Owner-answered Q&A list (sdwd_faqs). */
.vp-faq__qa {
    margin: 0;
}

.vp-faq__qa .vp-faq__q {
    margin: 22px 0 6px;
}

.vp-faq__a {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--sdwd-body-text);
}

.vp-faq__list li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vp-faq__list li::before {
    content: '\2713';
    color: var(--sdwd-accent);
    font-weight: 700;
}

.vp-faq__price {
    font-size: 14px;
    color: var(--sdwd-body-text);
}

.vp-faq__readall {
    display: block;
    margin: 24px auto;
    text-align: center;
}

.vp-faq__readall .btn {
    background: var(--sdwd-bg);
    color: var(--sdwd-subtext);
    border: 1px solid var(--sdwd-border);
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
}

/* ============================================================
   Section 8 — Reviews
   ============================================================ */
.vp-rev-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.vp-rev-summary {
    font-size: 14px;
    color: var(--sdwd-subtext);
    margin-bottom: 16px;
}

.vp-rev-summary__stars {
    color: var(--sdwd-star);
}

.vp-rev-summary__recommended {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--sdwd-muted);
    margin-top: 2px;
    text-transform: uppercase;
}

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

.vp-rev-card {
    border: 1px solid var(--sdwd-border);
    border-radius: 6px;
    padding: 16px;
    background: var(--sdwd-bg);
}

.vp-rev-card__head {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.vp-rev-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex: 0 0 36px;
    background: var(--sdwd-soft);
    object-fit: cover;
}

.vp-rev-card__name {
    font-weight: 700;
    color: var(--sdwd-subtext);
    font-size: 14px;
}

.vp-rev-card__date {
    font-size: 12px;
    color: var(--sdwd-muted);
}

.vp-rev-card__stars {
    color: var(--sdwd-star);
    font-size: 12px;
}

.vp-rev-card__title {
    font-weight: 700;
    font-size: 14px;
    color: var(--sdwd-subtext);
    margin: 8px 0 4px;
}

.vp-rev-card__body {
    font-size: 13px;
    color: var(--sdwd-body-text);
    line-height: 1.5;
}

.vp-rev-card__more {
    color: var(--sdwd-subtext);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.vp-rev-disclaimer {
    font-size: 11px;
    color: var(--sdwd-muted);
    margin-top: 16px;
}

.vp-rev-readall {
    text-align: center;
    margin-top: 8px;
}

.vp-rev-readall .btn {
    background: var(--sdwd-bg);
    color: var(--sdwd-subtext);
    border: 1px solid var(--sdwd-border);
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
}

/* ============================================================
   Section 9 — Network & Endorsements
   ============================================================ */
.vp-endorse__row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--sdwd-border);
}

.vp-endorse__row:last-child { border-bottom: 0; }

.vp-endorse__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sdwd-soft);
    object-fit: cover;
}

.vp-endorse__name {
    font-weight: 700;
    font-size: 14px;
    color: var(--sdwd-subtext);
}

.vp-endorse__sub {
    font-size: 13px;
    color: var(--sdwd-muted);
    margin-bottom: 6px;
}

.vp-endorse__copy {
    font-size: 13px;
    color: var(--sdwd-body-text);
    line-height: 1.5;
}

.vp-network {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.vp-network__img {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    background: var(--sdwd-soft);
    overflow: hidden;
}

.vp-network__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-network__title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--sdwd-subtext);
}

.vp-network__meta {
    font-size: 12px;
    color: var(--sdwd-muted);
}

/* ============================================================
   Section 10 — Map & Location
   ============================================================ */
.vp-map__embed {
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    background: var(--sdwd-soft);
    position: relative;
    border: 1px solid var(--sdwd-border);
    overflow: hidden;
}

.vp-map__embed img,
.vp-map__embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.vp-map__loc {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0;
    font-size: 14px;
    color: var(--sdwd-body-text);
    border-bottom: 1px solid var(--sdwd-border);
}

.vp-map__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.vp-map__tag {
    border: 1px solid var(--sdwd-border);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--sdwd-subtext);
    background: var(--sdwd-bg);
    text-decoration: none;
}

.vp-map__tag:hover {
    background: var(--sdwd-soft);
}

.vp-why {
    background: var(--sdwd-soft-accent);
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.vp-why h3 {
    text-align: center;
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sdwd-subtext);
}

.vp-why ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 700px;
    margin-inline: auto;
    display: grid;
    gap: 10px;
    font-size: 13px;
    color: var(--sdwd-body-text);
}

.vp-why li::before {
    content: '\2713';
    color: var(--sdwd-accent);
    margin-right: 8px;
    font-weight: 700;
}

/* ============================================================
   Section 11 — View Next / Other Vendors
   ============================================================ */
.vp-next {
    padding: 32px 0 16px;
    font-size: 14px;
}

.vp-next a {
    color: var(--sdwd-subtext);
    text-decoration: underline;
    font-weight: 600;
}

.vp-next h3 {
    font-size: 18px;
    margin: 16px 0 12px;
    color: var(--sdwd-subtext);
    font-weight: 700;
}

.vp-next h4 {
    font-size: 14px;
    margin: 16px 0 8px;
    color: var(--sdwd-subtext);
    font-weight: 700;
}

.vp-next-list {
    font-size: 13px;
    line-height: 2;
    color: var(--sdwd-accent);
}

.vp-next-list a {
    color: var(--sdwd-accent);
    text-decoration: none;
    font-weight: 500;
    margin-right: 4px;
}

.vp-next-list a:hover { text-decoration: underline; }

.vp-next-list .dot {
    color: var(--sdwd-muted);
    margin: 0 4px;
}

/* ============================================================
   Responsive — collapse aside below 980px; stack sections.
   ============================================================ */
@media (max-width: 980px) {
    .vp-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .vp-aside {
        position: static;
    }
    .vp-gallery__grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .vp-gallery__big {
        height: 280px;
        border-radius: 6px;
    }
    .vp-gallery__cluster {
        grid-template-rows: 140px 140px;
    }
    .vp-about__meta,
    .vp-rev-cards,
    .vp-network,
    .vp-faq__list {
        grid-template-columns: 1fr 1fr;
    }
    .vp-cal-grid {
        grid-template-columns: 1fr;
    }
    .vp-cal-divider { display: none; }
    .vp-confirm,
    .vp-still {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vp-about__meta,
    .vp-rev-cards,
    .vp-network,
    .vp-faq__list {
        grid-template-columns: 1fr;
    }
    .vp-rw-card {
        flex: 0 0 80%;
    }
    .vp-pricing__cards {
        grid-template-columns: 1fr !important;
    }
}

/* Recommended Vendors row on venue profiles */
.venue-recommended {
    margin: 48px auto;
}
.venue-recommended__title {
    font-family: var(--sdwd-heading-font);
    font-size: var(--sdwd-h2);
    margin: 0 0 20px;
}

/* Claim This Listing — overlay button on the hero image (unclaimed only),
   sits above the Hired/Saved row that follows the gallery. */
.vp-claim-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--sdwd-accent);
    color: #fff;
    border: 0;
    border-radius: var(--sdwd-radius);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.15s ease;
}
.vp-claim-btn:hover { background: #006667; }

.vp-claim-form {
    margin: 16px 0 0;
    padding: 20px;
    background: var(--sdwd-bg);
    border: 1px solid var(--sdwd-border);
    border-radius: var(--sdwd-radius-lg);
    max-width: 632px;
}
.vp-claim-form__title { margin: 0 0 6px; font-size: var(--sdwd-h4); }
.vp-claim-form__hint { margin: 0 0 12px; color: var(--sdwd-muted); font-size: 14px; }
.vp-claim-form textarea {
    width: 100%;
    border: 1px solid var(--sdwd-border);
    border-radius: var(--sdwd-radius);
    padding: 10px 12px;
    font: inherit;
    margin-bottom: 12px;
    resize: vertical;
}
.vp-claim-form__status { margin: 10px 0 0; font-size: 14px; color: var(--sdwd-muted); }
