/* =========================================================================
   Breakwater Tower – Theme Styles
   Compiled from approved design tokens (see 02-design-system.md).
   No utility framework — vanilla CSS with BEM-ish class names.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --brand-navy: #0e2a3a;
  --brand-navy-soft: #1a3a50;
  --brand-pink: #eb146e;
  --brand-pink-dark: #c40f5a;
  --accent: #eb146e;
  --accent-fg: #0e2a3a;
  --bg: #ffffff;
  --bg-muted: #f5f3ef;
  --bg-card: #ffffff;
  --fg: #11202a;
  --fg-muted: #5c6873;
  --muted-fg: #5c6873;
  --border: #e5e1da;
  --border-strong: #c9c3b8;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(14,42,58,.06);
  --shadow-md: 0 6px 18px rgba(14,42,58,.08);
  --shadow-lg: 0 20px 40px rgba(14,42,58,.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-h: 76px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); color: var(--fg); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 { font-weight: 600; color: var(--fg); letter-spacing: -0.01em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.25rem, 4.5vw, 4.25rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3vw, 3rem); line-height: 1.1; }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }

.bwt-skip-link { position: absolute; left: -9999px; }
.bwt-skip-link:focus { left: 1rem; top: 1rem; background: var(--brand-navy); color: #fff; padding: .5rem 1rem; border-radius: 4px; z-index: 9999; }

/* ---------- Layout ---------- */
.bwt-container { width: min(1200px, 92vw); margin: 0 auto; }
.bwt-section { padding: clamp(3rem, 7vw, 7rem) 0; }
.bwt-faq-section{padding: clamp(3rem, 7vw, 3rem) 0}
.bwt-section--muted { background: var(--bg-muted); }
.bwt-section--navy  { background: var(--brand-navy); color: #fff; }
.bwt-section--navy h1,.bwt-section--navy h2,.bwt-section--navy h3 { color: #fff; }
.bwt-section--navy .bwt-lead { color: rgba(255,255,255,.8); }
.bwt-section--navy .bwt-eyebrow { color: var(--accent); }
.bwt-section__header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.bwt-section__header--wide { max-width: 100%; text-align: left; margin-left: 0; margin-right: 0; }
.bwt-eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); display: inline-block; margin-bottom: .75rem; }
.bwt-lead { color: var(--fg-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.bwt-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .92rem; line-height: 1; transition: all .2s ease; border: 1px solid transparent; white-space: nowrap; }
.bwt-btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-md); }
.bwt-btn--primary:hover { background: var(--brand-pink-dark); transform: translateY(-1px); }
.bwt-btn--navy { background: var(--brand-navy); color: #fff; }
.bwt-btn--navy:hover { background: var(--brand-navy-soft); }
.bwt-btn--outline { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.bwt-btn--outline:hover { background: var(--bg-muted); }
.bwt-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.bwt-btn--ghost-light:hover { background: rgba(255,255,255,.18); }
.bwt-btn--white { background: #fff; color: var(--brand-pink); }
.bwt-btn--white:hover { background: var(--bg-muted); }

/* ---------- Header ---------- */
.bwt-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.bwt-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: var(--header-h); }
.bwt-header__logo img { max-height: 44px; width: auto; }
.bwt-header__logo-text {  font-size: 1.25rem; font-weight: 700; color: var(--brand-navy); }
.bwt-header__nav { flex: 1; display: flex; justify-content: center; }
.bwt-nav { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.bwt-nav-link { font-size: .92rem; font-weight: 500; color: var(--fg); padding: .5rem 0; position: relative; transition: color .2s; display: inline-flex; align-items: center; gap: .25rem; }
.bwt-nav-link:hover { color: var(--accent); }
.bwt-nav-item.is-current > .bwt-nav-link { color: var(--accent); }
.bwt-nav-item.is-current > .bwt-nav-link::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--accent); }
.bwt-caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 2px; margin-top: -3px; }
.bwt-nav-item.has-dropdown { position: relative; }
.bwt-submenu { position: absolute; top: 100%; left: -1rem; min-width: 220px; padding: .5rem; margin: 0; list-style: none; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s; }
.bwt-nav-item.has-dropdown:hover > .bwt-submenu,
.bwt-nav-item.has-dropdown:focus-within > .bwt-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.bwt-submenu .bwt-nav-link { display: block; padding: .6rem .85rem; border-radius: var(--radius-sm); }
.bwt-submenu .bwt-nav-link:hover { background: var(--bg-muted); }
.bwt-header__cta { display: flex; align-items: center; gap: .75rem; }
.bwt-header__burger { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; flex-direction: column; justify-content: space-between; }
.bwt-header__burger span { display: block; height: 2px; background: var(--fg); transition: transform .25s, opacity .2s, transform .25s; }
.bwt-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.bwt-header__burger[aria-expanded="true"] span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.bwt-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 960px) {
  .bwt-header__nav { display: none; }
  .bwt-header__burger { display: flex; }
  .bwt-header__cta .bwt-btn { display: none; }
}

/* ---------- Mobile drawer ---------- */
.bwt-drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.bwt-drawer.is-open { visibility: visible; }
.bwt-drawer__scrim { position: absolute; inset: 0; background: rgba(14,42,58,.55); opacity: 0; transition: opacity .25s; }
.bwt-drawer.is-open .bwt-drawer__scrim { opacity: 1; }
.bwt-drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 90vw); background: #fff; padding: 1.5rem; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease; }
.bwt-drawer.is-open .bwt-drawer__panel { transform: translateX(0); }
.bwt-drawer__close { position: absolute; top: 1rem; right: 1rem; background: var(--bg-muted); border: 0; width: 40px; height: 40px; border-radius: 50%; font-size: 1.4rem; }
.bwt-drawer__menu { list-style: none; padding: 0; margin: 3rem 0 1.5rem; }
.bwt-drawer__menu > li { border-bottom: 1px solid var(--border); }
.bwt-drawer__menu a { display: block; padding: 1rem 0; font-weight: 500; color: var(--fg); }
.bwt-drawer__menu a:hover { color: var(--accent); }
.bwt-drawer__menu .sub-menu { list-style: none; padding: 0 0 .25rem 1rem; margin: 0; }
.bwt-drawer__menu .sub-menu li { border-bottom: 0; }
.bwt-drawer__menu .sub-menu a { font-size: .9rem; font-weight: 400; padding: .5rem 0; color: var(--fg-muted); }
.bwt-drawer__menu .sub-menu a:hover { color: var(--accent); }

/* ---------- Alert banner ---------- */
.bwt-alert-banner { background: var(--accent); color: #fff; padding: .55rem 0; text-align: center; font-size: .85rem; position: relative; }
.bwt-alert-banner a { text-decoration: underline; color: #fff; margin-left: .25rem; }
.bwt-alert-banner__close { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); background: transparent; border: 0; color: #fff; font-size: 1rem; opacity: .8; }

/* ---------- Hero (page top) ---------- */
.bwt-hero { position: relative; min-height: 380px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; padding: clamp(4rem, 9vw, 7rem) 0; }
.bwt-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,42,58,.55) 0%, rgba(14,42,58,.75) 100%); }
.bwt-hero__inner { position: relative;  }
.bwt-hero__eyebrow { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #fff; margin-bottom: .6rem; }
.bwt-hero__title { color: #fff; }
.bwt-hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,.85); margin: 1rem 0 0; max-width: 640px; }
.bwt-hero--home { min-height: 92vh; }
.bwt-hero--home .bwt-hero__inner { max-width: 100%; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .bwt-hero--home .bwt-hero__inner { grid-template-columns: 1fr; } }
.bwt-hero__pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .75rem; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); font-size: .78rem; font-weight: 500; }
.bwt-hero__pill::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.bwt-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 1.75rem; }
.bwt-hero__phone { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.88); font-size: .95rem; font-weight: 500; text-decoration: none; transition: color .2s; }
.bwt-hero__phone:hover { color: #fff; text-decoration: underline; }
.bwt-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; max-width: 650px; }
.bwt-hero__stat { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.25); }
.bwt-hero__stat:first-child { border-left: 0; padding-left: 0; }
.bwt-hero__stat-v {font-size: 1.6rem; }
.bwt-hero__stat-l { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.7); }
.bwt-hero__contact { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; }
.bwt-hero__contact a { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.88); font-size: .95rem; font-weight: 500; text-decoration: none; transition: color .2s; }
.bwt-hero__contact a:hover { color: #fff; text-decoration: underline; }

/* ---------- Phone CTA strip ---------- */
.bwt-phone-cta { background: var(--brand-pink); color: #fff; padding: 2.25rem 0; }
.bwt-phone-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.bwt-phone-cta__heading { color: #fff; font-size: 1.6rem; margin: 0; text-shadow: 0 1px 2px rgba(0,0,0,.18); }
.bwt-phone-cta__sub { color: rgba(255,255,255,.95); margin: .25rem 0 0; }

/* ---------- Trust bar ---------- */
.bwt-trust-bar { background: var(--bg-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.bwt-trust-bar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-muted); }

/* ---------- Feature grid ---------- */
.bwt-feature-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .bwt-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .bwt-feature-grid { grid-template-columns: 1fr; } }
.bwt-feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 2rem; transition: all .2s; }
.bwt-feature-card:hover { border-color: rgba(235,20,110,.35); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bwt-feature-card__icon { width: 48px; height: 48px; background: var(--brand-navy); color: #fff; border-radius: var(--radius-sm); display: grid; place-items: center; margin-bottom: 1.25rem; }
.bwt-feature-card h3 { font-size: 1.15rem; margin: 0 0 .5rem; }
.bwt-feature-card p { color: var(--fg-muted); font-size: .92rem; margin: 0; line-height: 1.6; }

/* ---------- Split feature ---------- */
.bwt-split { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .bwt-split { grid-template-columns: 1fr; } }
.bwt-split__image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.bwt-split__image img { width: 100%; height: 100%; object-fit: cover; }
.bwt-split__list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .75rem; }
.bwt-split__list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .95rem; }
.bwt-split__list li::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: .55em; flex: 0 0 6px; }

/* ---------- Gallery grid + lightbox ---------- */
.bwt-gallery-filters { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.bwt-gallery-filter { padding: .55rem 1.1rem; border-radius: 999px; background: var(--bg-muted); border: 1px solid var(--border); font-size: .85rem; font-weight: 500; color: var(--fg); cursor: pointer; transition: all .2s; }
.bwt-gallery-filter.is-active { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.bwt-gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); grid-auto-rows: 240px; }
.bwt-gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: zoom-in; background: var(--bg-muted); }
.bwt-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bwt-gallery__item:hover img { transform: scale(1.06); }
.bwt-gallery__item--wide { grid-column: span 2; }
@media (max-width: 700px) { .bwt-gallery__item--wide { grid-column: span 1; } }

.bwt-lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.93); display: none; align-items: center; justify-content: center; padding: 2rem; }
.bwt-lightbox.is-open { display: flex; }
.bwt-lightbox__img { max-width: 100%; max-height: 80vh; border-radius: var(--radius-md); }
.bwt-lightbox__btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; display: grid; place-items: center; }
.bwt-lightbox__btn:hover { background: rgba(255,255,255,.25); }
.bwt-lightbox__close { top: 1.5rem; right: 1.5rem; }
.bwt-lightbox__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.bwt-lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.bwt-lightbox__play  { bottom: 1.5rem; left: 50%; transform: translateX(-50%); width: auto; padding: .55rem 1.25rem; border-radius: 999px; font-size: .9rem; }
.bwt-lightbox__counter { position: absolute; top: 1.5rem; left: 1.5rem; color: rgba(255,255,255,.7); font-size: .85rem; }

/* ---------- Floor plan filters ---------- */
.bwt-fp-filters { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.bwt-fp-filter { padding: .55rem 1.25rem; border-radius: 999px; background: var(--bg-muted); border: 1px solid var(--border); font-size: .875rem; font-weight: 500; color: var(--fg); cursor: pointer; transition: all .2s; }
.bwt-fp-filter.is-active { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.bwt-fp-filter:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.bwt-fp-filter:hover:not(.is-active) { border-color: var(--brand-navy); color: var(--brand-navy); }

/* ---------- Floor plan cards ---------- */
.bwt-floor-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .bwt-floor-grid { grid-template-columns: 1fr; } }
.bwt-floor-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.bwt-floor-card:hover { box-shadow: 0 8px 32px rgba(14,42,58,.12); transform: translateY(-3px); }
.bwt-floor-card[hidden] { display: none; }
.bwt-floor-card__image { aspect-ratio: 16/9; background: var(--bg-muted); overflow: hidden; position: relative; flex-shrink: 0; }
.bwt-floor-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.bwt-floor-card:hover .bwt-floor-card__image img { transform: scale(1.04); }
.bwt-floor-card__image-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--fg-muted); }
.bwt-floor-card__type { position: absolute; top: .85rem; left: .85rem; background: var(--brand-navy); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .75rem; border-radius: 999px; line-height: 1.4; }
.bwt-floor-card__avail { position: absolute; top: .85rem; right: .85rem; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .28rem .75rem; border-radius: 999px; line-height: 1.4; }
.bwt-floor-card__avail--available { background: #dcfce7; color: #15803d; }
.bwt-floor-card__avail--limited { background: #fff7ed; color: #c2410c; }
.bwt-floor-card__avail--waitlist { background: #f1f5f9; color: #475569; }
.bwt-floor-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.bwt-floor-card__title { font-size: 1.3rem; font-weight: 700; margin: 0 0 .625rem; color: var(--fg); line-height: 1.25; }
.bwt-floor-card__meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .875rem; }
.bwt-floor-card__meta-item { display: inline-flex; align-items: center; gap: .35rem; font-size: .84rem; color: var(--fg-muted); }
.bwt-floor-card__meta-item svg { flex-shrink: 0; color: var(--fg-muted); }
.bwt-floor-card__excerpt { font-size: .9rem; color: var(--fg-muted); line-height: 1.6; margin: 0 0 1rem; }
.bwt-floor-card__info { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; }
.bwt-floor-card__info-row { font-size: .875rem; color: var(--fg-muted); }
.bwt-floor-card__info-row strong { color: var(--fg); font-weight: 600; }
.bwt-floor-card__actions { display: flex; gap: .75rem; margin-top: auto; }
.bwt-floor-card__actions .bwt-btn { flex: 1; text-align: center; justify-content: center; font-size: .875rem; padding: .65rem 1rem; }
.bwt-fp-empty { text-align: center; padding: 4rem 2rem; color: var(--fg-muted); background: var(--bg-muted); border-radius: var(--radius-lg); border: 2px dashed var(--border); }

/* ---------- Floor plan mid-page CTA ---------- */
.bwt-fp-cta { background: var(--brand-navy); color: #fff; border-radius: var(--radius-lg); padding: 3.5rem 2rem; text-align: center; margin-top: 3rem; }
.bwt-fp-cta__eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 .75rem; }
.bwt-fp-cta__heading {  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; margin: 0 0 .875rem; color: #fff; }
.bwt-fp-cta__body { color: rgba(255,255,255,.72); font-size: .975rem; max-width: 520px; margin: 0 auto 1.75rem; line-height: 1.7; }
.bwt-fp-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Floor plans — action strip ---------- */
.bwt-fp-strip { background: #fff; border-bottom: 1px solid var(--border); padding: .875rem 0; }
.bwt-fp-strip__inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.bwt-fp-strip__phone { display: inline-flex; align-items: center; gap: .45rem; color: var(--fg); font-size: .9rem; font-weight: 500; text-decoration: none; margin-left: auto; }
.bwt-fp-strip__phone:hover { color: var(--accent); }
@media (max-width: 600px) { .bwt-fp-strip__phone { margin-left: 0; } }

/* ---------- Floor plans — intro ---------- */
.bwt-fp-intro { padding-top: 2.5rem; padding-bottom: 1rem; }
.bwt-fp-intro--white { background: #fff; border-bottom: 1px solid var(--border); }
.bwt-fp-intro__content { max-width: 100%;padding-bottom: 20px; }
.bwt-fp-intro__content p { color: var(--fg-muted); line-height: 1.8; margin: 0 0 1rem; font-size: .975rem; }
.bwt-fp-intro__content p:last-child { margin: 0; }

/* ---------- Floor plans — gallery ---------- */
.bwt-fp-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.bwt-fp-gallery__item { margin: 0; }
.bwt-fp-gallery__item img { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; border: 1px solid var(--border); }
.bwt-fp-gallery__item figcaption { text-align: center; margin-top: .75rem; font-size: .9rem; color: var(--fg-muted); font-weight: 500; }
@media (max-width: 640px) { .bwt-fp-gallery__grid { grid-template-columns: 1fr; } }

/* ---------- Floor plans — amenities ---------- */
.bwt-fp-amenities { background: #fff; }
.bwt-fp-amenities__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem 2.5rem; list-style: none; margin: 0; padding: 0; max-width: 760px; margin-left: auto; margin-right: auto; }
.bwt-fp-amenities__cols li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9rem; color: var(--fg); padding: .45rem 0; line-height: 1.4; }
.bwt-fp-amenities__check { color: var(--accent); flex-shrink: 0; margin-top: .15em; }
.bwt-fp-amenities__note { text-align: center; font-size: .8rem; color: var(--fg-muted); margin-top: 1.5rem; font-style: italic; }
.bwt-fp-amenities__cta { text-align: center; margin-top: 2rem; }
@media (max-width: 560px) { .bwt-fp-amenities__cols { grid-template-columns: 1fr; } }

/* ---------- Floor plans — check availability (split) ---------- */
/* ---------- Gallery – 360°/form CTA split ---------- */
.bwt-gallery-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; position: relative; }
.bwt-gallery-cta__left { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2.5rem, 6vw, 4.5rem); padding-left: max(calc((100vw - 1200px) / 2), 4vw); padding-right: clamp(2.5rem, 4vw, 4rem); background: var(--brand-navy); color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.bwt-gallery-cta__left .bwt-eyebrow { color: var(--accent); }
.bwt-gallery-cta__text { display: flex; flex-direction: column; gap: .65rem; }
.bwt-gallery-cta__heading { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin: 0; line-height: 1.2; }
.bwt-gallery-cta__body { color: rgba(255,255,255,.8); line-height: 1.75; font-size: .975rem; margin: 0; max-width: 460px; }

/* Image preview — reuses .bwt-360__preview, scoped to this panel */
.bwt-gallery-cta__preview { width: 100%; display: block; border: none; padding: 0; cursor: pointer; }
.bwt-gallery-cta__preview .bwt-360__play { width: 64px; height: 64px; font-size: 1.4rem; }

/* Actions row: play button + phone */
.bwt-gallery-cta__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.bwt-gallery-cta__phone { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 500; text-decoration: none; transition: color .15s; }
.bwt-gallery-cta__phone:hover { color: #fff; }
.bwt-gallery-cta__phone svg { flex-shrink: 0; color: var(--accent); }

.bwt-gallery-cta__right { padding-top: clamp(2rem, 5vw, 4.5rem); padding-bottom: clamp(2rem, 5vw, 4.5rem); padding-left: clamp(2rem, 4vw, 4rem); padding-right: max(calc((100vw - 1200px) / 2), 4vw); background: var(--bg-muted); display: flex; flex-direction: column; justify-content: flex-start; }
.bwt-gallery-cta__form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; max-width: 420px; }
.bwt-gallery-cta__form-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 .5rem; color: var(--fg); }
.bwt-gallery-cta__form-card p { color: var(--fg-muted); font-size: .9rem; margin: 0 0 1.25rem; }
@media (max-width: 860px) { .bwt-gallery-cta { grid-template-columns: 1fr; } }

.bwt-fp-avail { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: var(--bg-muted); }
.bwt-fp-avail__image { overflow: hidden; position: relative; }
.bwt-fp-avail__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bwt-fp-avail__content { padding: clamp(2rem, 5vw, 4.5rem); display: flex; flex-direction: column; justify-content: center; background: var(--bg-muted); }
.bwt-fp-avail__content--full { grid-column: 1 / -1; max-width: 720px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) 0; }
.bwt-fp-avail--white,
.bwt-fp-avail--white .bwt-fp-avail__content { background: #fff; }
.bwt-fp-avail__heading {  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin: .5rem 0 1rem; color: var(--fg); line-height: 1.2; }
.bwt-fp-avail__body { color: var(--fg-muted); line-height: 1.75; margin: 0 0 2rem; font-size: .975rem; max-width: 460px; }
.bwt-fp-avail__form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; max-width: 420px; }
.bwt-fp-avail__form-card .bwt-eyebrow { margin-bottom: .5rem; }
.bwt-fp-avail__form-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 .3rem; color: var(--fg); }
.bwt-fp-avail__form-note { font-size: .82rem; color: var(--fg-muted); margin: 0 0 1.25rem; }
@media (max-width: 860px) { .bwt-fp-avail { grid-template-columns: 1fr; } .bwt-fp-avail__image { min-height: 260px; } }

/* ---------- Amenities page ---------- */
.bwt-am-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 960px) { .bwt-am-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .bwt-am-feat-grid { grid-template-columns: 1fr; } }
.bwt-am-feat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow .2s; }
a.bwt-am-feat-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.bwt-am-feat-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-muted); }
.bwt-am-feat-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
a.bwt-am-feat-card:hover .bwt-am-feat-card__img img { transform: scale(1.04); }
.bwt-am-feat-card__body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .4rem; }
.bwt-am-feat-card__body h3 { font-size: 1rem; font-weight: 600; margin: 0; color: var(--fg); }
.bwt-am-feat-card__body p { font-size: .9rem; color: var(--fg-muted); line-height: 1.65; margin: 0; flex: 1; }
.bwt-am-feat-card__link { font-size: .875rem; font-weight: 600; color: var(--accent); margin-top: .25rem; }
/* ── Amenities split panel ───────────────────────────────────────── */
.bwt-am-split { display: grid; grid-template-columns: 1fr 1fr; }
.bwt-am-split__col { padding: clamp(3rem, 7vw, 6rem) 0; }
.bwt-am-split__col--apt  { background: #8080800a; }
.bwt-am-split__col--comm { background: #fff; }
.bwt-am-split__inner { max-width: 580px; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.bwt-am-split__col--apt  .bwt-am-split__inner { margin-left: auto; }
.bwt-am-split__col--comm .bwt-am-split__inner { margin-right: auto; }
.bwt-am-split__note { margin-top: 1.5rem; font-size: .8rem; color: var(--fg-muted); font-style: italic; }
@media (max-width: 860px) {
  .bwt-am-split { grid-template-columns: 1fr; }
  .bwt-am-split__col--apt  .bwt-am-split__inner,
  .bwt-am-split__col--comm .bwt-am-split__inner { margin: 0 auto; }
}

/* ── Amenities list items ────────────────────────────────────────── */
.bwt-am-list__heading { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 600; margin: .4rem 0 1.75rem; line-height: 1.2; }
.bwt-am-list__items { list-style: none; margin: 0 0 2.5rem; padding: 0; display: flex; flex-direction: column; }
.bwt-am-list__items li { font-size: .925rem; color: var(--fg); padding: .7rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: .75rem; }
.bwt-am-list__items li::before { display: none; }
.bwt-am-list__icon { flex-shrink: 0; margin-top: .1em; color: var(--accent); display: flex; }

/* ---------- Floor plans — disclaimer ---------- */
.bwt-fp-disclaimer { background: var(--bg-muted); border-top: 1px solid var(--border); padding: 1.25rem 0; }
.bwt-fp-disclaimer p { font-size: .75rem; color: var(--fg-muted); line-height: 1.75; margin: 0 0 .35rem; }
.bwt-fp-disclaimer p:last-child { margin: 0; }
.bwt-fp-disclaimer a { color: var(--accent); text-decoration: underline; }

/* ---------- FAQ ---------- */
.bwt-faq { margin: 0 auto; }
.bwt-faq__item { border-bottom: 1px solid var(--border); }
.bwt-faq__q { width: 100%; background: transparent; border: 0; padding: 1.25rem 0; text-align: left; font-size: 1.05rem; font-weight: 600; color: var(--fg); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.bwt-faq__q::after { content: "+"; font-size: 1.5rem; color: var(--accent); font-weight: 400; transition: transform .2s; }
.bwt-faq__item.is-open .bwt-faq__q::after { content: "−"; }
.bwt-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--fg-muted); }
.bwt-faq__item.is-open .bwt-faq__a { max-height: 800px; padding-bottom: 1.25rem; }

/* ---------- Forms ---------- */
.bwt-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.bwt-form-card h3 { margin-top: 0; }
.bwt-form { display: flex; flex-direction: column; gap: .75rem; }
.bwt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bwt-form__field { display: flex; flex-direction: column; gap: .25rem; font-size: .875rem; }
.bwt-form__field span { font-weight: 500; color: var(--fg); }
.bwt-form__field input, .bwt-form__field textarea { width: 100%; padding: .65rem .8rem; border: 1px solid var(--border); border-radius: var(--radius-md, .5rem); background: #fff; font: inherit; color: var(--fg); }
.bwt-form__field input:focus, .bwt-form__field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.bwt-form__submit { margin-top: .5rem; align-self: stretch; }
.bwt-form__success { background: rgba(16,185,129,.1); color: #065f46; padding: .65rem .8rem; border-radius: var(--radius-md, .5rem); font-size: .9rem; }
.bwt-form-missing { color: #b91c1c; font-size: .9rem; }
@media (max-width: 480px) { .bwt-form__row { grid-template-columns: 1fr; } }
.bwt-form-grid { display: grid; gap: 3rem; grid-template-columns: 1.1fr .9fr; }
@media (max-width: 900px) { .bwt-form-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.bwt-testimonial-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.bwt-testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.bwt-testimonial__stars { color: var(--accent); margin-bottom: .75rem; letter-spacing: .1em; }
.bwt-testimonial__body { font-style: italic; color: var(--fg); margin-bottom: 1rem; }
.bwt-testimonial__author { font-weight: 600; font-size: .9rem; }

/* ---------- Neighborhood cards ---------- */
.bwt-place-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.bwt-place-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.bwt-place-card__image { aspect-ratio: 16/10; overflow: hidden; }
.bwt-place-card__image img { width: 100%; height: 100%; object-fit: cover; }
.bwt-place-card__body { padding: 1.25rem; }
.bwt-place-card__meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--fg-muted); margin-top: .5rem; }

/* ---------- Footer ---------- */
.bwt-footer { background: var(--brand-navy); color: rgba(255,255,255,.85); }

/* Ready when you are CTA */
.bwt-ready { background: var(--accent, #c9a14a); color: #fff; }
.bwt-ready__grid { display: grid; gap: 2rem; align-items: center; padding: 3.5rem 0; grid-template-columns: 1fr; }
@media (min-width: 768px) { .bwt-ready__grid { grid-template-columns: 1.1fr auto; gap: 3rem; } }
.bwt-ready__eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.bwt-ready__title {font-size: 1.9rem; line-height: 1.15; margin: .5rem 0 .75rem; color: #fff; }
@media (min-width: 768px) { .bwt-ready__title { font-size: 2.4rem; } }
@media (min-width: 1024px) { .bwt-ready__title { font-size: 3rem; } }
.bwt-ready__copy { max-width: 36rem; color: rgba(255,255,255,.92); font-size: .98rem; margin: 0; }
.bwt-ready__ctas { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .bwt-ready__ctas { flex-direction: row; } }
.bwt-ready .bwt-btn { padding: 1rem 2rem; font-size: 1rem; font-weight: 700; }
.bwt-ready .bwt-btn--navy { box-shadow: 0 10px 20px rgba(0,0,0,.15); border: 2px solid var(--brand-navy); }
.bwt-ready .bwt-btn--navy:hover { filter: brightness(1.1); color: #fff; }
.bwt-btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.bwt-btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Footer grid (brand + 3 cols) */
.bwt-footer__grid { display: grid; gap: 3rem; grid-template-columns: 1fr; padding: 4rem 0; }
@media (min-width: 768px) { .bwt-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.bwt-footer__brand .custom-logo, .bwt-footer__brand img { height: 3rem; width: auto; }
.bwt-footer__desc { margin-top: 1rem; font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.bwt-footer__heading { font-family: var(--font-sans); font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: 0 0 1rem; }
.bwt-footer__menu { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.bwt-footer__menu a { color: rgba(255,255,255,.8); font-size: .92rem; text-decoration: none; }
.bwt-footer__menu a:hover { color: var(--accent, #c9a14a); }
.bwt-footer__visit { gap: .9rem; }
.bwt-footer__addr { display: block; font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.8); }
.bwt-footer__directions { display: inline-block; margin-top: .35rem; color: var(--accent, #c9a14a); text-decoration: none; font-size: .9rem; }
.bwt-footer__directions:hover { text-decoration: underline; }

/* Other Apartments */
.bwt-footer__other { border-top: 1px solid rgba(255,255,255,.1); }
.bwt-footer__other .bwt-container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.bwt-footer__other-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .5rem 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bwt-footer__other-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .bwt-footer__other-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .bwt-footer__other-list { grid-template-columns: repeat(4, 1fr); } }
.bwt-footer__other-list a { color: rgba(255,255,255,.8); font-size: .9rem; text-decoration: none; }
.bwt-footer__other-list a:hover { color: var(--accent, #c9a14a); }

/* Bottom bar */
.bwt-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; font-size: .78rem; color: rgba(255,255,255,.6); }
.bwt-footer__bottom-row { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .75rem; }
@media (min-width: 768px) { .bwt-footer__bottom-row { flex-direction: row; } }
.bwt-footer__bottom p { margin: 0; }
.bwt-footer__copyright-group { display: flex; align-items: center; gap: .75rem; }
.bwt-footer__badge { width: 42px; height: 28px; flex-shrink: 0; }
.bwt-footer__badge img { width: 100%; height: auto; display: block; }
.bwt-footer__legal-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.25rem; }
.bwt-footer__legal-list a { color: rgba(255,255,255,.6); text-decoration: none; }
.bwt-footer__legal-list a:hover { color: var(--accent, #c9a14a); }

/* ---------- Bottom action bar (mobile) ---------- */
.bwt-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 16px rgba(0,0,0,.06); }
.bwt-bottom-bar__item { flex: 1; text-align: center; padding: .9rem .5rem; font-size: .8rem; font-weight: 600; color: var(--brand-navy); border-right: 1px solid var(--border); }
.bwt-bottom-bar__item:last-child { border-right: 0; background: var(--accent); color: #fff; }
@media (max-width: 720px) {
  .bwt-bottom-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ---------- Utility ---------- */
.bwt-mt-sm { margin-top: 1rem; }
.bwt-mt   { margin-top: 1.5rem; }
.bwt-mt-lg{ margin-top: 2.5rem; }
.bwt-center { text-align: center; }
.bwt-grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .bwt-grid-2 { grid-template-columns: 1fr; } }
.bwt-grid-4 { display: grid; gap: 2.5rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .bwt-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .bwt-grid-4 { grid-template-columns: 1fr; } }

/* ---------- Sitemap ---------- */
.bwt-sitemap-col__title { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin: 0 0 1rem; }
.bwt-sitemap-col__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.bwt-sitemap-col__list a { color: var(--fg); text-decoration: none; }
.bwt-sitemap-col__list a:hover { color: var(--accent); }

/* ---------- Legal / Prose ---------- */
.bwt-legal { max-width: 820px; }
.bwt-prose { color: var(--fg); line-height: 1.7; }
.bwt-prose p { margin: 0 0 1rem; }
.bwt-prose h2 {  font-size: 1.5rem; margin: 2rem 0 .75rem; }
.bwt-prose h3 {  font-size: 1.2rem; margin: 1.5rem 0 .5rem; }
.bwt-prose ul, .bwt-prose ol { margin: 0 0 1rem 1.25rem; }
.bwt-prose a { color: var(--accent); }

/* ---------- Embeds ---------- */
.bwt-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.bwt-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bwt-map { aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; }
.bwt-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Header extras: phone link, logo img, scrolled elevation ---------- */
.bwt-header__logo-img { max-height: 44px; width: auto; display: block; }
.bwt-header__logo-text {  font-size: 1.15rem; font-weight: 700; color: var(--brand-navy); }
.bwt-header__phone { display: none; font-size: .85rem; font-weight: 500; color: var(--fg); white-space: nowrap; transition: color .2s; }
.bwt-header__phone:hover { color: var(--accent); }
@media (min-width: 961px) { .bwt-header__phone { display: inline-flex; align-items: center; gap: .35rem; } }
.bwt-header.is-scrolled { box-shadow: 0 2px 12px rgba(14,42,58,.10); }

/* ---------- Footer text-logo fallback ---------- */
.bwt-footer__logo-text {  font-size: 1.25rem; font-weight: 700; color: #fff; display: inline-block; }
.bwt-footer__logo-img  { max-height: 48px; width: auto; }

/* ---------- 360° placeholder (no image set) ---------- */
.bwt-360__placeholder { width: 100%; aspect-ratio: 16/9; background: rgba(255,255,255,.06); border-radius: var(--radius-lg); border: 1px dashed rgba(255,255,255,.2); }
.bwt-360__preview--no-url { cursor: pointer; }

/* ---------- Feature card icon: SVG colour ---------- */
.bwt-feature-card__icon svg { width: 22px; height: 22px; color: #fff; }

/* ---------- Form card: dark-glass variant (hero) ---------- */
.bwt-form-card--dark {
  background: rgba(14, 42, 58, 0.82);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.bwt-form-card--dark h3,
.bwt-form-card--dark .bwt-lead { color: #fff; }
.bwt-form-card--dark .bwt-form__field span { color: rgba(255,255,255,.8); }
.bwt-form-card--dark .bwt-form__field input,
.bwt-form-card--dark .bwt-form__field textarea {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.bwt-form-card--dark .bwt-form__field input::placeholder,
.bwt-form-card--dark .bwt-form__field textarea::placeholder { color: rgba(255,255,255,.4); }
.bwt-form-card--dark .bwt-form__field input:focus,
.bwt-form-card--dark .bwt-form__field textarea:focus { outline-color: rgba(255,255,255,.6); }
.bwt-form-card--dark .bwt-form__success { background: rgba(16,185,129,.2); color: #a7f3d0; }

/* ---------- Print ---------- */
@media print {
  .bwt-header, .bwt-footer, .bwt-bottom-bar, .bwt-phone-cta, .bwt-alert-banner { display: none !important; }
}

/* ---------- Hero video background ---------- */
.bwt-hero__media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.bwt-hero__media .bwt-hero__video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover; }
.bwt-hero__media video.bwt-hero__video { inset: 0; top: 0; left: 0; transform: none; width: 100%; height: 100%; max-width: none; min-width: 100%; min-height: 100%; }
.bwt-hero__media iframe.bwt-hero__video { width: max(100vw, calc(100vh * 16 / 9)); height: auto; aspect-ratio: 16 / 9; border: 0; pointer-events: none; }
.bwt-hero--has-video .bwt-hero__overlay { background: linear-gradient(180deg, rgba(14,42,58,.55) 0%, rgba(14,42,58,.85) 100%); }
.bwt-hero__inner { z-index: 2; }

/* ---------- Amenities preview ---------- */
.bwt-amenity-preview__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 2.5rem; }
.bwt-amenity-preview__link { font-weight: 600; color: var(--fg);text-underline-offset: 4px; }
.bwt-amenity-preview__link:hover { text-decoration: underline;  }  
.bwt-amenity-preview__grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .bwt-amenity-preview__grid { grid-template-columns: 1fr; } }
.bwt-amenity-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3; }
.bwt-amenity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bwt-amenity-card:hover img { transform: scale(1.05); }
.bwt-amenity-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,42,58,.85) 0%, rgba(14,42,58,0) 60%); }
.bwt-amenity-card__caption { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: #fff; }
.bwt-amenity-card__eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: .25rem; }
.bwt-amenity-card__title {font-size: 1.5rem; margin: 0; color: #fff; }

/* ---------- 360 Virtual Tour ---------- */
.bwt-360__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
@media (max-width: 900px) { .bwt-360__inner { grid-template-columns: 1fr; } }
.bwt-360__preview { position: relative; display: block; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.15); background: rgba(0,0,0,.3); cursor: pointer; }
.bwt-360__preview img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: opacity .3s; }
.bwt-360__preview:hover img { opacity: .95; }
.bwt-360__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; background: var(--accent); color: var(--accent-fg, #0e2a3a); display: grid; place-items: center; font-size: 1.75rem; box-shadow: 0 12px 32px rgba(0,0,0,.4); transition: transform .25s; }
.bwt-360__preview:hover .bwt-360__play { transform: translate(-50%, -50%) scale(1.1); }
.bwt-360__badge { position: absolute; bottom: 1rem; left: 1rem; background: rgba(0,0,0,.6); color: #fff; padding: .25rem .75rem; border-radius: 999px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }
.bwt-360__modal { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.85); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.bwt-360__modal[hidden] { display: none; }
.bwt-360__close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; border: 0; font-size: 1.5rem; cursor: pointer; }
.bwt-360__close:hover { background: rgba(255,255,255,.2); }
.bwt-360__frame { position: relative; width: 100%; max-width: 1100px; aspect-ratio: 16/9; background: #000; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.bwt-360__frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Reviews ---------- */
.bwt-reviews { background: #fff; }
.bwt-reviews .bwt-eyebrow { color: var(--accent); }
.bwt-reviews h2 { color: var(--fg); }
.bwt-reviews__slider { position: relative; display: flex; align-items: center; gap: 1rem; margin-top: 3rem; }
.bwt-reviews__swiper { flex: 1; min-width: 0; padding-bottom: 2.75rem; }
.bwt-reviews__swiper .swiper-wrapper { align-items: stretch; }
.bwt-reviews__swiper .swiper-slide { height: auto; }
.bwt-review { height: 100%; padding: 1.75rem; border-radius: var(--radius-lg); background: #0e2a3a; border: 1px solid rgba(255,255,255,.06); box-sizing: border-box; display: flex; flex-direction: column; }
.bwt-review__stars { color: #22c55e; letter-spacing: 2px; font-size: 1rem; }
.bwt-review__quote { font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,.88); margin: .75rem 0 1.25rem; flex: 1; }
.bwt-review__name { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.bwt-review__source { opacity: .55; }
.bwt-reviews__swiper .swiper-pagination-bullet { background: var(--accent); opacity: .35; }
.bwt-reviews__swiper .swiper-pagination-bullet-active { opacity: 1; }
/* Nav buttons sit outside the swiper as flex siblings — override Swiper's absolute positioning */
.bwt-reviews__slider .swiper-button-prev,
.bwt-reviews__slider .swiper-button-next { position: static; margin: 0; transform: none; flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: #fff; border: 1.5px solid var(--accent); color: var(--accent); transition: background .2s, border-color .2s, color .2s; }
.bwt-reviews__slider .swiper-button-prev:hover,
.bwt-reviews__slider .swiper-button-next:hover { background: #eb146e; border-color: #fff; color: #fff; }
.bwt-reviews__slider .swiper-button-prev::after,
.bwt-reviews__slider .swiper-button-next::after { font-size: 1rem; }
@media (max-width: 639px) { .bwt-reviews__slider .swiper-button-prev, .bwt-reviews__slider .swiper-button-next { display: none; } }

/* ---------- Limited availability ---------- */
.bwt-availability { display: grid; gap: 2.5rem; grid-template-columns: 1.2fr .8fr; align-items: center; padding: clamp(2rem, 4vw, 3.5rem); border-radius: var(--radius-lg); background: var(--muted, rgba(14,42,58,.05)); border: 1px solid var(--border, rgba(0,0,0,.08)); }
@media (max-width: 900px) { .bwt-availability { grid-template-columns: 1fr; } }
.bwt-availability__card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; border-radius: var(--radius-lg); background: var(--card-bg, #fff); border: 1px solid var(--border, rgba(0,0,0,.08)); }
.bwt-availability__pin { padding-top: .2rem; }
.bwt-availability__pin { font-size: 2rem; }
.bwt-availability__addr {  font-size: 1.1rem; }
.bwt-availability__sub { font-size: .9rem; color: var(--muted-fg, #5a6770); }
.bwt-availability__phone { display: inline-flex; align-items: center; gap: .35rem; margin-top: .5rem; font-weight: 600; color: var(--fg); text-decoration: none; }
.bwt-availability__phone:hover { color: var(--accent); }
.bwt-availability__directions { display: inline-flex; align-items: center; gap: .35rem; margin-top: .4rem; color: var(--accent); font-size: .875rem; font-weight: 600; text-decoration: none; }
.bwt-availability__directions:hover { text-decoration: underline; }

/* ---------- Vlogs & How-To TV pages ---------- */

/* 16:9 responsive embed wrapper */
.bwt-embed-16x9 { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-md); overflow: hidden; background: #000; }
.bwt-embed-16x9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Badge / chip */
.bwt-badge { display: inline-flex; align-items: center; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; }
.bwt-badge--pink { max-width: 115px; background: var(--accent); color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.14); }
.bwt-badge--pink::before { content: ''; width: 6px; height: 6px; background: rgba(255,255,255,.85); border-radius: 50%; margin-right: .42em; flex-shrink: 0; animation: bwt-badge-pulse 2s ease-in-out infinite; }
@keyframes bwt-badge-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.6); } }
.bwt-badge--navy  { background: var(--brand-navy); color: #fff; }

/* Featured vlog (white bg) */
.bwt-vlog-featured { background: var(--bg); }
.bwt-vlog-featured__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.bwt-vlog-featured__meta { display: flex; flex-direction: column; gap: 1rem; }
.bwt-vlog-featured__title { font-size: clamp(1.4rem, 2.5vw, 2.1rem); margin: 0; line-height: 1.2; }
.bwt-vlog-featured__body { color: var(--fg-muted); margin: 0; line-height: 1.7; }

/* Featured How-To TV (dark bg) */
.bwt-httv-featured { background: var(--brand-navy); padding: clamp(2.5rem, 5vw, 5rem) 0; }
.bwt-httv-featured h2,.bwt-httv-featured h3 { color: #fff; }
.bwt-httv-featured__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.bwt-httv-featured__meta { display: flex; flex-direction: column; gap: 1rem; }
.bwt-httv-featured__title { font-size: clamp(1.4rem, 2.5vw, 2.1rem); margin: 0; color: #fff; line-height: 1.2; }
.bwt-httv-featured__date { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }

/* Category tabs (vlogs) */
.bwt-cat-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.bwt-cat-tab { background: transparent; border: 1px solid var(--border); color: var(--fg-muted); font-size: .85rem; font-weight: 500; padding: .55rem 1.3rem; border-radius: var(--radius-sm); transition: all .18s; }
.bwt-cat-tab:hover { border-color: var(--accent); color: var(--accent); }
.bwt-cat-tab.is-active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }

/* Category pills (how-to TV) */
.bwt-cat-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.bwt-cat-pill { background: transparent; border: 1px solid var(--border); color: var(--fg-muted); font-size: .85rem; font-weight: 500; padding: .55rem 1.4rem; border-radius: 100px; transition: all .18s; }
.bwt-cat-pill:hover { border-color: var(--accent); color: var(--accent); }
.bwt-cat-pill.is-active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }

/* Video / vlog 4-column grid */
.bwt-vid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Video card */
.bwt-vid-card { display: flex; flex-direction: column; }
.bwt-vid-card__thumb-link { display: block; position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; background: var(--brand-navy); }
.bwt-vid-card__thumb { width: 100%; height: 100%; }
.bwt-vid-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.bwt-vid-card__thumb-link:hover img { transform: scale(1.04); }
.bwt-vid-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.28); opacity: 0; transition: opacity .2s; }
.bwt-vid-card__thumb-link:hover .bwt-vid-card__play { opacity: 1; }
.bwt-vid-card__play svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.bwt-vid-card__body { padding: .85rem 0 0; display: flex; flex-direction: column; gap: .2rem; }
.bwt-vid-card__title { font-family: var(--font-sans); font-size: .93rem; font-weight: 600; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bwt-vid-card__channel { font-size: .82rem; color: var(--fg-muted); }
.bwt-vid-card__meta { font-size: .78rem; color: var(--fg-muted); margin-top: .1rem; }

/* Vlogs section header left-aligned */
.bwt-vlogs-grid-section .bwt-section__header { margin-bottom: 1.75rem; }

/* Load more + spinner */
.bwt-vlogs-footer { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; margin-top: 3rem; }
.bwt-spinner { display: inline-block; width: 24px; height: 24px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: bwt-spin .75s linear infinite; }
@keyframes bwt-spin { to { transform: rotate(360deg); } }

/* Vlog CTA card */
.bwt-vlog-cta-section { background: var(--bg-muted); }
.bwt-vlog-cta-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: clamp(2rem, 4vw, 3.5rem); text-align: center; max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; box-shadow: var(--shadow-sm); }
.bwt-vlog-cta-card h2 { margin: 0; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.bwt-vlog-cta-card p { color: var(--fg-muted); margin: 0; max-width: 480px; }
.bwt-vlog-cta-card__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }

/* Responsive */
@media (max-width: 1024px) { .bwt-vid-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) {
  .bwt-vid-grid { grid-template-columns: repeat(2, 1fr); }
  .bwt-vlog-featured__inner,
  .bwt-httv-featured__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .bwt-vid-grid { grid-template-columns: 1fr; } }

/* ── How-To TV featured — light variant ─────────────────────────── */
.bwt-httv-featured--light { background: #F8F9FA; }
.bwt-httv-featured--light h2,
.bwt-httv-featured--light h3,
.bwt-httv-featured--light .bwt-httv-featured__title { color: var(--fg); }
.bwt-httv-featured--light .bwt-httv-featured__date { color: var(--fg-muted); }

/* ── Featured thumbnail play trigger ────────────────────────────── */
.bwt-httv-featured__thumb-trigger {
  display: block; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-md); overflow: hidden;
  border: 0; padding: 0; cursor: pointer; position: relative;
  background: var(--brand-navy);
}
.bwt-httv-featured__thumb-trigger img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.bwt-httv-featured__thumb-trigger:hover img,
.bwt-httv-featured__thumb-trigger:focus-visible img { transform: scale(1.03); }
.bwt-httv-featured__thumb-trigger .bwt-vid-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3); opacity: 1; transition: background .2s;
}
.bwt-httv-featured__thumb-trigger:hover .bwt-vid-card__play,
.bwt-httv-featured__thumb-trigger:focus-visible .bwt-vid-card__play { background: rgba(0,0,0,.52); }
.bwt-httv-featured__thumb-trigger .bwt-vid-card__play svg { width: 64px; height: 64px; }

/* ── Card thumbnail as button (modal trigger) ───────────────────── */
button.bwt-vid-card__thumb-link { background: none; border: 0; padding: 0; cursor: pointer; text-align: left; }
button.bwt-vid-card__thumb-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
button.bwt-vid-card__thumb-link:hover .bwt-vid-card__play,
button.bwt-vid-card__thumb-link:focus-visible .bwt-vid-card__play { opacity: 1; }

/* ── YouTube popup modal ─────────────────────────────────────────── */
.bwt-yt-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.bwt-yt-modal[hidden] { display: none; }
.bwt-yt-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.85); }
.bwt-yt-modal__content { position: relative; width: min(92vw, 960px); z-index: 1; }
.bwt-yt-modal__close {
  position: absolute; top: -2.75rem; right: -.25rem;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; line-height: 1; cursor: pointer;
  padding: .2rem .5rem; opacity: .85;
}
.bwt-yt-modal__close:hover { opacity: 1; }
.bwt-yt-modal .bwt-embed-16x9 { border-radius: var(--radius-md); }
span.bwt-hero__pill{margin-bottom: 20px;}
/* ── Neighborhood page ───────────────────────────────────────────── */
.bwt-nbhd-intro__inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start; }
.bwt-nbhd-intro__text { display: flex; flex-direction: column; gap: 1.25rem; }
.bwt-nbhd-intro__text h2 { margin: 0; }
.bwt-nbhd-stats { display: flex; flex-direction: column; gap: 1rem; min-width: 190px; }
.bwt-nbhd-stat { text-align: center; padding: 1.5rem 1.75rem; background: var(--bg-muted); border-radius: var(--radius-md); border: 1px solid var(--border); }
.bwt-nbhd-stat__value { display: block; font-size: 2.25rem; font-weight: 700; color: var(--brand-navy); line-height: 1; font-family: var(--font-display); }
.bwt-nbhd-stat__label { display: block; font-size: .75rem; color: var(--fg-muted); margin-top: .4rem; text-transform: uppercase; letter-spacing: .1em; }
.bwt-nbhd-map__empty { text-align: center; color: var(--fg-muted); padding: 3rem 0; font-size: .95rem; }
@media (max-width: 860px) {
  .bwt-nbhd-intro__inner { grid-template-columns: 1fr; }
  .bwt-nbhd-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; min-width: 0; }
  .bwt-nbhd-stat { flex: 1 1 130px; }
  .bwt-alert-banner__close{display: none;}
  span.bwt-hero__pill{margin-bottom: 20px;}
}

/* ── Single Local Event ─────────────────────────────────────────── */
.bwt-event-detail { display: grid; grid-template-columns: 1fr 280px; gap: 2rem 3rem; align-items: start; }
.bwt-event-detail__image { grid-column: 1; grid-row: 1; }
.bwt-event-detail__img { width: 100%; border-radius: var(--radius-lg, 12px); object-fit: cover; max-height: 420px; display: block; }
.bwt-event-detail__meta { grid-column: 2; grid-row: 1 / 3; background: var(--bg-muted, #f6f6f4); border-radius: var(--radius-lg, 12px); padding: 1.5rem; display: flex; flex-direction: column; gap: .875rem; position: sticky; top: 90px; align-self: start; }
.bwt-event-detail__body { grid-column: 1; grid-row: 2; }
.bwt-event-meta-row { display: flex; align-items: flex-start; gap: .625rem; font-size: .9rem; }
.bwt-event-meta-row svg { flex-shrink: 0; margin-top: .15rem; color: var(--accent); }
.bwt-event-meta-row strong { display: block; font-weight: 600; }
.bwt-event-meta-row__sub { color: var(--fg-muted); font-size: .85rem; }
.bwt-place-card__image-link { display: block; }
.bwt-unstyled-link { color: inherit; text-decoration: none; }
.bwt-unstyled-link:hover { color: var(--accent); }
@media (max-width: 700px) {
  .bwt-event-detail { grid-template-columns: 1fr; }
  .bwt-event-detail__meta { grid-column: 1; grid-row: 2; }
  .bwt-event-detail__body { grid-row: 3; }
}

/* ── Single event page header ──────────────────────────────────── */
.bwt-page-hero { background: var(--brand-navy); color: #fff; padding: 2.75rem 0 2.25rem; }
.bwt-page-hero .bwt-eyebrow { color: var(--accent); margin-bottom: .5rem; }
.bwt-page-hero h1 { color: #fff; margin: .4rem 0 0; font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.2; }

/* ── Neighborhood page ─────────────────────────────────────────── */
.bwt-nbhd-stats-bar { background: var(--bg-muted); border-bottom: 1px solid var(--border); padding: 0; }
.bwt-nbhd-stats-bar__inner { display: flex; align-items: stretch; gap: 0; flex-wrap: nowrap; max-width: 1340px; margin: 0 auto; }
.bwt-nbhd-stat-item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 1.1rem; padding: 2.75rem 1.5rem; border-right: 1px solid var(--border); }
.bwt-nbhd-stat-item:last-child { border-right: none; }
.bwt-nbhd-stat-item__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: rgba(235,20,110,.12); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; }
.bwt-nbhd-stat-item__body { display: flex; flex-direction: column; gap: .15rem; }
.bwt-nbhd-stat-item__number { font-size: 1.75rem; font-weight: 700; line-height: 1; color: var(--brand-navy); font-family: var(--font-display); }
.bwt-nbhd-stat-item__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--fg); font-weight: 600; margin-top: .1rem; }
.bwt-nbhd-stat-item__intro { font-size: .8rem; color: var(--fg-muted); }

.bwt-nbhd-discover__header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.bwt-nbhd-discover__heading { margin: 0 0 .75rem; }
.bwt-nbhd-discover__desc { color: var(--fg-muted); font-size: .95rem; }
.bwt-nbhd-discover__desc p { margin: 0; }

.bwt-nbhd-tabs { margin-top: 2rem; }
.bwt-nbhd-tabs__list { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.75rem; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.bwt-nbhd-tab-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.25rem; border: none; background: none; cursor: pointer; font-size: .9rem; font-weight: 500; color: var(--fg-muted); border-bottom: 2px solid transparent; margin-bottom: -2px; border-radius: 0; transition: color .2s, border-color .2s; }
.bwt-nbhd-tab-btn img { width: 20px; height: 20px; object-fit: contain; }
.bwt-nbhd-tab-btn:hover { color: var(--brand-navy); }
.bwt-nbhd-tab-btn--active { color: var(--brand-navy); border-bottom-color: var(--accent, var(--brand-navy)); font-weight: 600; }

.bwt-nbhd-tab-panel { display: none; }
.bwt-nbhd-tab-panel--active { display: block; }

.bwt-nbhd-places-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.bwt-nbhd-place { background: var(--bg-card, #fff); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; display: flex; flex-direction: column; gap: .875rem; }
.bwt-nbhd-place__header { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.bwt-nbhd-place__info { flex: 1; min-width: 0; }
.bwt-nbhd-place__name { font-size: 1rem; font-weight: 600; margin: 0 0 .2rem; line-height: 1.3; }
.bwt-nbhd-place__type { font-size: .8rem; color: var(--fg-muted); margin: 0; }
.bwt-nbhd-place__rating { display: flex; align-items: center; gap: .3rem; font-weight: 600; font-size: .9rem; color: var(--brand-navy); white-space: nowrap; flex-shrink: 0; }
.bwt-nbhd-place__rating svg { color: #f59e0b; }
.bwt-nbhd-place__footer { display: flex; gap: 1rem; flex-wrap: wrap; }
.bwt-nbhd-place__meta { display: flex; align-items: center; gap: .3rem; font-size: .82rem; color: var(--fg-muted); }
.bwt-nbhd-place__meta svg { flex-shrink: 0; color: var(--accent, var(--brand-navy)); }

.bwt-nbhd-address-section { padding: 2.5rem 0; }
.bwt-nbhd-address-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.bwt-nbhd-address-card__info { display: flex; align-items: flex-start; gap: 1rem; }
.bwt-nbhd-address-card__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand-navy); }
.bwt-nbhd-address-card__name { font-size: 1rem; font-weight: 600; margin: 0 0 .2rem; }
.bwt-nbhd-address-card__line { font-size: .88rem; color: var(--fg-muted); margin: 0; }
.bwt-nbhd-address-card__actions { display: flex; gap: .75rem; flex-wrap: nowrap; flex-shrink: 0; }

@media (max-width: 900px) {
  .bwt-nbhd-places-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 1rem; padding-bottom: .25rem; }
  .bwt-nbhd-place { flex: 0 0 240px; min-width: 0; }
}
@media (max-width: 768px) {
  .bwt-nbhd-places-grid { display: grid; grid-template-columns: 1fr; overflow-x: unset; }
  .bwt-nbhd-place { flex: unset; }
}
@media (max-width: 720px) {
  .bwt-nbhd-stats-bar__inner { flex-wrap: wrap; }
  .bwt-nbhd-stat-item { flex: 0 0 50%; box-sizing: border-box; border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem 1.25rem; }
  .bwt-nbhd-stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .bwt-nbhd-stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .bwt-nbhd-stat-item { flex: 0 0 100%; border-right: none !important; border-bottom: 1px solid var(--border); padding: 1.25rem 1rem; justify-content: flex-start; }
  .bwt-nbhd-stat-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .bwt-nbhd-address-card { flex-direction: column; align-items: flex-start; }
}

/* ── Neighborhood Map / List switcher ───────────────────────────── */
/* Constrain plugin map section to container width */
#nbhd-map-view .neighborhood-page__map-section { width: min(1200px, 92vw); margin: 0 auto; }

.bwt-nbhd-switcher-wrap { padding: 2rem 0 0; }
.bwt-nbhd-switcher { display: inline-flex; background: var(--bg-muted); border: 1px solid var(--border); padding: 4px; gap: 2px; }
.bwt-nbhd-switcher-btn { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.35rem; border-radius: calc(var(--radius-md, 8px) - 2px); border: none; background: transparent; font-size: .88rem; font-weight: 600; color: var(--fg-muted); cursor: pointer; transition: background .18s, color .18s, box-shadow .18s; font-family: inherit; }
.bwt-nbhd-switcher-btn:hover { color: var(--fg); }
.bwt-nbhd-switcher-btn--active { background: #fff; color: var(--brand-navy); box-shadow: 0 1px 4px rgba(0,0,0,.12); }

/* ── Neighborhood List view ─────────────────────────────────────── */
.bwt-nbhd-list-section { padding-top: 2rem; }
.bwt-nbhd-list-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.bwt-nbhd-list-filter { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--border); background: #fff; font-size: .84rem; font-weight: 500; color: var(--fg-muted); cursor: pointer; transition: border-color .15s, background .15s, color .15s; font-family: inherit; }
.bwt-nbhd-list-filter:hover { border-color: var(--brand-navy); color: var(--brand-navy); }
.bwt-nbhd-list-filter--active,
.bwt-nbhd-list-filter--active:hover { border-color: var(--brand-navy); background: var(--brand-navy); color: #fff; }
.bwt-nbhd-list-filter img { filter: brightness(0) saturate(100%); opacity: .6; }
.bwt-nbhd-list-filter--active img { filter: brightness(0) invert(1); opacity: 1; }
/* Category dropdown (mobile) — hidden on desktop */
.bwt-nbhd-cat-select-wrap { display: none; }
@media (max-width: 991px) {
  .bwt-nbhd-list-filters { display: none; }
  .bwt-nbhd-cat-select-wrap { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
}
.bwt-nbhd-list-items { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.bwt-nbhd-list-item { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 1rem 1.5rem; padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--border); background: #fff; transition: background .15s; }
.bwt-nbhd-list-item:last-child { border-bottom: none; }
.bwt-nbhd-list-item:hover { background: var(--bg-muted); }
.bwt-nbhd-list-item__cat { font-size: .75rem; font-weight: 600; color: var(--brand-pink); text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.bwt-nbhd-list-item__name { font-size: .95rem; font-weight: 600; color: var(--brand-navy); margin: 0 0 .15rem; }
.bwt-nbhd-list-item__type { font-size: .82rem; color: var(--fg-muted); margin-bottom: .2rem; }
.bwt-nbhd-list-item__address { display: flex; align-items: center; gap: .3rem; font-size: .78rem; color: var(--fg-muted); margin-top: .25rem; }
.bwt-nbhd-list-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.bwt-nbhd-list-item__meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; }
.bwt-nbhd-list-item__meta-pill { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; color: var(--fg-muted); white-space: nowrap; }
.bwt-nbhd-list-item__meta-pill--rating { color: #e5a000; }
.bwt-nbhd-list-item__actions { display: flex; align-items: center; gap: .75rem; }
.bwt-nbhd-list-item__action-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 600; color: var(--brand-navy); text-decoration: none; padding: .3rem .75rem; border: 1px solid var(--border); border-radius: 999px; transition: background .15s, border-color .15s; white-space: nowrap; }
.bwt-nbhd-list-item__action-link:hover { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.bwt-nbhd-list-item__action-link--primary { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.bwt-nbhd-list-item__action-link--primary:hover { background: var(--brand-pink); border-color: var(--brand-pink); }
.bwt-nbhd-list-item__meta-sub { color: var(--fg-muted); font-weight: 400; margin-left: .15rem; }
/* On mobile: hide switcher + map, force list view */
@media (max-width: 1024px) {
  .bwt-nbhd-switcher-wrap { display: none; }
  #nbhd-map-view { display: none !important; }
  #nbhd-list-view { display: block !important; }
  .bwt-nbhd-list-item { grid-template-columns: 1fr auto; gap: .75rem 1rem; }
  .bwt-nbhd-list-item__cat { grid-column: 1 / -1; font-size: .7rem; padding: .2rem .6rem; background: rgba(235,20,110,.08); border-radius: 4px; display: inline-block; width: fit-content; }
}
@media (max-width: 760px) {
  .bwt-hero__media iframe.bwt-hero__video { display: none; }
}
@media (max-width: 540px) {
  .bwt-nbhd-list-item { grid-template-columns: 1fr; gap: .4rem; }
  .bwt-nbhd-list-item__right { align-items: flex-start; }
  .bwt-nbhd-list-item__meta { justify-content: flex-start; }
}

section#neighborhood-map {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Local Events listing page ─────────────────────────────────── */
.bwt-le-intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.bwt-le-intro__heading { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin: 0 0 .75rem; }
.bwt-le-intro__desc { font-size: 1.05rem; color: var(--fg-muted); margin: 0; line-height: 1.7; }

/* Filters bar */
.bwt-le-filters-wrap { margin-bottom: 2.5rem; }
.bwt-le-filters { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; background: var(--bg-card, #fff); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: .875rem 1.25rem; }
.bwt-le-filter-group { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.bwt-le-filter-label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--fg-muted); white-space: nowrap; }
.bwt-le-select-wrap { position: relative; }
.bwt-le-select-wrap::after { content: ''; position: absolute; right: .6rem; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--fg-muted); pointer-events: none; }
.bwt-le-select { appearance: none; -webkit-appearance: none; background: var(--bg-muted, #f6f6f4); border: 1px solid var(--border); border-radius: var(--radius-sm, 6px); padding: .4rem 1.75rem .4rem .75rem; font-size: .88rem; color: inherit; cursor: pointer; }
.bwt-le-select:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.bwt-le-date-range { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.bwt-le-date-picker { display: flex; align-items: center; gap: .4rem; }
.bwt-le-date-input { background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius-sm, 6px); padding: .4rem .65rem; font-size: .88rem; color: inherit; }
.bwt-le-date-input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.bwt-le-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; align-self: center; }
.bwt-le-cat-filters { display: flex; gap: .375rem; flex-wrap: wrap; }
.bwt-filter-btn { display: inline-flex; align-items: center; gap: .35rem; padding: .375rem .875rem; border: 1px solid var(--border); border-radius: 999px; background: transparent; cursor: pointer; font-size: .83rem; font-weight: 500; color: var(--fg-muted); transition: color .15s, background .15s, border-color .15s; white-space: nowrap; }
.bwt-filter-btn svg { flex-shrink: 0; }
.bwt-filter-btn:hover { color: var(--brand-navy); border-color: var(--brand-navy); background: var(--bg-muted); }
.bwt-filter-btn.active { background: var(--brand-navy, #1b2a4a); color: #fff; border-color: var(--brand-navy, #1b2a4a); }
.bwt-filter-btn.active svg { stroke: #fff; }
.bwt-le-reset-btn { display: inline-flex; align-items: center; gap: .35rem; padding: .375rem .75rem; border: none; background: none; cursor: pointer; font-size: .83rem; color: var(--fg-muted); border-radius: var(--radius-sm); transition: color .15s; flex-shrink: 0; }
.bwt-le-reset-btn:hover { color: var(--danger, #dc2626); }

/* Events grid */
.bwt-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; min-height: 200px; }
.bwt-events-loading { grid-column: 1/-1; display: flex; align-items: center; justify-content: center; padding: 4rem 0; color: var(--fg-muted); font-size: .95rem; gap: .75rem; }
.bwt-events-loading::before { content: ''; width: 20px; height: 20px; border: 2px solid var(--border); border-top-color: var(--accent, var(--brand-navy)); border-radius: 50%; animation: bwt-spin .7s linear infinite; flex-shrink: 0; }
.bwt-events-empty { grid-column: 1/-1; text-align: center; color: var(--fg-muted); padding: 4rem 0; font-size: .95rem; }
@keyframes bwt-spin { to { transform: rotate(360deg); } }

/* Event card */
.bwt-event-card { background: var(--bg-card, #fff); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.bwt-event-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.bwt-event-card__img-link { display: block; }
.bwt-event-card__img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-muted); }
.bwt-event-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.bwt-event-card:hover .bwt-event-card__img { transform: scale(1.04); }
.bwt-event-card__img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-muted) 0%, var(--border) 100%); }
.bwt-event-card__badge { position: absolute; top: .625rem; left: .625rem; background: var(--brand-navy, #1b2a4a); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: .25rem .625rem; border-radius: 999px; }
.bwt-event-card__body { padding: 1.125rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.bwt-event-card__title { font-size: 1rem; font-weight: 600; margin: 0; line-height: 1.35; }
.bwt-event-card__title a { color: inherit; text-decoration: none; }
.bwt-event-card__title a:hover { color: var(--accent, var(--brand-navy)); }
.bwt-event-card__meta { display: flex; align-items: center; gap: .35rem; font-size: .82rem; color: var(--fg-muted); flex-wrap: wrap; }
.bwt-event-card__meta svg { flex-shrink: 0; color: var(--accent, var(--brand-navy)); }
.bwt-event-card__sep { color: var(--border); }
.bwt-event-card__loc { display: flex; align-items: flex-start; gap: .3rem; font-size: .82rem; color: var(--fg-muted); margin: 0; }
.bwt-event-card__loc svg { flex-shrink: 0; margin-top: .15rem; color: var(--accent, var(--brand-navy)); }
.bwt-event-card__actions { display: flex; gap: .5rem; margin-top: auto; padding-top: .5rem; flex-wrap: wrap; }

/* Small button modifier */
.bwt-btn--sm { font-size: .82rem; padding: .375rem .875rem; }

/* Load more */
.bwt-le-load-more { text-align: center; padding: 2.5rem 0 1rem; }

/* Disclaimer */
.bwt-le-disclaimer { margin: 2.5rem 0 0; font-size: .82rem; line-height: 1.7; color: var(--fg-muted); padding: 1.25rem 1.5rem; background: var(--bg-muted); border-radius: var(--radius-md); }

/* Category dropdown hidden on desktop; shown only on narrow screens */
.bwt-le-cat-select-group { display: none; }

/* Responsive */
@media (max-width: 1100px) {
  .bwt-le-cat-select-group { display: flex; }
  .bwt-le-filter-group:has(.bwt-le-cat-filters) { display: none; }
  .bwt-le-divider { display: none; }
}
@media (max-width: 960px) { .bwt-events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .bwt-le-filters { gap: .625rem; flex-wrap: wrap; }
  .bwt-events-grid { grid-template-columns: 1fr; }
}

/* ── Schedule Tour page ────────────────────────────────────────── */
.bwt-tour-section { padding: 3rem 0 4rem; }
.bwt-tour-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; align-items: start; }

/* Form card */
.bwt-tour-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem; }
/* ── Fluent Form inside tour card ───────────────────────────────── */
/* Layout: flex-wrap so .bwt-ff-half fields pair up side-by-side */
.bwt-tour-card .frm-fluent-form fieldset { display: flex; flex-wrap: wrap; gap: 0 1.25rem; }
.bwt-tour-card .ff-el-group { flex: 0 0 100%; min-width: 0; margin-bottom: 1.25rem; }
.bwt-tour-card .ff-el-group.bwt-ff-half { flex: 0 0 calc(50% - 0.625rem); }

/* Labels */
.bwt-tour-card .ff-el-input--label { margin-bottom: .35rem; }
.bwt-tour-card .ff-el-input--label label { display: block; font-size: .82rem; font-weight: 600; color: var(--fg); letter-spacing: .01em; }

/* Text / email / date inputs & select */
.bwt-tour-card .ff-el-form-control { width: 100%; padding: .72rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; font-family: inherit; color: var(--fg); background: #fff; outline: none; box-sizing: border-box; transition: border-color .15s; }
.bwt-tour-card .ff-el-form-control:focus { border-color: var(--brand-pink); box-shadow: none; }
.bwt-tour-card select.ff-el-form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c6873' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.5rem; cursor: pointer; }

/* Radio buttons styled as pill toggles */
.bwt-tour-card .ff-el-group:has([name="tour_type"]) .ff-el-input--content { display: flex; gap: .65rem; flex-wrap: wrap; align-items: stretch; }
.bwt-tour-card .ff-el-group:has([name="tour_type"]) .ff-el-form-check { flex: 1; display: flex; align-items: stretch; }
.bwt-tour-card .ff-el-group:has([name="tour_type"]) .ff-el-form-check-label { flex: 1; justify-content: center; margin-bottom: 0 !important; }
.bwt-tour-card .ff-el-form-check { display: flex; }
.bwt-tour-card .ff-el-form-check-input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.bwt-tour-card .ff-el-form-check-label { display: flex; align-items: center; gap: .45rem; padding: .6rem 1.25rem; border: 1.5px solid var(--border); border-radius: var(--radius-md, 8px); cursor: pointer; font-size: .9rem; font-weight: 500; color: var(--fg-muted); transition: border-color .15s, background .15s, color .15s; user-select: none; }
.bwt-tour-card .ff-el-form-check-label:hover { border-color: var(--brand-pink); color: var(--fg); }
.bwt-tour-card .ff-el-form-check-label:has(input:checked) { border-color: var(--brand-pink); background: rgba(235,20,110,.05); color: var(--brand-pink); font-weight: 600; }

/* Submit button */
.bwt-tour-card .ff_submit_btn_wrapper { margin-top: .25rem; }
.bwt-tour-card .ff-btn-submit { font-family: inherit; font-size: .95rem; font-weight: 600; padding: .85rem 2rem; border-radius: var(--radius-md, 8px); letter-spacing: .01em; cursor: pointer; transition: background .15s; }

/* Inline error messages */
.bwt-tour-card .error { font-size: .78rem; color: #d9363e; margin-top: .3rem; }
.bwt-tour-card .ff-el-is-required .ff-asterisk { color: var(--brand-pink); }

/* Section groups */
.bwt-tf-group { margin-bottom: 1.75rem; }
.bwt-tf-group:last-of-type { margin-bottom: 1.25rem; }
.bwt-tf-label { display: block !important; margin-bottom: .9rem; }

/* Tour type cards */
.bwt-tour-types { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bwt-tour-type { position: relative; display: block; }
.bwt-tour-type input { position: absolute; opacity: 0; width: 0; height: 0; }
.bwt-tour-type__card { display: flex; flex-direction: column; gap: .25rem; padding: 1.1rem 1.25rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: border-color .15s, background .15s; }
.bwt-tour-type:hover .bwt-tour-type__card { border-color: var(--border-strong); }
.bwt-tour-type input:checked + .bwt-tour-type__card { border-color: var(--brand-pink); background: rgba(235,20,110,.04); }
.bwt-tour-type__icon { color: var(--fg-muted); margin-bottom: .2rem; }
.bwt-tour-type input:checked + .bwt-tour-type__card .bwt-tour-type__icon { color: var(--brand-pink); }
.bwt-tour-type__name { font-size: .95rem; font-weight: 600; color: var(--fg); }
.bwt-tour-type__desc { font-size: .82rem; color: var(--fg-muted); }

/* Date + time */
.bwt-tour-datetime { display: flex; gap: 1rem; align-items: flex-start; }
.bwt-tour-date-wrap { flex-shrink: 0; }
.bwt-tour-date-input { height: 40px; padding: .45rem .85rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .88rem; font-family: inherit; color: var(--fg); background: #fff; outline: none; transition: border-color .15s; }
.bwt-tour-date-input:focus { border-color: var(--brand-pink); }
.bwt-tour-times { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; flex: 1; }
.bwt-time-slot { position: relative; display: block; }
.bwt-time-slot input { position: absolute; opacity: 0; width: 0; height: 0; }
.bwt-time-slot span { display: block; padding: .5rem .3rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .8rem; text-align: center; cursor: pointer; white-space: nowrap; transition: all .15s; }
.bwt-time-slot:hover span { border-color: var(--brand-pink); color: var(--brand-pink); }
.bwt-time-slot input:checked + span { background: var(--brand-pink); color: #fff; border-color: var(--brand-pink); }

/* Contact inputs */
.bwt-tour-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.bwt-tour-input { width: 100%; padding: .72rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; font-family: inherit; color: var(--fg); background: #fff; outline: none; box-sizing: border-box; transition: border-color .15s; }
.bwt-tour-input:focus { border-color: var(--brand-pink); }
.bwt-tour-input::placeholder { color: var(--fg-muted); }

/* Submit */
.bwt-tour-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; font-weight: 700; margin-top: .25rem; }

/* Sidebar */
.bwt-tour-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 90px; }
.bwt-tour-why { background: var(--brand-navy); color: #fff; border-radius: var(--radius-lg); padding: 2rem; }
.bwt-tour-why__heading { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin: 0 0 1.25rem; }
.bwt-tour-why__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.bwt-tour-why__list li { font-size: .9rem; color: rgba(255,255,255,.88); padding-left: 1.1rem; position: relative; line-height: 1.45; }
.bwt-tour-why__list li::before { content: '·'; position: absolute; left: 0; color: rgba(255,255,255,.45); }
.bwt-tour-hours { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem 1.75rem; display: grid; grid-template-areas: "icon heading" "icon text"; grid-template-columns: auto 1fr; gap: .05rem .9rem; align-items: start; }
.bwt-tour-hours__icon { grid-area: icon; color: var(--fg-muted); align-self: start; margin-top: .15rem; }
.bwt-tour-hours__heading { grid-area: heading; font-size: 1rem; font-weight: 600; color: var(--brand-navy); margin: 0; }
.bwt-tour-hours__text { grid-area: text; font-size: .85rem; color: var(--fg-muted); margin: .2rem 0 0; }
.bwt-tour-quick-actions { background: var(--brand-navy); border-radius: var(--radius-lg); overflow: hidden; }

/* Responsive */
@media (max-width: 960px) {
  .bwt-tour-layout { grid-template-columns: 1fr; }
  .bwt-tour-sidebar { position: static; }
}
@media (max-width: 600px) {
  .bwt-tour-card { padding: 1.5rem; }
  .bwt-tour-datetime { flex-direction: column; }
  .bwt-tour-date-input { width: 100%; }
  .bwt-tour-times { grid-template-columns: repeat(4, 1fr); }
  .bwt-tour-contact-grid { grid-template-columns: 1fr; }
  .bwt-tour-card .ff-el-group.bwt-ff-half { flex: 0 0 100%; }
}

/* ── Apply Now Modal ───────────────────────────────────────────── */
.bwt-apply-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.bwt-apply-modal[hidden] { display: none; }
.bwt-apply-modal__backdrop { position: absolute; inset: 0; background: rgba(10,20,30,.7); backdrop-filter: blur(4px); }
.bwt-apply-modal__card { position: relative; z-index: 1; display: flex; max-width: 860px; width: 100%; border-radius: var(--radius-xl); overflow: hidden; background: #fff; box-shadow: 0 32px 100px rgba(0,0,0,.35); transform: scale(.94) translateY(20px); opacity: 0; transition: transform .26s cubic-bezier(.2,.8,.4,1), opacity .26s ease; }
.bwt-apply-modal--open .bwt-apply-modal__card { transform: scale(1) translateY(0); opacity: 1; }

/* Image panel */
.bwt-apply-modal__image { flex: 0 0 320px; background-size: cover; background-position: center; position: relative; min-height: 340px; }
.bwt-apply-modal__img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,42,58,.55) 0%, rgba(14,42,58,.2) 100%); }

/* Content panel */
.bwt-apply-modal__body { flex: 1; padding: 2.75rem 2.5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; min-height: 340px; }
.bwt-apply-modal__body--full { flex: 1 1 100%; }

/* Close */
.bwt-apply-modal__close { position: absolute; top: 1.1rem; right: 1.1rem; width: 34px; height: 34px; border: 1px solid var(--border); background: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--fg-muted); transition: all .15s; padding: 0; }
.bwt-apply-modal__close:hover { background: var(--bg-muted); color: var(--fg); border-color: var(--border-strong); }

/* Icon badge */
.bwt-apply-modal__icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(235,20,110,.1); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }

/* Text */
.bwt-apply-modal__heading { font-size: clamp(1.3rem, 3vw, 1.65rem); font-weight: 700; color: var(--brand-navy); margin: 0 0 .5rem; line-height: 1.2; }
.bwt-apply-modal__sub { font-size: .9rem; color: var(--fg-muted); margin: 0 0 2rem; line-height: 1.55; max-width: 340px; }

/* Action buttons */
.bwt-apply-modal__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.bwt-apply-modal__btn { flex: 1 1 calc(50% - .375rem); justify-content: center; text-align: center; padding: .9rem 1rem; font-size: .95rem; }

/* Responsive */
@media (max-width: 680px) {
  .bwt-apply-modal__image { display: none; }
  .bwt-apply-modal__body { padding: 2.5rem 1.75rem 2rem; min-height: auto; }
  .bwt-apply-modal__actions { flex-direction: column; }
  .bwt-apply-modal__btn { flex: 1 1 auto; }
}

/* ── Related Events Swiper ─────────────────────────────────────── */
.bwt-rel-events { background: var(--bg-muted); border-top: 1px solid var(--border); padding: 3.5rem 0 5rem; margin-top: 2.5rem; }
.bwt-rel-events .bwt-section-header { text-align: center; margin-bottom: 2.5rem; }
.bwt-rel-events__track { position: relative; padding: 0 2.5rem; }
.bwt-rel-events__swiper { overflow: hidden; }
.bwt-rel-events .swiper-button-prev,
.bwt-rel-events .swiper-button-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; margin-top: 0; border: 1px solid var(--border); background: #fff; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.bwt-rel-events .swiper-button-prev { left: 0; }
.bwt-rel-events .swiper-button-next { right: 0; }
.bwt-rel-events .swiper-button-prev::after,
.bwt-rel-events .swiper-button-next::after { font-size: .75rem; font-weight: 700; color: var(--brand-navy); }
.bwt-rel-events .swiper-pagination { position: relative; margin-top: 1.5rem; }
.bwt-rel-events .swiper-pagination-bullet-active { background: var(--brand-pink); }
@media (max-width: 600px) {
  .bwt-rel-events__track { padding: 0 1.75rem; }
}

/* ── Contact Page ──────────────────────────────────────────────── */
/* Info bar */
.bwt-contact-info-bar { background: var(--bg-muted); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.bwt-contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bwt-contact-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: .35rem; }
.bwt-contact-info-card__icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(235,20,110,.1); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; margin-bottom: .25rem; }
.bwt-contact-info-card__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--fg-muted); }
.bwt-contact-info-card__value { font-size: 1rem; font-weight: 600; color: var(--brand-navy); line-height: 1.4; text-decoration: none; }
.bwt-contact-info-card__note { font-size: .8rem; color: var(--fg-muted); }

/* Layout */
.bwt-contact-body { padding: 3rem 0 5rem; }
.bwt-contact-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 2rem; align-items: start; }

/* Form card */
.bwt-contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem; }
.bwt-contact-form-card__header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.bwt-contact-form-card__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: rgba(235,20,110,.1); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; margin-top: .15rem; }
.bwt-contact-form-card__heading { font-size: 1.3rem; font-weight: 700; color: var(--brand-navy); margin: 0 0 .2rem; }
.bwt-contact-form-card__sub { font-size: .88rem; color: var(--fg-muted); margin: 0; }

/* Form fields */
.bwt-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.bwt-cf-grid { display: grid; gap: 1rem; }
.bwt-cf-grid--2 { grid-template-columns: 1fr 1fr; }
.bwt-cf-field { display: flex; flex-direction: column; gap: .35rem; }
.bwt-cf-field--full { grid-column: 1 / -1; }
.bwt-cf-label { font-size: .8rem; font-weight: 600; color: var(--fg); letter-spacing: .01em; }
.bwt-cf-input { width: 100%; padding: .7rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-sm, 8px); font-size: .93rem; font-family: inherit; color: var(--fg); background: var(--bg, #fff); transition: border-color .15s, box-shadow .15s; outline: none; -webkit-appearance: none; appearance: none; }
.bwt-cf-input:focus { border-color: var(--brand-pink); box-shadow: 0 0 0 3px rgba(235,20,110,.12); }
.bwt-cf-select { cursor: pointer; }
.bwt-cf-select-wrap { position: relative; }
.bwt-cf-select-wrap::after { content: ''; position: absolute; right: .85rem; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid var(--fg-muted); pointer-events: none; }
.bwt-cf-select-wrap .bwt-cf-input { padding-right: 2.25rem; }
.bwt-cf-textarea { resize: vertical; min-height: 120px; }
.bwt-cf-submit { align-self: flex-start; display: inline-flex; align-items: center; gap: .5rem; }
.bwt-cf-note { font-size: .78rem; color: var(--fg-muted); margin: .25rem 0 0; line-height: 1.55; }
.bwt-form__success { background: rgba(16,185,129,.1); color: #065f46; border: 1px solid rgba(16,185,129,.3); border-radius: 8px; padding: .85rem 1rem; font-size: .9rem; }

/* Sidebar */
.bwt-contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.bwt-contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.bwt-contact-map iframe { display: block; width: 100%; height: 240px; }

/* Quick Contact card */
.bwt-quick-contact { background: var(--brand-navy); border-radius: var(--radius-xl); overflow: hidden; }
.bwt-quick-contact__header { padding: 1.75rem 1.75rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.bwt-quick-contact__heading { display: block; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.bwt-quick-contact__sub { display: block; font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.45; }
.bwt-quick-contact__actions { display: flex; flex-direction: column; }
.bwt-qc-row { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.75rem; color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; font-weight: 500; transition: background .15s; border: none; background: none; cursor: pointer; font-family: inherit; text-align: left; width: 100%; }
.bwt-qc-row + .bwt-qc-row { border-top: 1px solid rgba(255,255,255,.08); }
.bwt-qc-row:hover { background: rgba(255,255,255,.06); color: #fff; }
.bwt-qc-row--accent { color: var(--accent, #eb146e); font-weight: 600; }
.bwt-qc-row--accent:hover { color: #fff; }
.bwt-qc-row__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.bwt-qc-row__label { flex: 1; }
.bwt-qc-row__arrow { margin-left: auto; opacity: .45; flex-shrink: 0; }
.bwt-quick-contact__footer { padding: 1.25rem 1.75rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: .6rem; }
.bwt-qc-footer-row { display: flex; align-items: center; gap: .6rem; font-size: .8rem; color: rgba(255,255,255,.55); }
.bwt-qc-footer-row a { color: rgba(255,255,255,.75); text-decoration: none; }
.bwt-qc-footer-row a:hover { color: #fff; }
.bwt-qc-footer-row svg { flex-shrink: 0; opacity: .6; }

/* Responsive */
@media (max-width: 960px) {
  .bwt-contact-layout { grid-template-columns: 1fr; }
  .bwt-contact-sidebar { position: static; }
  .bwt-contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bwt-cf-grid--2 { grid-template-columns: 1fr; }
  .bwt-contact-form-card { padding: 1.5rem; }
  .bwt-contact-info-bar { padding: 1.75rem 0; }
}

/* button.bwt-bottom-bar__item resets */
button.bwt-bottom-bar__item { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Kitchen Feature Page ──────────────────────────────────────── */
/* Premium Kitchen Features grid */
.bwt-kitchen-features { }
.bwt-kitchen-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.bwt-kitchen-feat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.bwt-kitchen-feat-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(235,20,110,.1); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bwt-kitchen-feat-card__title { font-size: 1.05rem; font-weight: 700; color: var(--brand-navy); margin: 0; line-height: 1.25; }
.bwt-kitchen-feat-card__desc { font-size: .88rem; color: var(--fg-muted); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .bwt-kitchen-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bwt-kitchen-feat-grid { grid-template-columns: 1fr; } }

/* Kitchen Gallery Swiper */
.bwt-kitchen-gal { background: var(--bg-muted); border-top: 1px solid var(--border); }
.bwt-kitchen-gal__track { position: relative; padding: 0 2.5rem; }
.bwt-kitchen-gal__swiper { overflow: hidden; }
.bwt-kitchen-gal .swiper-button-prev,
.bwt-kitchen-gal .swiper-button-next { position: absolute; top: calc(50% - 30px); transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; margin-top: 0; border: 1px solid var(--border); background: #fff; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.bwt-kitchen-gal .swiper-button-prev { left: 0; }
.bwt-kitchen-gal .swiper-button-next { right: 0; }
.bwt-kitchen-gal .swiper-button-prev::after,
.bwt-kitchen-gal .swiper-button-next::after { font-size: .75rem; font-weight: 700; color: var(--brand-navy); }
.bwt-kitchen-gal__slide { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); }
.bwt-kitchen-gal__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.bwt-kitchen-gal__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bwt-kitchen-gal__caption { padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .2rem; }
.bwt-kitchen-gal__cap-title { font-size: .95rem; font-weight: 700; color: var(--brand-navy); }
.bwt-kitchen-gal__cap-text { font-size: .82rem; color: var(--fg-muted); }
.bwt-kitchen-gal .swiper-pagination { position: relative; margin-top: 1.5rem; }
.bwt-kitchen-gal .swiper-pagination-bullet-active { background: var(--brand-pink); }
@media (max-width: 600px) { .bwt-kitchen-gal__track { padding: 0 1.75rem; } }

/* Kitchen Specifications */
.bwt-kitchen-specs { background: var(--brand-navy); }
.bwt-kitchen-specs .bwt-section-title,
.bwt-kitchen-specs .bwt-section-sub { color: #fff; }
.bwt-kitchen-specs .bwt-section-sub { color: rgba(255,255,255,.65); }
.bwt-kitchen-specs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.bwt-kitchen-specs__col { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 2rem; }
.bwt-kitchen-specs__col-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.bwt-kitchen-specs__col-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(235,20,110,.2); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bwt-kitchen-specs__col-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0; }
.bwt-kitchen-specs__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.bwt-kitchen-specs__list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.45; }
.bwt-kitchen-specs__list li svg { color: var(--brand-pink); flex-shrink: 0; margin-top: .15rem; }
@media (max-width: 720px) { .bwt-kitchen-specs__grid { grid-template-columns: 1fr; } }

/* Split content without image — full width */
.bwt-split__content--full { max-width: 680px; }

/* Section header shared utility */
.bwt-section-header { margin-bottom: 0; }
.bwt-section-title { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 700; color: var(--brand-navy); margin: 0 0 .5rem; }
.bwt-section-sub { font-size: 1rem; color: var(--fg-muted); margin: 0; }

/* ── Shared Amenity Feature Grid (internet, smart-tech, smart-units) */
.bwt-amenity-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.bwt-amenity-feat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.bwt-amenity-feat-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(235,20,110,.1); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bwt-amenity-feat-card__title { font-size: 1.05rem; font-weight: 700; color: var(--brand-navy); margin: 0; line-height: 1.25; }
.bwt-amenity-feat-card__desc { font-size: .88rem; color: var(--fg-muted); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .bwt-amenity-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bwt-amenity-feat-grid { grid-template-columns: 1fr; } }

/* ── Smart Tech — Benefits two-column (white bg) ──────────────────── */
.bwt-amenity-benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.bwt-amenity-benefits__col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.bwt-amenity-benefits__col-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.bwt-amenity-benefits__col-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(235,20,110,.1); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bwt-amenity-benefits__col-title { font-size: 1.05rem; font-weight: 700; color: var(--brand-navy); margin: 0; }
.bwt-amenity-benefits__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.bwt-amenity-benefits__list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; color: var(--fg-muted); line-height: 1.5; }
.bwt-amenity-benefits__list li svg { color: var(--brand-pink); flex-shrink: 0; margin-top: .15rem; }
@media (max-width: 720px) { .bwt-amenity-benefits__grid { grid-template-columns: 1fr; } }

/* ── Internet / Smart Units — Pricing Plans ───────────────────────── */
.bwt-inet-plans { background: #fff; border-top: 1px solid var(--border); }
.bwt-inet-plans__grid { display: grid; grid-template-columns: repeat(var(--plan-count, 3), 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.bwt-inet-plan-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .9rem; position: relative; }
.bwt-inet-plan-card--featured { border-color: var(--brand-pink); box-shadow: 0 0 0 2px var(--brand-pink), 0 8px 32px rgba(235,20,110,.12); }
.bwt-inet-plan-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand-pink); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .85rem; border-radius: 99px; white-space: nowrap; }
.bwt-inet-plan-card__name { font-size: 1.05rem; font-weight: 700; color: var(--brand-navy); margin: .5rem 0 0; }
.bwt-inet-plan-card__price { font-size: 2rem; font-weight: 800; color: var(--brand-navy); font-family: var(--font-display); line-height: 1; }
.bwt-inet-plan-card__speed { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--fg-muted); font-weight: 500; }
.bwt-inet-plan-card__speed svg { color: var(--brand-pink); flex-shrink: 0; }
.bwt-inet-plan-card__perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; border-top: 1px solid var(--border); padding-top: .9rem; flex: 1; }
.bwt-inet-plan-card__perks li { font-size: .85rem; color: var(--fg-muted); display: flex; align-items: center; gap: .5rem; }
.bwt-inet-plan-card__perks li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-pink); flex-shrink: 0; }
.bwt-inet-plan-card__cta { justify-content: center; text-align: center; margin-top: auto; }
.bwt-inet-plans__note { margin-top: 1.5rem; font-size: .82rem; color: var(--fg-muted); text-align: center; }
@media (max-width: 900px) { .bwt-inet-plans__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }

.bwt-prose div {padding-bottom: 1em;}
.bwt-alert-banner p {padding-bottom: 0px;margin-bottom: 0px;}

.minfrm-two-col .ff-el-group.ff-el-form-top.ff-el-form-hide_label .ff-el-input--label{
    display: none;
}
@media (max-width: 500px) {
  .bwt-hero__actions { justify-content: center; gap: .75rem;}
  .bwt-trust-bar__inner{gap: 10px;}
  .bwt-fp-strip__inner{justify-content: center;}
  .fluentform button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style {
      width: 100%;
  }
}

.bwt-trust-bar {
    overflow: hidden;
}

.bwt-trust-bar__inner {
    display: flex;
    width: max-content;
    gap: 40px;
    white-space: nowrap;
    animation: scrollTrustBar 7s linear infinite;
}

@keyframes scrollTrustBar {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}