/* ============================================================
   Westchester Blogger — Main Stylesheet
   Light/dark: toggled via .wb-dark on <body>
   ============================================================ */

/* ── Design tokens ──────────────────────────────────────── */
:root {
    --wb-accent:       #C8A56D;
    --wb-accent-dark:  #A8853D;
    --wb-bg:           #F8F7F4;
    --wb-card:         #FFFFFF;
    --wb-muted:        #F0EDE8;
    --wb-border:       #E5E0D8;
    --wb-text:         #1A1A18;
    --wb-text-muted:   #6B6660;
    --wb-nav-bg:       #FFFFFF;
    --wb-footer-bg:    #1A1A18;
    --wb-footer-text:  #F8F7F4;
    --wb-shadow:       0 2px 16px rgba(0,0,0,.07);
    --wb-shadow-hover: 0 8px 32px rgba(0,0,0,.13);
    --wb-radius:       12px;
    --wb-radius-sm:    8px;
    --wb-font-serif:   'Cormorant Garamond', Georgia, serif;
    --wb-font-sans:    'DM Sans', system-ui, sans-serif;
    --wb-nav-h:        100px;
    --wb-green:        #10B981;
    --wb-warning:      #F59E0B;
    --wb-red:          #EF4444;
    --wb-blue:         #0EA5E9;
    --wb-purple:       #7B61FF;
}
.wb-dark {
    --wb-bg:         #12100E;
    --wb-card:       #1E1C19;
    --wb-muted:      #252220;
    --wb-border:     #2E2B27;
    --wb-text:       #F5F2EE;
    --wb-text-muted: #9A9590;
    --wb-nav-bg:     #1A1815;
    --wb-footer-bg:  #0A0908;
    --wb-footer-text:#F5F2EE;
    --wb-shadow:     0 2px 16px rgba(0,0,0,.4);
    --wb-shadow-hover:0 8px 32px rgba(0,0,0,.6);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--wb-font-sans);
    background: var(--wb-bg);
    color: var(--wb-text);
    -webkit-font-smoothing: antialiased;
    transition: background .3s, color .3s;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }
button, input, select, textarea { font-family: var(--wb-font-sans); }
button { cursor: pointer; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(200,165,109,.4); border-radius: 3px; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Navigation ──────────────────────────────────────────── */
.wb-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: var(--wb-nav-bg);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
body.admin-bar .wb-nav { top: 32px; }
@media screen and (max-width:782px) { body.admin-bar .wb-nav { top: 46px; } }
.wb-nav.is-scrolled {
    border-bottom-color: var(--wb-border);
    box-shadow: var(--wb-shadow);
}
.wb-nav__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; height: var(--wb-nav-h); gap: 0;
}

/* Logo */
.wb-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.wb-nav__logo-img {
    height: 75px; width: auto; max-width: 300px;
    object-fit: contain; object-position: center center;
    display: block;
    margin-top: 6px;
}
.wb-nav__inner { align-items: center; }
.wb-nav__links { align-self: center; line-height: 1; }
.wb-nav__actions { align-self: center; }
.wb-nav__logo-mark {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--wb-accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--wb-font-serif); font-size: 20px; font-weight: 700;
}
.wb-nav__logo-text { display: flex; flex-direction: column; overflow: hidden; }
.wb-nav__logo-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wb-nav__logo-name { font-family: var(--wb-font-serif); font-size: 17px; font-weight: 700; color: var(--wb-text); line-height: 1.1; letter-spacing: -.02em; }
.wb-nav__logo-sub  { font-family: var(--wb-font-serif); font-size: 13px; font-weight: 500; color: var(--wb-accent); letter-spacing: .12em; text-transform: uppercase; line-height: 1; }

/* Nav links */
.wb-nav__links { display: flex; align-items: center; gap: 32px; margin-left: 48px; flex: 1; margin-top: 17px; }
.wb-nav__link {
    font-size: 14px; font-weight: 500; color: var(--wb-text-muted); text-decoration: none;
    letter-spacing: .02em; padding: 4px 0;
    border-bottom: 1.5px solid transparent;
    transition: color .2s, border-color .2s;
}
.wb-nav__link:hover, .wb-nav__link.is-active { color: var(--wb-accent); border-bottom-color: var(--wb-accent); }

/* Right actions */
.wb-nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.wb-nav__btn {
    display: inline-flex; align-items: center; text-decoration: none;
    border-radius: var(--wb-radius-sm); padding: 7px 18px;
    font-size: 13px; font-weight: 600; transition: all .2s; border: 1px solid transparent;
}
.wb-nav__btn--ghost { border-color: var(--wb-border); color: var(--wb-text-muted); }
.wb-nav__btn--ghost:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.wb-nav__btn--gold  { background: var(--wb-accent); color: #fff; }
.wb-nav__btn--gold:hover { background: var(--wb-accent-dark); }

/* Theme toggle */
.wb-nav__theme-toggle {
    background: none; border: 1px solid var(--wb-border); border-radius: 20px;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: border-color .2s;
}
.wb-nav__theme-toggle:hover { border-color: var(--wb-accent); }
.wb-nav__theme-icon--dark { display: none; }
.wb-dark .wb-nav__theme-icon--light { display: none; }
.wb-dark .wb-nav__theme-icon--dark  { display: block; }

/* Hamburger */
.wb-nav__hamburger {
    display: none; background: none; border: 1px solid var(--wb-border); border-radius: 6px;
    width: 36px; height: 36px; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    cursor: pointer; flex-shrink: 0;
}
.wb-nav__hamburger span {
    display: block; width: 18px; height: 2px; background: var(--wb-text);
    border-radius: 2px; transition: transform .25s, opacity .2s;
    transform-origin: center;
}
.wb-nav__hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.wb-nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.wb-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.wb-nav__mobile {
    display: none; flex-direction: column; padding: 12px 20px 20px;
    border-top: 1px solid var(--wb-border); background: var(--wb-nav-bg);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    max-height: calc(100vh - var(--wb-nav-h)); overflow-y: auto;
}
.wb-nav__mobile.is-open { display: flex; }
.wb-nav__mobile-link {
    padding: 13px 0; font-size: 15px; font-weight: 500;
    color: var(--wb-text); text-decoration: none;
    border-bottom: 1px solid var(--wb-border);
    display: flex; align-items: center; gap: 8px;
    transition: color .15s;
}
.wb-nav__mobile-link:last-of-type { border-bottom: none; }
.wb-nav__mobile-link:hover, .wb-nav__mobile-link.is-active { color: var(--wb-accent); }
.wb-nav__mobile-divider { height: 1px; background: var(--wb-border); margin: 4px 0; }
.wb-nav__mobile-cta {
    margin-top: 14px; background: var(--wb-accent); color: #fff; border-radius: 8px;
    padding: 13px 20px; text-align: center; font-weight: 600; font-size: 14px;
    text-decoration: none; transition: background .2s;
}
.wb-nav__mobile-cta:hover { background: var(--wb-accent-dark); color: #fff; }

/* Backdrop */
.wb-nav-backdrop {
    display: none; position: fixed; inset: 0; z-index: 199;
    background: rgba(0,0,0,.35); backdrop-filter: blur(2px);
}
.wb-nav-backdrop.is-open { display: block; }

/* Body scroll lock */
body.nav-open { overflow: hidden; }

/* ── Page wrapper ─────────────────────────────────────────── */
.wb-page { min-height: 100vh; }

/* ── HERO ────────────────────────────────────────────────── */
.wb-hero {
    position: relative; height: 92vh; min-height: 580px; max-height: 900px;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.wb-hero__bg {
    position: absolute; inset: 0;
    background: linear-gradient(150deg, #1A2E40 0%, #1E3020 45%, #3D2510 100%);
}
.wb-dark .wb-hero__bg {
    background: linear-gradient(150deg, #0C1A28 0%, #162212 45%, #281800 100%);
}
.wb-hero__grid {
    position: absolute; inset: 0; opacity: .06;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 72px, rgba(255,255,255,.6) 72px, rgba(255,255,255,.6) 73px),
        repeating-linear-gradient(90deg, transparent, transparent 72px, rgba(255,255,255,.6) 72px, rgba(255,255,255,.6) 73px);
}
.wb-hero__orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,165,109,.20) 0%, transparent 70%);
    filter: blur(50px);
}
.wb-hero__orb--1 { top: 8%; right: 12%; width: 640px; height: 640px; }
.wb-hero__orb--2 { bottom: -5%; left: 0; width: 500px; height: 500px; opacity: .6; }
.wb-hero__content {
    position: relative; z-index: 2; text-align: center; padding: 0 24px;
    display: flex; flex-direction: column; align-items: center;
}
.wb-hero__eyebrow {
    font-size: 11px; font-weight: 700; color: var(--wb-accent);
    letter-spacing: .25em; text-transform: uppercase; margin-bottom: 20px;
}
.wb-hero__title {
    font-family: var(--wb-font-serif);
    font-size: clamp(44px, 8vw, 88px);
    font-weight: 700; color: #fff; line-height: 1.04;
    letter-spacing: -.02em; margin: 0 0 18px; max-width: 820px;
    text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.wb-hero__title em { color: var(--wb-accent); font-style: italic; }
.wb-hero__subtitle {
    font-size: 18px; color: rgba(255,255,255,.7);
    max-width: 440px; line-height: 1.65; margin: 0 0 40px;
}

/* Search bar */
.wb-search {
    display: flex; background: #fff; border-radius: 14px; overflow: hidden;
    width: 100%; max-width: 600px; box-shadow: 0 12px 60px rgba(0,0,0,.4);
}
.wb-search__field {
    display: flex; align-items: center; flex: 1; padding: 0 20px; gap: 10px;
}
.wb-search__field input {
    flex: 1; border: none; outline: none; font-family: var(--wb-font-sans);
    font-size: 15px; color: #1A1A18; background: transparent; padding: 18px 0;
}
.wb-search__divider { width: 1px; background: #E5E0D8; margin: 12px 0; }
.wb-search__location {
    display: flex; align-items: center; padding: 0 16px; gap: 8px;
    font-size: 14px; color: #6B6660;
}
.wb-search__btn {
    background: var(--wb-accent); border: none; padding: 0 28px; font-size: 14px;
    font-weight: 600; color: #fff; margin: 6px; border-radius: 10px;
    transition: all .2s; text-decoration: none;
}
.wb-search__btn:hover { background: var(--wb-accent-dark); }

/* Category pills */
.wb-hero__pills { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; justify-content: center; }
.wb-hero__pill {
    background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2); border-radius: 20px;
    padding: 6px 16px; font-size: 12px; font-weight: 500; color: #fff;
    text-decoration: none; transition: background .2s;
}
.wb-hero__pill:hover { background: rgba(255,255,255,.22); }

/* Hero bottom fade */
.wb-hero__fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, transparent, var(--wb-bg));
}

/* ── Stats bar ─────────────────────────────────────────── */
.wb-stats-bar { background: var(--wb-accent); padding: 18px 32px; }
.wb-stats-bar__inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.wb-stat-item { text-align: center; }
.wb-stat-item__num { font-family: var(--wb-font-serif); font-size: 26px; font-weight: 700; color: #fff; line-height: 1; display: block; }
.wb-stat-item__label { font-size: 11px; color: rgba(255,255,255,.78); margin-top: 3px; letter-spacing: .04em; display: block; }

/* ── Section commons ─────────────────────────────────────── */
.wb-section { padding: 52px 32px; }
.wb-page > .wb-section:first-child { padding-top: calc(var(--wb-nav-h) + 52px); }
.wb-section--muted { background: var(--wb-muted); }
.wb-section__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.wb-section__eyebrow { font-size: 11px; font-weight: 700; color: var(--wb-accent); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.wb-section__title { font-family: var(--wb-font-serif); font-size: 40px; font-weight: 700; color: var(--wb-text); margin: 0; line-height: 1.1; }
.wb-section__title--sm { font-size: 32px; }
.wb-section__link {
    background: none; border: 1px solid var(--wb-border); border-radius: var(--wb-radius-sm);
    padding: 9px 20px; font-size: 13px; color: var(--wb-text-muted); text-decoration: none;
    transition: all .2s;
}
.wb-section__link:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.wb-section__inner { max-width: 1200px; margin: 0 auto; }

/* ── Job cards ─────────────────────────────────────────────── */
.wb-job-card {
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius); padding: 24px;
    box-shadow: var(--wb-shadow); transition: all .25s ease;
    cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.wb-job-card:hover { transform: translateY(-2px); box-shadow: var(--wb-shadow-hover); }
.wb-job-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.wb-job-card__cat {
    border-radius: 20px; padding: 3px 12px;
    font-size: 11px; font-weight: 600; letter-spacing: .06em;
}
.wb-job-card__type {
    border-radius: 20px; padding: 3px 10px;
    font-size: 11px; font-weight: 500;
    background: var(--wb-accent)18; color: var(--wb-accent);
}
.wb-job-card__type--parttime { background: var(--wb-muted); color: var(--wb-text-muted); }
.wb-job-card__title { font-family: var(--wb-font-serif); font-size: 20px; font-weight: 700; color: var(--wb-text); margin-bottom: 6px; line-height: 1.2; }
.wb-job-card__meta  { font-size: 13px; color: var(--wb-text-muted); margin-bottom: 12px; }
.wb-job-card__footer { display: flex; justify-content: space-between; align-items: center; }
.wb-job-card__pay   { font-size: 14px; font-weight: 600; color: var(--wb-accent); }
.wb-job-card__date  { font-size: 11px; color: var(--wb-text-muted); }

/* Jobs grid */
.wb-jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

/* Category colours */
.wb-cat--bartender  { background: rgba(123,97,255,.12); color: #7B61FF; }
.wb-cat--server     { background: rgba(14,165,233,.12); color: #0EA5E9; }
.wb-cat--host       { background: rgba(245,158,11,.12); color: #F59E0B; }
.wb-cat--chef       { background: rgba(239,68,68,.12);  color: #EF4444; }
.wb-cat--event-staff{ background: rgba(16,185,129,.12); color: #10B981; }
.wb-cat--default    { background: rgba(200,165,109,.12);color: var(--wb-accent); }

/* ── Infinite marquee slider ────────────────────────────── */
.wb-marquee { padding: 52px 0 44px; }
.wb-marquee__viewport { position: relative; overflow: hidden; }
.wb-marquee__fade-l,
.wb-marquee__fade-r {
    position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.wb-marquee__fade-l { left: 0;  background: linear-gradient(to right, var(--wb-bg), transparent); }
.wb-marquee__fade-r { right: 0; background: linear-gradient(to left,  var(--wb-bg), transparent); }
.wb-marquee__track {
    display: flex; gap: 20px; padding: 12px 0 20px; width: max-content;
    animation: wbMarquee 28s linear infinite;
}
.wb-marquee__track.is-paused { animation-play-state: paused; }
@keyframes wbMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wb-marquee__hint { text-align: center; margin-top: 14px; font-size: 12px; color: var(--wb-text-muted); }

/* Marquee job card */
.wb-marquee-card {
    flex-shrink: 0; width: 300px; background: var(--wb-card);
    border: 1px solid var(--wb-border); border-radius: 14px; padding: 22px;
    box-shadow: var(--wb-shadow); cursor: pointer; transition: all .25s ease;
    text-decoration: none; display: block; color: inherit;
}
.wb-marquee-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.18); }
.wb-marquee-card__top { display: flex; justify-content: space-between; margin-bottom: 14px; }
.wb-marquee-card__logo {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--wb-font-serif); font-size: 22px; font-weight: 700;
}
.wb-marquee-card__type { border-radius: 12px; padding: 3px 10px; font-size: 11px; align-self: flex-start; }
.wb-marquee-card__title { font-family: var(--wb-font-serif); font-size: 20px; font-weight: 700; color: var(--wb-text); margin-bottom: 4px; line-height: 1.2; }
.wb-marquee-card__meta  { font-size: 12px; color: var(--wb-text-muted); margin-bottom: 16px; }
.wb-marquee-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--wb-border); }
.wb-marquee-card__pay   { font-size: 14px; font-weight: 700; color: var(--wb-accent); }
.wb-marquee-card__cat   { border-radius: 10px; padding: 3px 10px; font-size: 11px; font-weight: 600; }

/* Job detail modal */
.wb-modal-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 500;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px); padding: 24px; opacity: 0;
    transition: opacity .2s; pointer-events: none;
}
.wb-modal-backdrop.is-open { opacity: 1; pointer-events: all; }
.wb-modal {
    background: var(--wb-card); border: 1px solid var(--wb-border); border-radius: 20px;
    width: 100%; max-width: 640px; max-height: 88vh; overflow-y: auto;
    box-shadow: 0 32px 100px rgba(0,0,0,.4);
    transform: translateY(20px); transition: transform .2s;
}
.wb-modal-backdrop.is-open .wb-modal { transform: translateY(0); }

/* ── Event cards ──────────────────────────────────────── */
.wb-event-card {
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius);
    box-shadow: var(--wb-shadow); transition: all .25s ease;
    cursor: pointer; text-decoration: none; display: block; color: inherit;
    isolation: isolate;
}
.wb-event-card:hover { transform: translateY(-2px); box-shadow: var(--wb-shadow-hover); }
.wb-event-card__img {
    position: relative; height: 180px; overflow: hidden;
    border-radius: var(--wb-radius) var(--wb-radius) 0 0;
    background: repeating-linear-gradient(45deg, var(--wb-muted) 0px, var(--wb-muted) 8px, var(--wb-border) 8px, var(--wb-border) 9px);
}
.wb-event-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wb-event-card:hover .wb-event-card__img img { transform: scale(1.04); }
.wb-event-card__date-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--wb-accent); border-radius: 6px; padding: 4px 10px;
    font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .04em;
}
.wb-event-card__price-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,.95); border-radius: 6px; padding: 4px 10px;
    font-size: 11px; font-weight: 700; color: #C8A56D; letter-spacing: .04em;
    box-shadow: 0 1px 6px rgba(0,0,0,.12);
}
.wb-event-card__price-badge--sold {
    background: rgba(30,30,30,.75); color: #fff;
}
.wb-event-card__body    { padding: 18px 20px; }
.wb-event-card__cat     { font-size: 11px; color: var(--wb-accent); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.wb-event-card__title   { font-family: var(--wb-font-serif); font-size: 18px; font-weight: 700; color: var(--wb-text); margin-bottom: 6px; line-height: 1.25; }
.wb-event-card__meta    { font-size: 12px; color: var(--wb-text-muted); }

.wb-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Blog cards ──────────────────────────────────────────── */
.wb-blog-card {
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius); overflow: hidden;
    box-shadow: var(--wb-shadow); transition: all .25s;
    text-decoration: none; display: flex; flex-direction: column; color: inherit;
}
.wb-blog-card:hover { transform: translateY(-2px); box-shadow: var(--wb-shadow-hover); }
.wb-blog-card__img  { height: 200px; overflow: hidden; background: var(--wb-muted); }
.wb-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wb-blog-card__img img.wb-img-loaded { opacity: 1; filter: blur(0); }
.wb-blog-card:hover .wb-blog-card__img img { transform: scale(1.04); }
.wb-blog-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.wb-blog-card__cat  { display: inline-block; background: var(--wb-accent)18; color: var(--wb-accent); border-radius: 20px; padding: 3px 12px; font-size: 11px; font-weight: 600; letter-spacing: .04em; margin-bottom: 10px; }
.wb-blog-card__title{ font-family: var(--wb-font-serif); font-size: 20px; font-weight: 700; color: var(--wb-text); margin-bottom: 8px; line-height: 1.25; }
.wb-blog-card__excerpt { font-size: 14px; color: var(--wb-text-muted); line-height: 1.7; margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.wb-blog-card__footer{ display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--wb-text-muted); border-top: 1px solid var(--wb-border); padding-top: 14px; margin-top: auto; }
.wb-blog-card__read-time { color: var(--wb-accent); font-weight: 500; }

.wb-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wb-blog-grid--2col { grid-template-columns: repeat(2, 1fr); }
.wb-blog-grid--3col { grid-template-columns: repeat(3, 1fr); }

/* ── Blog featured card (large) ──────────────────────────── */
.wb-blog-featured {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius); overflow: hidden;
    box-shadow: var(--wb-shadow); text-decoration: none; color: inherit;
    transition: all .25s; margin-bottom: 32px;
}
.wb-blog-featured:hover { box-shadow: var(--wb-shadow-hover); }
.wb-blog-featured__img { min-height: 340px; overflow: hidden; background: var(--wb-muted); }
.wb-blog-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wb-blog-featured:hover .wb-blog-featured__img img { transform: scale(1.03); }
.wb-blog-featured__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.wb-blog-featured__cat  { display: inline-block; background: var(--wb-accent)18; color: var(--wb-accent); border-radius: 20px; padding: 4px 14px; font-size: 11px; font-weight: 600; margin-bottom: 14px; }
.wb-blog-featured__title{ font-family: var(--wb-font-serif); font-size: 32px; font-weight: 700; color: var(--wb-text); line-height: 1.2; margin-bottom: 12px; }
.wb-blog-featured__excerpt{ font-size: 15px; color: var(--wb-text-muted); line-height: 1.7; margin-bottom: 20px; }
.wb-blog-featured__meta { font-size: 13px; color: var(--wb-text-muted); display: flex; gap: 16px; }

/* ── Dashboard CTA ─────────────────────────────────────── */
.wb-dashboard-cta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wb-dash-card {
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: 16px; padding: 36px 28px; cursor: pointer;
    transition: all .25s; text-align: center; text-decoration: none; color: inherit; display: block;
}
.wb-dash-card:hover { transform: translateY(-2px); box-shadow: var(--wb-shadow-hover); border-color: var(--wb-accent); }
.wb-dash-card__icon  { font-size: 40px; margin-bottom: 16px; }
.wb-dash-card__role  { font-family: var(--wb-font-serif); font-size: 24px; font-weight: 700; color: var(--wb-text); margin-bottom: 10px; }
.wb-dash-card__desc  { font-size: 14px; color: var(--wb-text-muted); line-height: 1.65; margin-bottom: 24px; }
.wb-dash-card__cta   { background: var(--wb-accent)18; color: var(--wb-accent); border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 600; }

/* ── How it works ──────────────────────────────────────── */
.wb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wb-step {
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: 16px; padding: 36px 28px; text-align: center;
}
.wb-step__num    { font-family: var(--wb-font-serif); font-size: 52px; font-weight: 700; color: var(--wb-accent); opacity: .3; line-height: 1; margin-bottom: 12px; }
.wb-step__title  { font-family: var(--wb-font-serif); font-size: 22px; font-weight: 700; color: var(--wb-text); margin-bottom: 10px; }
.wb-step__desc   { font-size: 14px; color: var(--wb-text-muted); line-height: 1.65; }

/* ── Page headers ──────────────────────────────────────── */
.wb-page-header {
    background: var(--wb-muted); padding: calc(var(--wb-nav-h) + 32px) 32px 24px;
    border-bottom: 1px solid var(--wb-border);
}
.wb-dark .wb-page-header { background: #1A1815; }
.wb-page-header__inner   { max-width: 1200px; margin: 0 auto; }
.wb-page-header__eyebrow { font-size: 11px; font-weight: 700; color: var(--wb-accent); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.wb-page-header__title   { font-family: var(--wb-font-serif); font-size: 48px; font-weight: 700; color: var(--wb-text); margin: 0 0 8px; line-height: 1.1; }
.wb-page-header__subtitle{ font-size: 15px; color: var(--wb-text-muted); margin: 0 0 28px; }

/* ── Jobs archive layout ────────────────────────────────── */
.wb-jobs-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }

/* Sidebar */
.wb-sidebar { position: sticky; top: calc(var(--wb-nav-h) + 20px); }
.wb-sidebar__card { background: var(--wb-card); border: 1px solid var(--wb-border); border-radius: var(--wb-radius); padding: 24px; }
.wb-sidebar__section { margin-bottom: 28px; }
.wb-sidebar__section:last-child { margin-bottom: 0; }
.wb-sidebar__label { font-size: 11px; font-weight: 700; color: var(--wb-text-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.wb-sidebar__btn {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; background: none; border: none; border-radius: 6px;
    padding: 8px 12px; font-size: 13px; color: var(--wb-text); text-align: left;
    cursor: pointer; transition: all .15s;
}
.wb-sidebar__btn:hover { background: var(--wb-muted); }
.wb-sidebar__btn.is-active { background: var(--wb-accent)18; color: var(--wb-accent); font-weight: 600; }
.wb-sidebar__count { font-size: 11px; color: var(--wb-text-muted); }
.wb-sidebar__cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--wb-border); }
.wb-sidebar__cta-text { font-size: 13px; color: var(--wb-text-muted); margin-bottom: 10px; }
.wb-sidebar__cta-btn { display: block; text-align: center; background: var(--wb-accent); color: #fff; border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 600; text-decoration: none; }

/* Jobs list items */
.wb-job-list { display: flex; flex-direction: column; gap: 16px; }
.wb-job-item {
    background: var(--wb-card); border: 1px solid var(--wb-border); border-radius: var(--wb-radius);
    padding: 22px 24px; display: flex; align-items: center; gap: 20px;
    transition: all .2s; box-shadow: var(--wb-shadow); text-decoration: none; color: inherit;
}
.wb-job-item:hover { box-shadow: var(--wb-shadow-hover); border-color: var(--wb-accent)44; }
.wb-job-item__logo {
    width: 48px; height: 48px; border-radius: 10px; background: var(--wb-muted);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-family: var(--wb-font-serif); font-size: 18px; font-weight: 700; color: var(--wb-accent);
}
.wb-job-item__body { flex: 1; }
.wb-job-item__title{ font-family: var(--wb-font-serif); font-size: 19px; font-weight: 700; color: var(--wb-text); margin-bottom: 3px; }
.wb-job-item__meta { font-size: 13px; color: var(--wb-text-muted); }
.wb-job-item__right{ display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.wb-job-item__pay  { font-size: 14px; font-weight: 600; color: var(--wb-accent); }
.wb-job-item__tags { display: flex; gap: 6px; }
.wb-job-item__tag  { background: var(--wb-muted); color: var(--wb-text-muted); border-radius: 12px; padding: 2px 10px; font-size: 11px; }

/* ── Blog layout ─────────────────────────────────────────── */
.wb-blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.wb-blog-layout__main {}
.wb-blog-layout__sidebar {}

/* Blog sidebar widgets */
.wb-widget { background: var(--wb-card); border: 1px solid var(--wb-border); border-radius: var(--wb-radius); padding: 24px; margin-bottom: 24px; }
.widget__title { font-family: var(--wb-font-serif); font-size: 20px; font-weight: 700; color: var(--wb-text); margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--wb-border); }

/* Jobs in sidebar */
.wb-sidebar-jobs { display: flex; flex-direction: column; gap: 14px; }
.wb-sidebar-job { text-decoration: none; color: inherit; display: block; padding: 14px; background: var(--wb-muted); border-radius: var(--wb-radius-sm); transition: all .2s; }
.wb-sidebar-job:hover { background: var(--wb-accent)18; }
.wb-sidebar-job__cat { font-size: 10px; font-weight: 600; color: var(--wb-accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.wb-sidebar-job__title{ font-family: var(--wb-font-serif); font-size: 16px; font-weight: 700; color: var(--wb-text); margin-bottom: 4px; line-height: 1.2; }
.wb-sidebar-job__meta { font-size: 12px; color: var(--wb-text-muted); }
.wb-sidebar-job__pay  { font-size: 12px; font-weight: 600; color: var(--wb-accent); margin-top: 4px; }
.wb-sidebar-view-all  { display: block; text-align: center; padding: 10px; font-size: 13px; font-weight: 600; color: var(--wb-accent); text-decoration: none; border-top: 1px solid var(--wb-border); margin-top: 14px; padding-top: 14px; }

/* ── Single blog post ─────────────────────────────────────── */
.wb-single__header { padding: 56px 0 40px; border-bottom: 1px solid var(--wb-border); margin-bottom: 48px; }
.wb-single__cat    { display: inline-block; background: var(--wb-accent)18; color: var(--wb-accent); border-radius: 20px; padding: 4px 14px; font-size: 11px; font-weight: 600; margin-bottom: 18px; text-decoration: none; }
.wb-single__title  { font-family: var(--wb-font-serif); font-size: clamp(32px, 5vw, 54px); font-weight: 700; color: var(--wb-text); line-height: 1.1; margin-bottom: 20px; }
.wb-single__meta   { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--wb-text-muted); }
.wb-single__meta a { color: var(--wb-text-muted); text-decoration: none; }
.wb-single__meta a:hover { color: var(--wb-accent); }
.wb-single__hero   { margin: 32px 0 48px; border-radius: var(--wb-radius); overflow: hidden; max-height: 520px; }
.wb-single__hero img { width: 100%; height: 100%; object-fit: cover; }

/* Article content */
.wb-entry-content {
    font-size: 17px; line-height: 1.8; color: var(--wb-text);
    max-width: 720px;
}
.wb-entry-content h2, .wb-entry-content h3, .wb-entry-content h4 {
    font-family: var(--wb-font-serif); font-weight: 700; color: var(--wb-text);
    margin: 2em 0 .7em; line-height: 1.2;
}
.wb-entry-content h2 { font-size: 34px; }
.wb-entry-content h3 { font-size: 26px; }
.wb-entry-content h4 { font-size: 20px; }
.wb-entry-content p  { margin-bottom: 1.5em; }
.wb-entry-content a  { color: var(--wb-accent); text-decoration: underline; text-decoration-color: var(--wb-accent)66; }
.wb-entry-content img { border-radius: var(--wb-radius-sm); margin: 1.5em 0; max-width: 100%; height: auto; display: block; }
.wb-img-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 1.5em 0; }
.wb-img-grid img { margin: 0; width: 100%; height: 260px; object-fit: cover; cursor: zoom-in; transition: opacity .2s; }
.wb-img-grid img:hover { opacity: .85; }
/* Lightbox */
.wb-lightbox { display: none; position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; padding: 20px; }
.wb-lightbox.is-open { display: flex; }
.wb-lightbox__img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 6px; box-shadow: 0 8px 40px rgba(0,0,0,.6); }
.wb-lightbox__close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: #fff; font-size: 36px; line-height: 1; cursor: pointer; opacity: .8; }
.wb-lightbox__close:hover { opacity: 1; }
.wb-lightbox__prev, .wb-lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 28px; padding: 12px 18px; cursor: pointer; border-radius: 4px; }
.wb-lightbox__prev { left: 16px; }
.wb-lightbox__next { right: 16px; }
.wb-lightbox__prev:hover, .wb-lightbox__next:hover { background: rgba(255,255,255,.3); }
.wb-entry-content p:empty { display: none; }
.wb-entry-content p[data-rte-preserve-empty] { display: none; }
.wb-entry-content .sqs-html-content { margin: 0; }
.wb-entry-content p { white-space: normal !important; }
.wb-entry-content blockquote {
    border-left: 3px solid var(--wb-accent); margin: 2em 0; padding: 1em 0 1em 24px;
    font-family: var(--wb-font-serif); font-size: 22px; font-style: italic; color: var(--wb-text-muted);
}
.wb-entry-content ul, .wb-entry-content ol { padding-left: 24px; margin-bottom: 1.5em; }
.wb-entry-content li { margin-bottom: .5em; }
.wb-entry-content pre  { background: var(--wb-muted); padding: 20px; border-radius: 8px; overflow-x: auto; font-size: 14px; margin: 2em 0; }
.wb-entry-content code { background: var(--wb-muted); border-radius: 4px; padding: 2px 6px; font-size: 13px; }
.wb-entry-content pre code { background: none; padding: 0; }

/* ── Single job/event pages ─────────────────────────────── */
.wb-job-single, .wb-event-single {
    max-width: 800px; margin: 0 auto; padding: calc(var(--wb-nav-h) + 48px) 32px 48px;
}
.wb-job-single__header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.wb-job-single__logo { width: 60px; height: 60px; border-radius: 14px; background: var(--wb-muted); display: flex; align-items: center; justify-content: center; font-family: var(--wb-font-serif); font-size: 28px; font-weight: 700; color: var(--wb-accent); flex-shrink: 0; }
.wb-job-single__title { font-family: var(--wb-font-serif); font-size: 36px; font-weight: 700; color: var(--wb-text); margin: 0 0 6px; }
.wb-job-single__company { font-size: 15px; color: var(--wb-text-muted); }
.wb-job-single__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.wb-job-single__badge { border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 600; }
.wb-job-single__badge--accent { background: var(--wb-accent)18; color: var(--wb-accent); }
.wb-job-single__badge--muted  { background: var(--wb-muted); color: var(--wb-text); }
.wb-job-single__meta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 28px 0; }
.wb-job-single__meta-item { background: var(--wb-muted); border-radius: 10px; padding: 14px 16px; }
.wb-job-single__meta-label { font-size: 10px; font-weight: 700; color: var(--wb-text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.wb-job-single__meta-value { font-size: 14px; font-weight: 500; color: var(--wb-text); }
.wb-job-single__apply {
    display: block; width: 100%; background: var(--wb-accent); color: #fff; border: none;
    border-radius: 10px; padding: 15px; font-size: 15px; font-weight: 600; text-align: center;
    cursor: pointer; transition: all .2s; text-decoration: none;
    box-shadow: 0 6px 24px var(--wb-accent)44; margin: 28px 0 12px;
}
.wb-job-single__apply:hover { background: var(--wb-accent-dark); }
.wb-job-single__save {
    display: block; width: 100%; background: none; color: var(--wb-text-muted);
    border: 1px solid var(--wb-border); border-radius: 10px; padding: 12px;
    font-size: 14px; cursor: pointer; transition: all .2s;
}
.wb-job-single__save:hover { border-color: var(--wb-accent); color: var(--wb-accent); }

/* ── WooCommerce Checkout ─────────────────────────────────── */
.wb-checkout { max-width: 900px; margin: 0 auto; padding: 48px 32px; }
.wb-checkout__title { font-family: var(--wb-font-serif); font-size: 36px; font-weight: 700; color: var(--wb-text); margin: 0 0 8px; }
.wb-checkout__subtitle { font-size: 14px; color: var(--wb-text-muted); margin: 0 0 32px; }
.wb-checkout__layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.wb-checkout__form-card {
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius); padding: 32px; box-shadow: var(--wb-shadow);
}
.wb-checkout__stripe-header { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.wb-checkout__stripe-badge {
    background: #635BFF; border-radius: 6px; padding: 4px 10px;
    font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .04em;
}
.wb-checkout__stripe-label { font-size: 12px; color: var(--wb-text-muted); flex: 1; }
.wb-checkout__lock { font-size: 16px; }
.wb-checkout__field-group { margin-bottom: 20px; }
.wb-checkout__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wb-checkout__label { display: block; font-size: 12px; font-weight: 600; color: var(--wb-text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.wb-checkout__input {
    width: 100%; background: var(--wb-bg); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-sm); padding: 12px 14px;
    font-family: var(--wb-font-sans); font-size: 14px; color: var(--wb-text); outline: none;
    transition: border-color .2s;
}
.wb-checkout__input:focus { border-color: var(--wb-accent); }
.wb-checkout__submit {
    width: 100%; background: var(--wb-accent); border: none; border-radius: var(--wb-radius-sm);
    padding: 14px; font-family: var(--wb-font-sans); font-size: 15px; font-weight: 600;
    color: #fff; cursor: pointer; transition: all .2s;
    box-shadow: 0 4px 16px var(--wb-accent)44;
}
.wb-checkout__submit:hover { background: var(--wb-accent-dark); }

/* Order summary card */
.wb-checkout__summary {
    background: var(--wb-muted); border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius); padding: 28px;
}
.wb-checkout__summary-title { font-size: 11px; font-weight: 700; color: var(--wb-text-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.wb-checkout__product-name { font-family: var(--wb-font-serif); font-size: 22px; font-weight: 700; color: var(--wb-text); margin-bottom: 4px; }
.wb-checkout__product-desc { font-size: 13px; color: var(--wb-text-muted); margin-bottom: 20px; }
.wb-checkout__features { list-style: none; padding: 0; margin: 0 0 20px; border-top: 1px solid var(--wb-border); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.wb-checkout__features li { display: flex; gap: 8px; font-size: 12px; color: var(--wb-text-muted); }
.wb-checkout__features li::before { content: '✓'; color: var(--wb-accent); font-weight: 700; flex-shrink: 0; }
.wb-checkout__total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--wb-border); padding-top: 16px; margin-top: 4px; }
.wb-checkout__total-label { font-size: 14px; font-weight: 600; color: var(--wb-text); }
.wb-checkout__total-price { font-family: var(--wb-font-serif); font-size: 28px; font-weight: 700; color: var(--wb-accent); }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { margin: 48px 0; display: flex; justify-content: center; }
.pagination ul { list-style: none; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; }
.pagination ul li a,
.pagination ul li span {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 10px;
    border-radius: var(--wb-radius-sm);
    font-size: 14px; font-weight: 500; text-decoration: none;
    border: 1px solid var(--wb-border); color: var(--wb-text);
    transition: all .2s; white-space: nowrap;
}
.pagination ul li a.prev,
.pagination ul li a.next { gap: 6px; padding: 0 16px; }
.pagination ul li a:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.pagination ul li .current { background: var(--wb-accent); color: #fff; border-color: var(--wb-accent); }
.pagination ul li .dots { border: none; color: var(--wb-text-muted); pointer-events: none; }

/* ── Search bar in archives ──────────────────────────────── */
.wb-archive-search { display: flex; gap: 12px; max-width: 600px; margin-bottom: 28px; }
.wb-archive-search input {
    flex: 1; background: var(--wb-card); border: 1px solid var(--wb-border); border-radius: var(--wb-radius-sm);
    padding: 12px 18px; font-family: var(--wb-font-sans); font-size: 14px; color: var(--wb-text); outline: none;
}
.wb-archive-search input:focus { border-color: var(--wb-accent); }
.wb-archive-search button {
    background: var(--wb-accent); border: none; border-radius: var(--wb-radius-sm);
    padding: 12px 24px; font-size: 14px; font-weight: 600; color: #fff; transition: all .2s;
}
.wb-archive-search button:hover { background: var(--wb-accent-dark); }

/* ── Category filter pills ────────────────────────────────── */
.wb-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.wb-filter-pill {
    background: var(--wb-card); border: 1px solid var(--wb-border); border-radius: 20px;
    padding: 7px 18px; font-size: 13px; color: var(--wb-text-muted); text-decoration: none;
    transition: all .2s;
}
.wb-filter-pill:hover, .wb-filter-pill.is-active { background: var(--wb-accent); border-color: var(--wb-accent); color: #fff; font-weight: 600; }

/* ── CTA section ─────────────────────────────────────────── */
.wb-cta-card {
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: 16px; padding: 40px; text-align: center; margin-top: 48px;
}
.wb-cta-card__eyebrow { font-size: 11px; font-weight: 700; color: var(--wb-accent); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.wb-cta-card__title   { font-family: var(--wb-font-serif); font-size: 32px; font-weight: 700; color: var(--wb-text); margin: 0 0 12px; }
.wb-cta-card__text    { font-size: 14px; color: var(--wb-text-muted); margin-bottom: 24px; }
.wb-cta-card__btn     { display: inline-block; background: var(--wb-accent); color: #fff; border-radius: 8px; padding: 12px 32px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .2s; }
.wb-cta-card__btn:hover { background: var(--wb-accent-dark); }

/* ── General CTA button ──────────────────────────────────── */
.wb-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--wb-accent); color: #fff; border-radius: var(--wb-radius-sm);
    padding: 14px 40px; font-size: 15px; font-weight: 600; text-decoration: none;
    transition: all .2s; border: none; cursor: pointer;
    box-shadow: 0 6px 24px var(--wb-accent)44;
}
.wb-btn:hover { background: var(--wb-accent-dark); transform: translateY(-1px); }

/* ── Footer ─────────────────────────────────────────────── */
.wb-footer { background: var(--wb-footer-bg); color: var(--wb-footer-text); padding: 60px 32px 32px; }
.wb-footer__inner { max-width: 1200px; margin: 0 auto; }
.wb-footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.wb-footer__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.wb-footer__logo-name { font-family: var(--wb-font-serif); font-size: 20px; font-weight: 700; color: #ffffff; display: block; letter-spacing: -.01em; }
.wb-footer__logo-sub  { font-size: 11px; color: #B8963E; letter-spacing: .12em; text-transform: uppercase; display: block; margin-top: 2px; }
.wb-footer__tagline { font-size: 14px; color: rgba(245,242,238,.55); line-height: 1.7; max-width: 280px; }
.wb-footer__col-title { font-size: 11px; font-weight: 700; color: var(--wb-accent); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.wb-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.wb-footer__links li a { font-size: 14px; color: rgba(245,242,238,.55); text-decoration: none; transition: color .2s; }
.wb-footer__links li a:hover { color: #F5F2EE; }
.wb-footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.wb-footer__bottom span { font-size: 12px; color: rgba(245,242,238,.35); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .wb-events-grid  { grid-template-columns: repeat(2, 1fr); }
    .wb-blog-grid    { grid-template-columns: repeat(2, 1fr); }
    .wb-blog-grid--3col { grid-template-columns: repeat(2, 1fr); }
    .wb-blog-layout  { grid-template-columns: 1fr; }
    .wb-footer__cols { grid-template-columns: 1fr 1fr; }
    .wb-jobs-layout  { grid-template-columns: 180px 1fr; }
    .wb-dashboard-cta{ grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 1024px) {
    .wb-nav__links, .wb-nav__btn--ghost, .wb-nav__btn--gold { display: none; }
    .wb-nav__hamburger { display: flex; }
}
@media (max-width: 768px) {
    :root { --wb-nav-h: 60px; }
    .container, .wb-section, .wb-page-header { padding-left: 20px; padding-right: 20px; }
    .wb-hero__title    { font-size: clamp(36px, 10vw, 60px); }
    .wb-hero__subtitle { font-size: 16px; }
    .wb-events-grid    { grid-template-columns: 1fr; }
    .wb-blog-grid      { grid-template-columns: 1fr; }
    .wb-blog-grid--3col  { grid-template-columns: 1fr; }
    .wb-blog-featured  { grid-template-columns: 1fr; }
    .wb-blog-layout    { grid-template-columns: 1fr; }
    .wb-steps          { grid-template-columns: 1fr; }
    .wb-jobs-layout    { grid-template-columns: 1fr; }
    .wb-sidebar        { position: static; }
    .wb-footer__cols   { grid-template-columns: 1fr 1fr; gap: 24px; }
    .wb-checkout__layout { grid-template-columns: 1fr; }
    .wb-stats-bar__inner { gap: 32px; }
    .wb-section__title { font-size: 30px; }
    .wb-page-header__title { font-size: 36px; }
    .wb-single__header { padding: 32px 0 24px; margin-bottom: 28px; }
    .wb-single__hero   { margin: 20px 0 28px; }
    .wb-img-grid { grid-template-columns: 1fr; }
    .wb-img-grid img { height: 220px; }
    .wb-entry-content h2 { font-size: 24px; }
    .wb-entry-content h3 { font-size: 20px; }
    .wb-lightbox__prev { left: 4px; }
    .wb-lightbox__next { right: 4px; }
}
@media (max-width: 480px) {
    .wb-footer__cols { grid-template-columns: 1fr; }
    .wb-stats-bar__inner { gap: 24px; }
    .wb-job-item { flex-wrap: wrap; }
    .wb-hero { height: auto; min-height: 100vh; padding: 80px 0 40px; }
    .wb-search { flex-direction: column; border-radius: 12px; }
    .wb-search__divider { display: none; }
    .wb-search__location { padding: 12px 20px; border-top: 1px solid #E5E0D8; }
}
.wb-nav__theme-icon svg { width: 16px; height: 16px; display: block; }


/* ════════════════════════════════════════════
   WESTCHESTER CONCIERGE
════════════════════════════════════════════ */
.wbc__search-bar {
    display: flex; align-items: center; gap: 10px;
    background: var(--wb-card); border: 1px solid var(--wb-border);
    border-radius: 10px; padding: 10px 18px; max-width: 480px; margin-top: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.wbc__search-bar svg { color: var(--wb-text-muted); flex-shrink: 0; }
.wbc__search-bar input {
    flex: 1; background: none; border: none; outline: none;
    color: var(--wb-text); font-size: 14px; font-family: var(--wb-font-sans);
}
.wbc__search-bar input::placeholder { color: var(--wb-text-muted); }

/* Filter pills */
.wbc__filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.wbc__pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
    border: 1px solid var(--wb-border); background: var(--wb-card);
    color: var(--wb-text-muted); cursor: pointer; transition: all .2s;
}
.wbc__pill:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.wbc__pill--active { background: var(--wb-accent); border-color: var(--wb-accent); color: #fff; }
.wbc__pill-count { font-size: 11px; opacity: .75; }

/* Category grid */
.wbc__cat-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px; margin-bottom: 48px;
}
.wbc__cat-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 24px 16px; border-radius: var(--wb-radius);
    background: var(--wb-card); border: 1px solid var(--wb-border);
    cursor: pointer; transition: all .2s; text-align: center;
    box-shadow: var(--wb-shadow);
}
.wbc__cat-card:hover { border-color: var(--wb-accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.wbc__cat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(var(--wb-accent-rgb, 200,165,109),.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--wb-accent);
}
.wbc__cat-icon svg { width: 24px; height: 24px; }
.wbc__cat-name { font-size: 13px; font-weight: 600; color: var(--wb-text); line-height: 1.3; }
.wbc__cat-count { font-size: 11px; color: var(--wb-text-muted); }

/* Results header */
.wbc__results-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.wbc__results-header span { font-size: 14px; font-weight: 600; color: var(--wb-text); }
.wbc__clear-filter {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--wb-text-muted); background: none;
    border: 1px solid var(--wb-border); border-radius: 6px;
    padding: 5px 10px; cursor: pointer; transition: all .15s;
}
.wbc__clear-filter:hover { color: var(--wb-accent); border-color: var(--wb-accent); }

/* Business card grid */
.wbc__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.wbc__card {
    display: flex; flex-direction: column; border-radius: var(--wb-radius);
    background: var(--wb-card); border: 1px solid var(--wb-border);
    overflow: hidden; text-decoration: none;
    box-shadow: var(--wb-shadow); transition: all .2s;
}
.wbc__card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: var(--wb-accent); }
.wbc__card-img { height: 180px; overflow: hidden; background: var(--wb-muted); }
.wbc__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.wbc__card:hover .wbc__card-img img { transform: scale(1.04); }
.wbc__card-img--placeholder {
    display: flex; align-items: center; justify-content: center;
    color: var(--wb-border);
}
.wbc__card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.wbc__card-cat {
    font-size: 10px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--wb-accent);
}
.wbc__card-title { font-family: var(--wb-font-serif); font-size: 17px; font-weight: 700; color: var(--wb-text); line-height: 1.2; margin: 0; }
.wbc__card-addr { font-size: 12px; color: var(--wb-text-muted); margin: 0; }
.wbc__card-desc { font-size: 13px; color: var(--wb-text-muted); line-height: 1.5; margin: 4px 0 0; }
.wbc__empty { padding: 48px 0; text-align: center; color: var(--wb-text-muted); font-size: 14px; }

/* Loading skeleton */
.wbc__skeleton { animation: wbc-pulse 1.4s ease-in-out infinite; }
.wbc__skeleton-card { border-radius: var(--wb-radius); background: var(--wb-muted); height: 280px; }
@keyframes wbc-pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* Single listing */
.wbc__single { max-width: 1100px; margin: 0 auto; padding: calc(var(--wb-nav-h) + 40px) 32px 64px; }
.wbc__back {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
    color: var(--wb-text-muted); text-decoration: none; margin-bottom: 28px; transition: color .2s;
}
.wbc__back:hover { color: var(--wb-accent); }
.wbc__single-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.wbc__single-cat {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--wb-accent);
    text-decoration: none; margin-bottom: 10px;
}
.wbc__single-title { font-family: var(--wb-font-serif); font-size: clamp(28px,5vw,48px); font-weight: 700; color: var(--wb-text); margin: 0 0 12px; line-height: 1.1; }
.wbc__single-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 20px; color: var(--wb-accent); }
.wbc__single-rating svg { width: 18px; height: 18px; }
.wbc__single-rating span { font-size: 13px; font-weight: 600; color: var(--wb-text-muted); margin-left: 4px; }
.wbc__single-content { font-size: 15px; color: var(--wb-text-muted); line-height: 1.7; margin-bottom: 32px; }
.wbc__single-details { display: flex; flex-direction: column; gap: 16px; }
.wbc__detail { display: flex; align-items: flex-start; gap: 12px; }
.wbc__detail svg { color: var(--wb-accent); flex-shrink: 0; margin-top: 2px; }
.wbc__detail-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--wb-text-muted); margin-bottom: 2px; }
.wbc__detail-val { font-size: 14px; color: var(--wb-text); text-decoration: none; }
a.wbc__detail-val:hover { color: var(--wb-accent); }
.wbc__single-img { width: 100%; border-radius: var(--wb-radius); box-shadow: 0 16px 48px rgba(0,0,0,.12); aspect-ratio: 4/3; object-fit: cover; position: sticky; top: calc(var(--wb-nav-h) + 24px); }

@media (max-width: 768px) {
    .wbc__cat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .wbc__grid { grid-template-columns: 1fr; }
    .wbc__single-layout { grid-template-columns: 1fr; }
    .wbc__single-img { position: static; order: -1; }
    .wbc__single { padding: calc(var(--wb-nav-h) + 20px) 20px 40px; }
}
@media (max-width: 480px) {
    .wbc__cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Concierge detail modal ---- */
.wbc__modal-backdrop {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
}
.wbc__modal-backdrop.is-open { display: flex; }
.wbc__modal {
    background: var(--wb-card); border-radius: var(--wb-radius);
    width: 100%; max-width: 760px; max-height: 90vh;
    overflow-y: auto; position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
    animation: wbc-modal-in .2s ease;
}
@keyframes wbc-modal-in { from { opacity:0; transform: translateY(16px) scale(.97); } to { opacity:1; transform: none; } }
.wbc__modal-close {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 50%; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .15s; z-index: 10;
    color: var(--wb-text);
}
.wbc__modal-close:hover { background: var(--wb-border); }
.wbc__modal-loading { display: flex; align-items: center; justify-content: center; padding: 80px; }
.wbc__modal-spinner {
    width: 36px; height: 36px; border-radius: 50%;
    border: 3px solid var(--wb-border); border-top-color: var(--wb-accent);
    animation: wbc-spin .7s linear infinite;
}
@keyframes wbc-spin { to { transform: rotate(360deg); } }

/* Modal content */
.wbc__mdetail-img { width: 100%; height: 260px; object-fit: cover; display: block; border-radius: var(--wb-radius) var(--wb-radius) 0 0; }
.wbc__mdetail-img--placeholder { width: 100%; height: 220px; background: var(--wb-muted); display: flex; align-items: center; justify-content: center; color: var(--wb-border); border-radius: var(--wb-radius) var(--wb-radius) 0 0; }
.wbc__mdetail-body { padding: 28px 32px 32px; }
.wbc__mdetail-cat { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--wb-accent); margin-bottom: 8px; display: block; }
.wbc__mdetail-title { font-family: var(--wb-font-serif); font-size: 32px; font-weight: 700; color: var(--wb-text); margin: 0 0 10px; line-height: 1.15; }
.wbc__mdetail-rating { display: flex; align-items: center; gap: 4px; color: var(--wb-accent); margin-bottom: 20px; }
.wbc__mdetail-rating svg { width: 16px; height: 16px; }
.wbc__mdetail-rating span { font-size: 13px; color: var(--wb-text-muted); margin-left: 4px; }
.wbc__mdetail-desc { font-size: 14px; color: var(--wb-text-muted); line-height: 1.7; margin-bottom: 24px; }
.wbc__mdetail-desc p { margin: 0 0 12px; }

/* Info grid */
.wbc__mdetail-info { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.wbc__mdetail-item { display: flex; align-items: flex-start; gap: 10px; }
.wbc__mdetail-item svg { color: var(--wb-accent); flex-shrink: 0; margin-top: 2px; }
.wbc__mdetail-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--wb-text-muted); display: block; margin-bottom: 2px; }
.wbc__mdetail-val { font-size: 13px; color: var(--wb-text); }
a.wbc__mdetail-val { text-decoration: none; }
a.wbc__mdetail-val:hover { color: var(--wb-accent); }

/* Action buttons */
.wbc__mdetail-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.wbc__mdetail-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; border-radius: 8px; font-size: 13px;
    font-weight: 600; text-decoration: none; transition: all .2s; border: none; cursor: pointer;
}
.wbc__mdetail-btn--gold { background: var(--wb-accent); color: #fff; }
.wbc__mdetail-btn--gold:hover { background: var(--wb-accent-dark); color: #fff; }
.wbc__mdetail-btn--ghost { background: var(--wb-muted); border: 1px solid var(--wb-border); color: var(--wb-text); }
.wbc__mdetail-btn--ghost:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.wbc__mdetail-btn svg { width: 14px; height: 14px; }

@media (max-width: 600px) {
    .wbc__mdetail-info { grid-template-columns: 1fr; }
    .wbc__mdetail-body { padding: 20px; }
    .wbc__mdetail-title { font-size: 24px; }
}


/* ── Comments ───────────────────────────────────────────── */
.wb-comments { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--wb-border); }
.wb-comments__title { font-family: var(--wb-font-serif); font-size: 24px; font-weight: 700; color: var(--wb-text); margin-bottom: 32px; }
.wb-comments__closed { color: var(--wb-text-muted); font-size: 14px; }

.wb-comment-list { list-style: none; padding: 0; margin: 0 0 48px; display: flex; flex-direction: column; gap: 24px; }
.wb-comment__inner { display: flex; gap: 16px; }
.wb-comment__avatar img { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; }
.wb-comment__body { flex: 1; background: var(--wb-muted); border-radius: var(--wb-radius); padding: 16px 20px; }
.wb-comment__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.wb-comment__author { font-weight: 600; font-size: 14px; color: var(--wb-text); }
.wb-comment__author a { color: inherit; text-decoration: none; }
.wb-comment__date { font-size: 12px; color: var(--wb-text-muted); }
.wb-comment__text { font-size: 14px; color: var(--wb-text); line-height: 1.7; }
.wb-comment__text p { margin-bottom: .5em; }
.wb-comment__text p:last-child { margin-bottom: 0; }
.wb-comment__pending { font-size: 12px; color: var(--wb-text-muted); font-style: italic; margin-top: 8px; }
.wb-comment__reply { margin-top: 10px; }
.wb-comment__reply a { font-size: 12px; font-weight: 600; color: var(--wb-accent); text-decoration: none; }
.wb-comment__reply a:hover { text-decoration: underline; }
.children { list-style: none; padding-left: 64px; margin-top: 16px; display: flex; flex-direction: column; gap: 16px; }

/* Comment form */
.wb-comment-form { margin-top: 40px; }
.wb-comment-form .comment-reply-title { font-family: var(--wb-font-serif); font-size: 22px; font-weight: 700; color: var(--wb-text); margin-bottom: 24px; display: block; }
.wb-comment-form .comment-reply-title small { font-size: 13px; font-family: var(--wb-font-sans, sans-serif); font-weight: 400; margin-left: 12px; }
.wb-comment-form .comment-reply-title small a { color: var(--wb-text-muted); text-decoration: none; }
.wb-comment-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.wb-comment-form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.wb-comment-form__label { font-size: 13px; font-weight: 600; color: var(--wb-text); }
.wb-comment-form__label span { color: var(--wb-accent); }
.wb-comment-form__input,
.wb-comment-form__textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-sm); font-size: 14px; color: var(--wb-text);
    background: var(--wb-card); transition: border-color .2s;
    font-family: inherit;
}
.wb-comment-form__input:focus,
.wb-comment-form__textarea:focus { outline: none; border-color: var(--wb-accent); }
.wb-comment-form__textarea { resize: vertical; }
.wb-comment-form__submit {
    background: var(--wb-accent); color: #fff; border: none;
    border-radius: var(--wb-radius-sm); padding: 12px 28px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: background .2s; font-family: inherit;
}
.wb-comment-form__submit:hover { background: var(--wb-accent-dark, #a07840); }
.logged-in-as { font-size: 13px; color: var(--wb-text-muted); margin-bottom: 20px; }
.logged-in-as a { color: var(--wb-accent); text-decoration: none; }
@media (max-width: 600px) {
    .wb-comment-form__row { grid-template-columns: 1fr; }
    .children { padding-left: 24px; }
}

/* ── Ticket Box (inside event header right side) ─────────────────────────── */
.wb-ticket-box {
    background: var(--wb-card, #fff);
    border: 2px solid #C8A56D;
    border-radius: 14px;
    padding: 20px 24px;
    min-width: 190px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(200,165,109,.12);
    flex-shrink: 0;
    align-self: flex-start;
}
.wb-event-header {
    align-items: flex-start !important;
    gap: 20px;
}
.wb-ticket-box__price {
    font-size: 28px;
    font-weight: 700;
    color: #C8A56D;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 4px;
    white-space: nowrap;
}
.wb-ticket-box__price span { font-size: 12px; font-weight: 400; color: #888; display: block; }
.wb-ticket-box__avail {
    font-size: 12px;
    color: #666;
    margin: 0 0 14px;
}
.wb-ticket-box__avail--low { color: #ef4444; font-weight: 600; }

/* ── Ticket Checkout Modal ───────────────────────────────────────────────── */
.wb-ticket-modal {
    position: fixed; inset: 0; z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.wb-ticket-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
}
.wb-ticket-modal__dialog {
    position: relative; z-index: 1;
    background: var(--wb-card, #fff);
    border-radius: 16px;
    width: 100%; max-width: 460px;
    padding: 36px 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,.2);
    max-height: 90vh; overflow-y: auto;
}
.wb-ticket-modal__close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none;
    font-size: 22px; line-height: 1; color: #888;
    cursor: pointer; padding: 4px 8px;
}
.wb-ticket-modal__close:hover { color: #333; }
.wb-ticket-modal__title {
    font-size: 22px; font-weight: 700; margin: 0 0 4px;
    font-family: 'Cormorant Garamond', serif;
}
.wb-ticket-modal__event-name { font-size: 14px; color: #888; margin: 0 0 6px; }
.wb-ticket-modal__price { font-size: 28px; font-weight: 700; color: #C8A56D; margin: 0 0 24px; font-family: 'Cormorant Garamond', serif; }
.wb-ticket-modal__form { display: flex; flex-direction: column; gap: 14px; }
.wb-ticket-modal__form label {
    display: flex; flex-direction: column; gap: 4px;
    font-size: 12px; font-weight: 600; color: #555; letter-spacing: .04em; text-transform: uppercase;
}
.wb-ticket-modal__form input[type="text"],
.wb-ticket-modal__form input[type="email"] {
    padding: 10px 12px; border: 1px solid #e0dbd2;
    border-radius: 8px; font-size: 14px;
    font-family: 'DM Sans', sans-serif; outline: none;
    background: #faf9f7;
}
.wb-ticket-modal__form input:focus { border-color: #C8A56D; }
.wb-ticket-modal__card-wrap { display: flex; flex-direction: column; gap: 4px; }
#wbtm-card-element {
    padding: 12px; border: 1px solid #e0dbd2;
    border-radius: 8px; background: #faf9f7;
}
.wb-ticket-modal__errors { font-size: 12px; color: #ef4444; min-height: 16px; }
.wb-ticket-modal__secure {
    font-size: 11px; color: #aaa; text-align: center; margin: 0;
}
.wb-ticket-modal__pay-btn {
    background: #C8A56D; color: #fff;
    border: none; border-radius: 10px;
    padding: 14px 24px; font-size: 15px; font-weight: 600;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: background .2s; margin-top: 4px;
}
.wb-ticket-modal__pay-btn:hover { background: #b8924e; }
.wb-ticket-modal__pay-btn:disabled { opacity: .6; cursor: not-allowed; }
.wb-ticket-modal__msg { font-size: 13px; min-height: 18px; margin: 0; }
.wb-ticket-modal__msg.error { color: #ef4444; }
.wb-ticket-modal__msg.success { color: #10b981; }
.wb-ticket-modal__code-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #888; margin: 0 0 6px; }
.wb-ticket-modal__code {
    font-family: monospace; font-size: 22px; letter-spacing: .18em;
    color: #C8A56D; background: rgba(200,165,109,.1);
    border: 1px solid rgba(200,165,109,.4);
    border-radius: 8px; padding: 10px 20px; display: inline-block; margin: 0 0 12px;
}

/* ── Event Single Two-Column Layout ─────────────────────────────────────── */
.wb-event-single { max-width: 1100px; margin: 0 auto; }
.wb-event-back {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--wb-text-muted); font-size: 13px; text-decoration: none; margin-bottom: 32px;
}
.wb-event-single__hero { margin-bottom: 32px; }
.wb-event-single__cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; margin-bottom: 10px; }
.wb-event-single__title { font-family: var(--wb-font-serif); font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 8px; color: var(--wb-text); }
.wb-event-single__organizer { font-size: 15px; color: var(--wb-text-muted); }
.wb-event-two-col { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.wb-event-single__thumb img { width: 100%; border-radius: 12px; max-height: 400px; object-fit: cover; }
.wb-event-section-label { font-size: 11px; font-weight: 700; color: var(--wb-text-muted); letter-spacing: .1em; text-transform: uppercase; margin: 0 0 14px; }

/* ── Event Sidebar Card ──────────────────────────────────────────────────── */
.wb-event-sidebar { position: sticky; top: 24px; }
.wb-event-sidebar-card {
    background: var(--wb-card, #fff);
    border: 1px solid var(--wb-border, #e8e2d9);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.wb-event-sidebar-card--ticket { border-color: #C8A56D; box-shadow: 0 4px 24px rgba(200,165,109,.15); }
.wb-escard__row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--wb-border, #f0ebe3);
}
.wb-escard__row:first-child { padding-top: 0; }
.wb-escard__icon { flex-shrink: 0; margin-top: 2px; color: #C8A56D; }
.wb-escard__label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--wb-text-muted); margin: 0 0 2px; }
.wb-escard__value { font-size: 14px; font-weight: 600; color: var(--wb-text); margin: 0; }
.wb-escard__divider { height: 1px; background: var(--wb-border, #e8e2d9); margin: 20px 0 16px; }
.wb-escard__price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.wb-escard__price-label { font-size: 13px; color: var(--wb-text-muted); }
.wb-escard__price-val { font-family: var(--wb-font-serif); font-size: 26px; font-weight: 700; color: #C8A56D; }
.wb-escard__remaining { font-size: 12px; color: #666; margin: 0 0 16px; text-align: center; }
.wb-escard__remaining--low { color: #ef4444; font-weight: 600; }
.wb-escard__btn {
    display: block; width: 100%; text-align: center;
    background: #C8A56D; color: #fff; border: none;
    border-radius: 10px; padding: 14px 20px;
    font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif;
    cursor: pointer; text-decoration: none; transition: background .2s; margin-top: 4px;
}
.wb-escard__btn:hover { background: #b8924e; color: #fff; }
.wb-escard__btn--disabled { opacity: .5; cursor: not-allowed; }

/* ── Checkout Modal (wide) ───────────────────────────────────────────────── */
.wb-ticket-modal__dialog--wide { max-width: 860px; padding: 40px 40px 36px; }
.wb-checkout-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.wb-checkout-title { font-family: var(--wb-font-serif); font-size: 28px; font-weight: 700; margin: 0 0 4px; }
.wb-checkout-sub { font-size: 13px; color: var(--wb-text-muted, #888); margin: 0 0 28px; }
.wb-checkout-section { margin-bottom: 28px; }
.wb-checkout-section-title { font-size: 16px; font-weight: 700; margin: 0 0 14px; color: var(--wb-text); }
.wb-checkout-label {
    display: flex; flex-direction: column; gap: 5px;
    font-size: 13px; font-weight: 500; color: #555; margin-bottom: 12px;
}
.wb-checkout-req { color: #ef4444; }
.wb-checkout-input {
    padding: 10px 12px; border: 1px solid #e0dbd2; border-radius: 8px;
    font-size: 14px; font-family: 'DM Sans', sans-serif;
    background: #faf9f7; outline: none; width: 100%;
}
.wb-checkout-input:focus { border-color: #C8A56D; }
.wb-checkout-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wb-checkout-card {
    padding: 12px; border: 1px solid #e0dbd2;
    border-radius: 8px; background: #faf9f7;
}
.wb-checkout-secure { font-size: 11px; color: #aaa; margin: 8px 0 0; }

/* Summary col */
.wb-checkout-summary-title { font-size: 16px; font-weight: 700; margin: 0 0 16px; color: var(--wb-text); }
.wb-checkout-summary-card {
    background: var(--wb-card, #fff);
    border: 1px solid var(--wb-border, #e8e2d9);
    border-radius: 14px; padding: 20px;
}
.wb-checkout-summary-event { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.wb-checkout-summary-event-name { font-size: 15px; font-weight: 700; color: var(--wb-text); margin: 0 0 4px; }
.wb-checkout-summary-event-meta { font-size: 12px; color: var(--wb-text-muted); margin: 0; }
.wb-checkout-summary-price { font-size: 16px; font-weight: 700; color: var(--wb-text); margin: 0; }
.wb-checkout-qty-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.wb-checkout-qty-label { font-size: 14px; color: var(--wb-text); }
.wb-checkout-qty-ctrl { display: flex; align-items: center; gap: 12px; }
.wb-checkout-qty-btn {
    width: 28px; height: 28px; border: 1px solid #e0dbd2; border-radius: 50%;
    background: #fff; font-size: 16px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.wb-checkout-qty-btn:hover { border-color: #C8A56D; color: #C8A56D; }
#wbtm-qty-val { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }
.wb-checkout-summary-divider { height: 1px; background: var(--wb-border, #e8e2d9); margin: 4px 0; }
.wb-checkout-summary-line { display: flex; justify-content: space-between; padding: 10px 0; font-size: 13px; color: var(--wb-text-muted); }
.wb-checkout-summary-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 16px; font-size: 16px; font-weight: 700; color: var(--wb-text); }
.wb-checkout-pay-btn {
    display: block; width: 100%; background: #C8A56D; color: #fff;
    border: none; border-radius: 10px; padding: 14px;
    font-size: 15px; font-weight: 700; font-family: 'DM Sans', sans-serif;
    cursor: pointer; transition: background .2s; margin-bottom: 10px;
}
.wb-checkout-pay-btn:hover { background: #b8924e; }
.wb-checkout-pay-btn:disabled { opacity: .6; cursor: not-allowed; }
.wb-checkout-note { font-size: 11px; color: #aaa; text-align: center; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
    .wb-event-two-col { grid-template-columns: 1fr; }
    .wb-event-sidebar { position: static; }
    .wb-event-single__title { font-size: 28px; }
    .wb-checkout-layout { grid-template-columns: 1fr; }
    .wb-ticket-modal__dialog--wide { padding: 28px 20px; }
    .wb-checkout-row-2 { grid-template-columns: 1fr; }
}

/* ── Fix: checkout label req star inline ─── */
.wb-checkout-label {
    display: block;
}
.wb-checkout-label .wb-checkout-input,
.wb-checkout-label .wb-checkout-card {
    display: block;
    width: 100%;
    margin-top: 5px;
}
.wb-checkout-req { display: inline; }


/* ── My Story page ────────────────────────────────────────────────────────── */
.wb-no-pad { padding: 0; }

.wb-story-hero {
    position: relative;
    height: 480px;
    background: #1a1a1a center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}
.wb-story-hero--dark { background: #1a1a1a; }
.wb-story-hero__overlay {
    width: 100%;
    padding: 40px 60px;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
}
.wb-story-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.wb-story-bio {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    text-align: center;
}
.wb-story-bio__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--wb-text);
    margin: 0 0 24px;
}
.wb-story-bio__text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--wb-text-muted);
}

.wb-story-social-cta {
    background: var(--wb-accent);
    color: #fff;
    text-align: center;
    padding: 28px 24px;
    font-size: 17px;
    font-weight: 500;
}
.wb-story-social-cta p { margin: 0; }
.wb-story-social-cta strong { font-weight: 700; }

.wb-story-journey {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
}
.wb-story-journey--noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #f8f6f2;
}
.wb-story-journey__img-wrap { overflow: hidden; }
.wb-story-journey__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wb-story-journey__text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f6f2;
    padding: 40px;
}
.wb-story-journey__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--wb-text);
    margin: 0;
    text-align: center;
}

.wb-story-footer-cta {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 32px 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .03em;
}
.wb-story-footer-cta p { margin: 0; }
.wb-story-footer-cta strong { color: var(--wb-accent); }

/* ── Work With Me page ───────────────────────────────────────────────────── */
.wb-wwm-hero {
    background: #1a1a1a center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    text-align: center;
    padding: 60px 24px;
}
.wb-wwm-hero__inner { color: #fff; }
.wb-wwm-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin: 0 0 12px;
}
.wb-wwm-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.wb-wwm-services {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px;
    text-align: center;
}
.wb-wwm-services__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--wb-text);
    margin: 0 0 48px;
}
.wb-wwm-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.wb-wwm-service-card {
    text-align: center;
    padding: 8px;
}
.wb-wwm-service-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 20px;
}
.wb-wwm-service-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: #f0ece4;
    border-radius: 12px;
    aspect-ratio: 4/3;
    margin-bottom: 20px;
}
.wb-wwm-service-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--wb-text);
    margin: 0 0 10px;
}
.wb-wwm-service-card__desc {
    font-size: 14px;
    color: var(--wb-text-muted);
    line-height: 1.7;
    margin: 0;
}

.wb-wwm-contact {
    background: #f8f6f2;
    padding: 48px 24px;
    text-align: center;
}
.wb-wwm-contact__text {
    font-size: 16px;
    color: var(--wb-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}
.wb-wwm-contact__link {
    color: var(--wb-accent);
    font-weight: 600;
    text-decoration: none;
}
.wb-wwm-contact__link:hover { text-decoration: underline; }

.wb-wwm-industries {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 40px 24px;
}
.wb-wwm-industries__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin: 0 0 12px;
}
.wb-wwm-industries__list {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.wb-wwm-section {
    padding: 64px 24px;
}
.wb-wwm-concierge {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.wb-wwm-concierge__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--wb-text);
    margin: 0 0 16px;
}
.wb-wwm-concierge__desc {
    font-size: 15px;
    color: var(--wb-text-muted);
    line-height: 1.8;
    margin: 0 0 32px;
}
.wb-wwm-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.wb-wwm-form input,
.wb-wwm-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--wb-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: var(--wb-card);
    color: var(--wb-text);
    box-sizing: border-box;
}
.wb-wwm-form textarea { resize: vertical; }
.wb-wwm-form input:focus,
.wb-wwm-form textarea:focus { outline: 2px solid var(--wb-accent); border-color: transparent; }

.wb-wwm-btn {
    display: inline-block;
    background: var(--wb-accent);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s;
    align-self: flex-start;
}
.wb-wwm-btn:hover { opacity: .88; }
.wb-wwm-form__msg { font-size: 14px; color: var(--wb-text-muted); margin: 4px 0 0; }

.wb-wwm-social-class {
    background: #f8f6f2;
    padding: 64px 24px;
    text-align: center;
}
.wb-wwm-social-class__inner { max-width: 700px; margin: 0 auto; }
.wb-wwm-social-class__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--wb-text);
    margin: 0 0 12px;
    letter-spacing: .06em;
}
.wb-wwm-social-class__sub {
    font-size: 15px;
    color: var(--wb-text-muted);
    margin: 0 0 28px;
}
.wb-wwm-signup-form__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.wb-wwm-signup-form__row input {
    flex: 1;
    min-width: 140px;
    padding: 10px 14px;
    border: 1px solid var(--wb-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: var(--wb-card);
    color: var(--wb-text);
}
.wb-wwm-signup-form__row input:focus { outline: 2px solid var(--wb-accent); border-color: transparent; }
.wb-wwm-social-class__msg { font-size: 14px; color: var(--wb-text-muted); margin: 12px 0 0; }

@media (max-width: 767px) {
    .wb-story-hero { height: 300px; }
    .wb-story-hero__overlay { padding: 24px; }
    .wb-story-hero__title { font-size: 36px; }
    .wb-story-journey { grid-template-columns: 1fr; }
    .wb-wwm-services__grid { grid-template-columns: 1fr; }
    .wb-wwm-hero__title { font-size: 28px; }
    .wb-wwm-signup-form__row { flex-direction: column; }
    .wb-wwm-signup-form__row input { min-width: unset; }
}



/* ── Shared page elements ───────────────────────────────────────────────── */
.wb-about-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin: 0 0 10px;
}
.wb-about-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 20px;
    line-height: 1.15;
}
.wb-about-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--wb-text-muted);
    margin: 0 0 16px;
}

/* ── Shared bottom CTA ──────────────────────────────────────────────────── */
.wb-about-cta {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 80px 24px;
}
.wb-about-cta__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin: 0 0 12px;
}
.wb-about-cta__sub {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    margin: 0 0 36px;
}
.wb-about-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.wb-about-cta__btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: var(--wb-accent);
    color: #fff;
    transition: opacity .2s;
}
.wb-about-cta__btn:hover { opacity: .85; }
.wb-about-cta__btn--outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
}
.wb-about-cta__btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); opacity: 1; }

/* ── About page ─────────────────────────────────────────────────────────── */
.wb-about-hero {
    position: relative;
    height: 520px;
    background: #1a1a1a center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}
.wb-about-hero__overlay {
    width: 100%;
    padding: 48px 64px;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 100%);
}
.wb-about-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin: 0 0 10px;
}
.wb-about-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.05;
}
.wb-about-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

.wb-about-mission {
    padding: 80px 24px;
    max-width: 1140px;
    margin: 0 auto;
}
.wb-about-mission__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
}
.wb-about-mission__img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.wb-about-mission__img img { width: 100%; height: 400px; object-fit: cover; display: block; }

.wb-about-stats {
    background: var(--wb-accent);
    padding: 60px 24px;
}
.wb-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.wb-about-stats__num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.wb-about-stats__label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    margin-top: 8px;
}

.wb-about-grid { padding: 80px 24px; }
.wb-about-grid__inner { max-width: 1140px; margin: 0 auto; }
.wb-about-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.wb-about-photo-grid__item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.wb-about-photo-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.wb-about-photo-grid__item:hover img { transform: scale(1.04); }

.wb-about-services { background: #f8f6f2; padding: 80px 24px; }
.wb-about-services__inner { max-width: 1080px; margin: 0 auto; }
.wb-about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.wb-about-service {
    background: var(--wb-card);
    border: 1px solid var(--wb-border);
    border-radius: 14px;
    padding: 28px 24px;
}
.wb-about-service__icon { font-size: 32px; margin-bottom: 14px; }
.wb-about-service__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 8px;
}
.wb-about-service__desc {
    font-size: 13px;
    color: var(--wb-text-muted);
    line-height: 1.7;
    margin: 0 0 16px;
}
.wb-about-service__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--wb-accent);
    text-decoration: none;
}
.wb-about-service__link:hover { text-decoration: underline; }

@media (max-width: 1024px) {
    .wb-about-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .wb-about-hero { height: 380px; }
    .wb-about-hero__overlay { padding: 28px; }
    .wb-about-mission__inner { grid-template-columns: 1fr; gap: 40px; }
    .wb-about-mission__img img { height: 280px; }
    .wb-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .wb-about-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .wb-about-services__grid { grid-template-columns: 1fr; }
    .wb-about-photo-grid { grid-template-columns: 1fr; }
    .wb-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Contact page ───────────────────────────────────────────────────────── */
.wb-contact-header {
    background: #f8f6f2;
    padding: 72px 24px 64px;
    text-align: center;
}
.wb-contact-header__inner { max-width: 600px; margin: 0 auto; }
.wb-contact-header__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 12px;
    line-height: 1.1;
}
.wb-contact-header__sub {
    font-size: 15px;
    color: var(--wb-text-muted);
    line-height: 1.75;
    margin: 0;
}
.wb-contact-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
    align-items: start;
}
.wb-contact-form-col { padding-right: 64px; }
.wb-contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.wb-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid var(--wb-border);
    border-radius: 10px;
    background: var(--wb-card);
}
.wb-contact-info-card__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.wb-contact-info-card__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--wb-text-muted);
    margin: 0 0 4px;
}
.wb-contact-info-card__val {
    font-size: 14px;
    color: var(--wb-text);
    font-weight: 500;
    text-decoration: none;
    margin: 0;
}
a.wb-contact-info-card__val:hover { color: var(--wb-accent); }

.wb-contact-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 24px;
}
.wb-contact-form-fields { display: flex; flex-direction: column; gap: 16px; }
.wb-contact-send-btn {
    align-self: flex-start;
    background: var(--wb-accent);
    color: #fff;
    border: none;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
    font-family: inherit;
}
.wb-contact-send-btn:hover { opacity: .88; }

.wb-contact-img-col { position: sticky; top: 80px; }
.wb-contact-side-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 24px;
}
.wb-contact-side-quote {
    padding: 20px 24px;
    border-left: 3px solid var(--wb-accent);
    background: #f8f6f2;
    border-radius: 0 10px 10px 0;
}
.wb-contact-side-quote p {
    font-size: 14px;
    font-style: italic;
    color: var(--wb-text);
    line-height: 1.7;
    margin: 0 0 8px;
}
.wb-contact-side-attr { font-size: 12px; font-weight: 600; color: var(--wb-accent); font-style: normal !important; margin: 0 !important; }

@media (max-width: 860px) {
    .wb-contact-body { grid-template-columns: 1fr; padding: 40px 20px; }
    .wb-contact-form-col { padding-right: 0; }
    .wb-contact-img-col { position: static; }
}

/* ── Pricing page ───────────────────────────────────────────────────────── */
.wb-pricing-header {
    background: #f8f6f2;
    padding: 72px 24px 64px;
    text-align: center;
}
.wb-pricing-header__inner { max-width: 560px; margin: 0 auto; }
.wb-pricing-header__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 12px;
}
.wb-pricing-header__sub { font-size: 15px; color: var(--wb-text-muted); margin: 0; line-height: 1.7; }

.wb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 64px;
}
.wb-pricing-card {
    border: 1px solid var(--wb-border);
    border-radius: 18px;
    padding: 36px 28px 32px;
    position: relative;
    background: var(--wb-card);
}
.wb-pricing-card--featured {
    border-color: var(--wb-accent);
    box-shadow: 0 0 0 1px var(--wb-accent), 0 20px 60px rgba(200,165,109,.12);
}
.wb-pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wb-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.wb-pricing-card__header { margin-bottom: 28px; }
.wb-pricing-card__name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--wb-text-muted);
    margin: 0 0 12px;
}
.wb-pricing-card__price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.wb-pricing-card__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--wb-text);
    line-height: 1;
}
.wb-pricing-card__per { font-size: 16px; color: var(--wb-text-muted); }
.wb-pricing-card__desc { font-size: 13px; color: var(--wb-text-muted); line-height: 1.65; margin: 0; }
.wb-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.wb-pricing-card__features li {
    font-size: 14px;
    color: var(--wb-text-muted);
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
}
.wb-pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wb-accent);
    font-weight: 700;
    font-size: 13px;
}
.wb-pricing-card__btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: var(--wb-accent);
    color: #fff;
    transition: opacity .2s;
    border: 1.5px solid var(--wb-accent);
}
.wb-pricing-card__btn:hover { opacity: .88; }
.wb-pricing-card__btn--outline { background: transparent; color: var(--wb-accent); }
.wb-pricing-card__btn--outline:hover { background: var(--wb-accent); color: #fff; opacity: 1; }

.wb-pricing-faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 48px 0;
    border-top: 1px solid var(--wb-border);
}
.wb-pricing-faq__item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 8px;
}
.wb-pricing-faq__item p { font-size: 14px; color: var(--wb-text-muted); line-height: 1.7; margin: 0; }
.wb-pricing-faq__item a { color: var(--wb-accent); text-decoration: none; }
.wb-pricing-faq__item a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .wb-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 40px; }
    .wb-pricing-faq { grid-template-columns: 1fr; }
}

/* ── How It Works page ──────────────────────────────────────────────────── */
.wb-hiw-hero {
    background: #1a1a1a;
    padding: 80px 24px 56px;
    text-align: center;
    color: #fff;
}
.wb-hiw-hero__inner { max-width: 720px; margin: 0 auto; }
.wb-hiw-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin: 0 0 12px;
}
.wb-hiw-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.05;
}
.wb-hiw-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    margin: 0 0 40px;
    line-height: 1.7;
}
.wb-hiw-hero__tabs {
    display: inline-flex;
    gap: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 0;
}
.wb-hiw-tab {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    font-weight: 600;
    border-radius: 7px;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}
.wb-hiw-tab--active { background: var(--wb-accent); color: #fff; }
.wb-hiw-tab:hover:not(.wb-hiw-tab--active) { color: #fff; }

.wb-hiw-section { display: none; padding: 72px 24px; }
.wb-hiw-section--active { display: block; }
.wb-hiw-section__inner { max-width: 1080px; margin: 0 auto; }
.wb-hiw-steps { display: flex; flex-direction: column; gap: 80px; }
.wb-hiw-step {
    display: grid;
    grid-template-columns: 80px 1fr 420px;
    gap: 40px;
    align-items: center;
}
.wb-hiw-step--flip { direction: rtl; }
.wb-hiw-step--flip > * { direction: ltr; }
.wb-hiw-step__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--wb-accent);
    opacity: .25;
    line-height: 1;
    flex-shrink: 0;
}
.wb-hiw-step__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 12px;
}
.wb-hiw-step__desc {
    font-size: 15px;
    color: var(--wb-text-muted);
    line-height: 1.8;
    margin: 0;
}
.wb-hiw-step__img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.wb-hiw-step__img img { width: 100%; height: 260px; object-fit: cover; display: block; }

.wb-hiw-cta-btn {
    display: inline-block;
    background: var(--wb-accent);
    color: #fff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: opacity .2s;
}
.wb-hiw-cta-btn:hover { opacity: .88; }

@media (max-width: 860px) {
    .wb-hiw-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .wb-hiw-step--flip { direction: ltr; }
    .wb-hiw-step__num { font-size: 48px; }
    .wb-hiw-step__img img { height: 200px; }
    .wb-hiw-hero__tabs { flex-wrap: wrap; }
    .wb-hiw-tab { font-size: 13px; padding: 8px 16px; }
}


/* ── Press page ─────────────────────────────────────────────────────────── */
.wb-press-hero {
    background: #f8f6f2;
    padding: 80px 24px 72px;
    text-align: center;
}
.wb-press-hero__inner { max-width: 640px; margin: 0 auto; }
.wb-press-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 14px;
    line-height: 1.05;
}
.wb-press-hero__sub {
    font-size: 16px;
    color: var(--wb-text-muted);
    line-height: 1.75;
    margin: 0;
}

.wb-press-logos {
    background: #1a1a1a;
    padding: 28px 24px;
    text-align: center;
}
.wb-press-logos__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin: 0 0 12px;
}
.wb-press-logos__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.wb-press-logos__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    letter-spacing: .02em;
}
.wb-press-logos__sep { color: var(--wb-accent); font-size: 18px; }

.wb-press-features { padding: 80px 24px; }
.wb-press-features__inner { max-width: 1080px; margin: 0 auto; }

.wb-press-feature {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}
.wb-press-feature:last-child { margin-bottom: 0; }
.wb-press-feature--flip { direction: rtl; }
.wb-press-feature--flip > * { direction: ltr; }

.wb-press-feature__img-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.wb-press-feature__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.wb-press-feature__img-link:hover .wb-press-feature__img { transform: scale(1.04); }
.wb-press-feature__img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
}
.wb-press-feature__img-link:hover .wb-press-feature__img-overlay { opacity: 1; }

.wb-press-feature__body { padding: 8px 0; }
.wb-press-feature__year {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin-bottom: 8px;
}
.wb-press-feature__pub {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--wb-text-muted);
    margin: 0 0 10px;
}
.wb-press-feature__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--wb-text);
    margin: 0 0 16px;
    line-height: 1.2;
}
.wb-press-feature__excerpt {
    font-size: 15px;
    color: var(--wb-text-muted);
    line-height: 1.8;
    margin: 0 0 24px;
    font-style: italic;
}
.wb-press-feature__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--wb-accent);
    text-decoration: none;
    border-bottom: 1.5px solid var(--wb-accent);
    padding-bottom: 2px;
    transition: opacity .2s;
}
.wb-press-feature__link:hover { opacity: .75; }

.wb-press-cta {
    background: var(--wb-accent);
    padding: 72px 24px;
}
.wb-press-cta__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.wb-press-cta__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.wb-press-cta__sub {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    margin: 0 0 12px;
    line-height: 1.65;
    max-width: 480px;
}
.wb-press-cta__email {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255,255,255,.5);
    padding-bottom: 2px;
    width: fit-content;
}
.wb-press-cta__email:hover { border-color: #fff; }
.wb-press-cta__actions { display: flex; flex-direction: column; gap: 12px; min-width: 180px; }
.wb-press-cta .wb-about-cta__btn { background: #fff; color: var(--wb-accent); }
.wb-press-cta .wb-about-cta__btn:hover { opacity: .9; }
.wb-press-cta .wb-about-cta__btn--outline { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.wb-press-cta .wb-about-cta__btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; opacity: 1; }

@media (max-width: 860px) {
    .wb-press-feature { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
    .wb-press-feature--flip { direction: ltr; }
    .wb-press-feature__img { height: 240px; }
    .wb-press-cta__inner { flex-direction: column; text-align: center; align-items: flex-start; }
    .wb-press-cta__email { margin: 0 auto; }
}

/* ── Nav dropdown ────────────────────────────────────────────────────────── */
.wb-nav__dropdown {
    position: relative;
}
.wb-nav__dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    display: flex;
    align-items: center;
    gap: 2px;
}
.wb-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--wb-card);
    border: 1px solid var(--wb-border);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 24px 8px;
    z-index: 9999;
    min-width: 520px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    pointer-events: none;
}
.wb-nav__dropdown.is-open .wb-nav__dropdown-menu {
    display: grid;
    pointer-events: auto;
}
.wb-nav__dropdown-col {
    padding: 0 20px;
    border-right: 1px solid var(--wb-border);
}
.wb-nav__dropdown-col:last-child { border-right: none; }
.wb-nav__dropdown-heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--wb-accent);
    margin: 0 0 12px;
    padding: 0 4px;
}
.wb-nav__dropdown-link {
    display: block;
    padding: 7px 4px;
    font-size: 14px;
    color: var(--wb-text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: all .15s;
    font-weight: 500;
}
.wb-nav__dropdown-link:hover {
    color: var(--wb-text);
    background: var(--wb-bg);
    padding-left: 10px;
}

/* arrow indicator on toggle */
.wb-nav__dropdown.is-open .wb-nav__dropdown-toggle svg {
    transform: rotate(180deg);
}
.wb-nav__dropdown-toggle svg { transition: transform .2s; }


/* ── BRANDS SECTION ─────────────────────────────────────────────────────── */
.wb-brands-section { background: var(--wb-bg); overflow: hidden; }
.wb-brands-header { text-align: center; margin-bottom: 40px; }
.wb-brands-subtitle {
    color: var(--wb-text-muted);
    font-size: 16px;
    margin-top: 8px;
}

/* Infinite ticker / marquee */
.wb-brand-ticker {
    position: relative;
    overflow: hidden;
    padding: 8px 0 24px;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.wb-brand-ticker__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: wb-ticker-scroll 28s linear infinite;
}
.wb-brand-ticker:hover .wb-brand-ticker__track {
    animation-play-state: paused;
}
@keyframes wb-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wb-brand-ticker__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 40px;
    height: 80px;
    border: none;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    transition: opacity .3s ease, transform .3s ease;
    opacity: 0.55;
}
.wb-brand-ticker__item img {
    max-width: 220px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter .3s ease, transform .3s ease;
    user-select: none;
    pointer-events: none;
}
.wb-brand-ticker__item:hover {
    opacity: 1;
    transform: scale(1.04);
}
.wb-brand-ticker__item:hover img {
    filter: grayscale(0%);
}
.wb-brand-ticker__text {
    font-size: 16px;
    font-weight: 700;
    color: var(--wb-text);
    letter-spacing: .04em;
    text-align: center;
    white-space: nowrap;
}

/* Divider between logos */
.wb-brand-ticker__item + .wb-brand-ticker__item::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--wb-border);
}

@media (max-width: 768px) {
    .wb-brand-ticker__item { padding: 0 24px; }
    .wb-brand-ticker__item img { max-width: 140px; max-height: 40px; }
}

/* ── TESTIMONIALS SECTION ────────────────────────────────────────────────── */
.wb-testimonials-section { background: var(--wb-muted); }

.wb-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .wb-testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .wb-testimonial-grid { grid-template-columns: 1fr; } }

.wb-testimonial-card {
    background: var(--wb-card);
    border: 1px solid var(--wb-border);
    border-radius: 16px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow .2s, transform .2s;
}
.wb-testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.wb-testimonial-card__quote-icon { line-height: 0; }
.wb-testimonial-card__quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--wb-text);
    flex: 1;
    font-style: italic;
}
.wb-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--wb-border);
}
.wb-testimonial-card__photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.wb-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wb-accent), #b88a4a);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wb-testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.wb-testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--wb-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wb-testimonial-card__business {
    font-size: 12px;
    color: var(--wb-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wb-testimonial-card__stars {
    color: #F59E0B;
    font-size: 13px;
    letter-spacing: .05em;
    flex-shrink: 0;
}
.wb-testimonial-card--placeholder {
    opacity: .8;
}

/* ── Pricing tabs (role-based sections) ─────────────────────────────────── */
.wb-pricing-tabs { background: var(--wb-bg); border-bottom: 2px solid var(--wb-border); }
.wb-pricing-tabs__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; gap: 4px; }
.wb-pricing-tab { background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 16px 24px; font-size: 15px; font-weight: 600; color: var(--wb-text-muted); cursor: pointer; transition: color .2s, border-color .2s; }
.wb-pricing-tab:hover { color: var(--wb-text); }
.wb-pricing-tab.is-active { color: var(--wb-accent); border-bottom-color: var(--wb-accent); }
.wb-pricing-section { display: none; }
.wb-pricing-section.is-active { display: block; }
.wb-pricing-section__intro { text-align: center; margin-bottom: 40px; }
.wb-pricing-section__title { font-family: var(--wb-serif); font-size: clamp(26px,4vw,36px); color: var(--wb-text); margin: 0 0 10px; }
.wb-pricing-section__sub { font-size: 15px; color: var(--wb-text-muted); margin: 0; }
@media (max-width: 640px) {
    .wb-pricing-tabs__inner { gap: 0; padding: 0 16px; overflow-x: auto; }
    .wb-pricing-tab { padding: 14px 16px; font-size: 13px; white-space: nowrap; }
}
