/* ══ beauty-studio — BOLD-EDITORIAL / Dark Beauty Identity ══
   Font: DM Sans | Tone: dark dominant, pink accent | Identity: DARK-BEAUTY
   Accent: #f4a5b5 hot pink-rose | Dark: #1a1a1a | White: #ffffff
   Nav: Always Solid Dark Bar (Nav-6) — khác hoàn toàn với spa-beauty transparent
   Hero: Magazine Split (H3) — text 55% dark left + image grid right
   Prefix: bst- (beauty-studio)
*/

:root {
  --bg: #0d0d0d;
  --bg-soft: #141414;
  --surface: #1e1e1e;
  --surface-2: #252525;
  --dark: #080808;
  --dark2: #111111;
  --border: rgba(255,255,255,.08);
  --border-light: rgba(255,255,255,.04);
  --border-pink: rgba(244,165,181,.2);
  --text: #f5f5f5;
  --text-2: rgba(255,255,255,.55);
  --text-3: rgba(255,255,255,.3);
  --accent: #f4a5b5;
  --accent-h: #f08da0;
  --accent-light: rgba(244,165,181,.12);
  --accent-mid: #e87d96;
  --accent-deep: #d4607a;
  --warm: rgba(255,255,255,.04);
  --warm2: rgba(255,255,255,.08);
  --sans: 'DM Sans', sans-serif;
  --bs-body-font-family: var(--sans);
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-border-color: var(--border);
}

/* ── Reset & Base ── */
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
*, *::before, *::after { box-sizing: border-box; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--accent-light); border-radius: 4px; }
img { display: block; }
a { text-decoration: none; }

/* ── Layout ── */
.wd-container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.sec-pad { padding: clamp(64px, 9vw, 112px) 0; }

/* ── Reveal animation (translateX for horizontal feel — different from other templates) ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ── Section header — bst prefix, bold-editorial style ── */
.bst-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}
.bst-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.bst-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.bst-title em { color: var(--accent); font-style: normal; font-weight: 300; }
.bst-title strong { color: #fff; }
.bst-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 500px;
}

/* Section header on light bg */
.bst-eyebrow.dark-text { color: #1a1a1a; }
.bst-eyebrow.dark-text::before { background: #1a1a1a; }
.bst-title.dark-text { color: #1a1a1a; }
.bst-sub.dark-text { color: #555; }

/* ── NAV — Always Solid Dark Bar (Nav-6) ── */
/* Đặc trưng: Không transparent, không scroll effect, luôn là dark bar */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}
#nav.scrolled { border-color: var(--border-pink); }
.bst-nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bst-logo {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bst-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.bst-logo span { color: var(--accent); font-weight: 300; }
.bst-nav-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.bst-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .1px;
}
.bst-nav-links a:hover, .bst-nav-links a.active { color: var(--accent); }
.bst-nav-cta {
  font-size: 13px;
  font-weight: 600;
  background: var(--accent);
  color: #1a1a1a;
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  font-family: var(--sans);
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bst-nav-cta:hover { background: var(--accent-h); color: #1a1a1a; transform: translateY(-1px); }
.bst-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.bst-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all .3s;
}
.bst-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.bst-hamburger.open span:nth-child(2) { opacity: 0; }
.bst-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.bst-nav-mob {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.bst-nav-mob.open { opacity: 1; pointer-events: auto; }
.bst-nav-mob a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: -.5px;
}
.bst-nav-mob a:hover { color: var(--accent); }
.bst-nav-mob .mob-cta {
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #1a1a1a;
  padding: 13px 40px;
  border-radius: 6px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .bst-nav-links, .bst-nav-cta { display: none; }
  .bst-hamburger { display: flex; }
}

/* ── Buttons ── */
.bst-btn-primary {
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #1a1a1a;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .1px;
}
.bst-btn-primary:hover { background: var(--accent-h); color: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,165,181,.3); }

.bst-btn-outline {
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: rgba(255,255,255,.65);
  padding: 13px 30px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  font-family: var(--sans);
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bst-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.bst-btn-ghost {
  font-size: 14px;
  font-weight: 500;
  background: var(--surface);
  color: var(--text-2);
  padding: 11px 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--sans);
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bst-btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ── PAGE HERO (inner pages) ── */
.bst-page-hero {
  padding: calc(64px + clamp(40px,5vw,72px)) 0 clamp(40px,6vw,72px);
  background: var(--dark2);
  border-bottom: 1px solid var(--border-pink);
  text-align: center;
}
.bst-ph-eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.bst-ph-title {
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.bst-ph-title em { color: var(--accent); font-style: normal; font-weight: 300; }
.bst-ph-sub {
  font-size: clamp(14px,1.4vw,16px);
  font-weight: 300;
  color: var(--text-3);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVICE GROUP CARDS (index hero grid) ── */
.bst-sg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
  height: 100%;
}
.bst-sg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(244,165,181,.12);
  border-color: var(--border-pink);
}
.bst-sg-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.bst-sg-card:hover .bst-sg-thumb { transform: scale(1.05); }
.bst-sg-body { padding: 20px 22px 24px; }
.bst-sg-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}
.bst-sg-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.4px;
}
.bst-sg-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.bst-sg-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.bst-sg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-decoration: none;
  transition: color .2s;
  margin-top: 12px;
}
.bst-sg-link:hover { color: var(--accent); }
.bst-sg-link svg { transition: transform .2s; }
.bst-sg-link:hover svg { transform: translateX(3px); }

/* ── PORTFOLIO / GALLERY GRID (bento layout) ── */
.bst-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
.bst-gal-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.bst-gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bst-gal-item:nth-child(4) { grid-column: span 2; }
.bst-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.bst-gal-item:hover img { transform: scale(1.07); }
.bst-gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.bst-gal-item:hover .bst-gal-overlay { opacity: 1; }
.bst-gal-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .5px;
}

@media (max-width: 768px) {
  .bst-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bst-gal-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bst-gal-item:nth-child(4) { grid-column: span 1; }
}

/* ── STAT STRIP ── */
.bst-stat-strip {
  background: var(--accent);
  padding: clamp(32px,5vw,56px) 0;
}
.bst-stat-item { text-align: center; }
.bst-stat-num {
  font-size: clamp(36px,5vw,58px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 6px;
}
.bst-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(26,26,26,.65);
  letter-spacing: .2px;
}
@media (max-width: 576px) {
  .bst-stat-item { margin-bottom: 24px; }
}

/* ── TEAM CARD ── */
.bst-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  height: 100%;
}
.bst-team-card:hover {
  border-color: var(--border-pink);
  box-shadow: 0 10px 36px rgba(244,165,181,.1);
  transform: translateY(-4px);
}
.bst-team-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--border-pink);
}
.bst-team-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -.3px;
}
.bst-team-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.bst-team-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.65;
}

/* ── REVIEW CARD ── */
.bst-rv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition: border-color .3s;
}
.bst-rv-card:hover { border-color: var(--border-pink); }
.bst-rv-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.bst-rv-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.bst-rv-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.bst-rv-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.bst-rv-name { font-size: 13px; font-weight: 600; color: var(--text); }
.bst-rv-date { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* ── PROMO SECTION ── */
.bst-promo-card {
  background: var(--surface-2);
  border: 1px solid var(--border-pink);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.bst-promo-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent-light);
}
.bst-promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(244,165,181,.14); }
.bst-promo-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: #1a1a1a;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bst-promo-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.4px;
  position: relative;
}
.bst-promo-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
}
.bst-promo-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
}
.bst-promo-new { font-size: 24px; font-weight: 700; color: var(--accent); }
.bst-promo-old { font-size: 14px; color: var(--text-3); text-decoration: line-through; }

/* ── SERVICE PRICE TABLE ── */
.bst-price-table { width: 100%; border-collapse: collapse; }
.bst-price-table th {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.bst-price-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
  vertical-align: top;
}
.bst-price-table tr:last-child td { border-bottom: none; }
.bst-price-table td:first-child { font-weight: 500; color: var(--text); }
.bst-price-table td:last-child { text-align: right; font-weight: 600; color: var(--accent); white-space: nowrap; }
.bst-price-table tr:hover td { background: var(--accent-light); }

/* Service category panel */
.bst-svc-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
.bst-svc-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.bst-svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border-pink);
}
.bst-svc-panel-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.4px;
}
.bst-svc-panel-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  margin-top: 2px;
}
.bst-svc-panel-body { padding: 0 24px; }

/* ── BOOKING FORM ── */
.bst-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px,4vw,48px);
}
.bst-form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  display: block;
}
.bst-form-control {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.bst-form-control::placeholder { color: var(--text-3); }
.bst-form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244,165,181,.12);
}
.bst-form-control option { background: var(--surface); color: var(--text); }
.bst-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f4a5b5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.bst-form-group { margin-bottom: 20px; }

/* ── CONTACT INFO CARD ── */
.bst-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.bst-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  border: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.bst-info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.bst-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}
.bst-info-value a { color: var(--accent); text-decoration: none; }
.bst-info-value a:hover { text-decoration: underline; }

/* ── SOCIAL ICONS ── */
.bst-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.bst-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all .2s;
  color: var(--text-2);
}
.bst-social-btn:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ── MAP PLACEHOLDER ── */
.bst-map-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.bst-map-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bst-map-label { font-size: 13px; color: var(--text-3); }

/* ── HOURS TABLE ── */
.bst-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.bst-hours-row:last-child { border-bottom: none; }
.bst-hours-day { font-weight: 500; color: var(--text-2); }
.bst-hours-time { font-weight: 600; color: var(--accent); }
.bst-hours-closed { color: var(--text-3); font-weight: 400; }

/* ── ZALO FLOAT BUTTON ── */
.bst-zalo-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0068FF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,104,255,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.bst-zalo-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,104,255,.5); }
.bst-zalo-float svg { width: 26px; height: 26px; }

/* ── FOOTER ── */
.bst-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-pink);
  padding: clamp(48px,7vw,80px) 0 0;
}
.bst-footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.bst-footer-logo span { color: var(--accent); font-weight: 300; }
.bst-footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.bst-footer-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.bst-footer-links { list-style: none; padding: 0; margin: 0; }
.bst-footer-links li { margin-bottom: 10px; }
.bst-footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-3);
  text-decoration: none;
  transition: color .2s;
}
.bst-footer-links a:hover { color: var(--accent); }
.bst-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-3);
}
.bst-footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.bst-footer-contact-item a { color: var(--text-3); text-decoration: none; }
.bst-footer-contact-item a:hover { color: var(--accent); }
.bst-footer-bottom {
  margin-top: clamp(32px,5vw,56px);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.bst-footer-copy { font-size: 12px; color: var(--text-3); }
.bst-footer-copy a { color: var(--accent); text-decoration: none; }

/* ── CTA SECTION ── */
.bst-cta-section {
  background: var(--surface-2);
  border-top: 1px solid var(--border-pink);
  border-bottom: 1px solid var(--border-pink);
  text-align: center;
  padding: clamp(56px,8vw,96px) 0;
}
.bst-cta-title {
  font-size: clamp(28px,4vw,48px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.bst-cta-title em { color: var(--accent); font-style: normal; }
.bst-cta-sub { font-size: 15px; font-weight: 300; color: var(--text-2); line-height: 1.7; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── UTILITY ── */
.bst-divider { height: 1px; background: var(--border); margin: 0; }
.bst-pink-line { height: 1px; background: linear-gradient(to right, transparent, var(--accent), transparent); }
.bst-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--border-pink);
}
.bst-badge-dark {
  background: #1a1a1a;
  color: var(--accent);
  border-color: var(--border-pink);
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 991px) {
  .bst-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .bst-form-card { padding: 20px; }
  .bst-footer-bottom { flex-direction: column; text-align: center; }
}
