/*
Theme Name: Bank Tabien
Theme URI: https://banktabien.com/
Author: Bank Tabien
Author URI: https://banktabien.com/
Description: Luxury Thai license-plate marketplace theme. Maroon & gold editorial design exported from Pencil. Single-page landing with plate search, VIP plate grid, categories, how-it-works steps, reviews, articles and full footer.
Version: 1.9.213
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: banktabien
Tags: custom-menu, custom-logo, featured-images, translation-ready, one-column
*/

/* Hallmark · pre-emit critique: P5 H5 E5 S5 R5 V4 */

/* ============================================================
   Thai license-plate font (matches tabiengraphic plate rendering)
   ============================================================ */
@font-face {
  font-family: 'Kt';
  src: url('assets/fonts/Kt_smarn-Tabian.woff2') format('woff2'),
       url('assets/fonts/Kt_smarn-Tabian.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Design tokens
   ============================================================ */
:root {
  /* Vivid red surfaces */
  --bt-bg-1: #8f0f16;
  --bt-bg-2: #b51620;
  --bt-bg-3: #760a11;
  --bt-section: #8c1016;
  --bt-section-deep: #67090f;
  --bt-card: #62090e;
  --bt-card-deep: #3d0508;
  --bt-card-2a: #56070c;
  --bt-hero: #3d0508;
  --bt-header-1: #a8121a;
  --bt-header-2: #790b12;

  /* Gold scale */
  --bt-gold: #d4af37;
  --bt-gold-bright: #f5d77a;
  --bt-gold-soft: #f6d987;
  --bt-gold-muted: #a67c00;
  --bt-gold-dim: #b98f45;
  --bt-gold-faint: #7e5423;
  --bt-gold-deep: #c9a14a;

  /* Borders */
  --bt-border: #7e3e12;
  --bt-border-2: #6e3818;
  --bt-border-3: #8e5018;
  --bt-border-gold: #b8841d;
  --bt-border-faint: #5c2810;

  /* Accents */
  --bt-line: #26d300;
  --bt-phone: #0b3f8f;
  --bt-red: #ff0000;
  --bt-price: #ffffff;
  --bt-social-facebook: #1877f2;
  --bt-social-instagram: #c13584;
  --bt-social-tiktok: #161616;
  --bt-social-paper: #ffffff;
  --bt-social-ink: #25120e;
  --bt-social-muted: #655e58;
  --bt-social-line: #d8d3ce;

  /* Plate face */
  --bt-plate-face-1: #ffffff;
  --bt-plate-face-2: #f3efe0;
  --bt-plate-ink: #0c0c0c;
  --bt-plate-border: #d4af37;

  /* Type */
  --bt-font-ui: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bt-font-heading: var(--bt-font-ui);
  --bt-font-brand: var(--bt-font-ui);
  --bt-font-body: var(--bt-font-ui);
  --bt-font-license: "Kt", var(--bt-font-ui);

  --bt-text-2xs: 12px;
  --bt-text-xs: 14px;
  --bt-text-sm: 15px;
  --bt-text-md: 16px;
  --bt-text-base: 16px;
  --bt-text-lg: 17px;
  --bt-text-xl: 18px;
  --bt-text-2xl: 20px;
  --bt-text-3xl: 22px;
  --bt-text-4xl: 24px;
  --bt-text-5xl: 26px;
  --bt-text-6xl: 28px;
  --bt-text-7xl: 30px;
  --bt-text-8xl: 32px;
  --bt-text-9xl: 36px;
  --bt-text-display-sm: 40px;
  --bt-text-display-md: 44px;
  --bt-text-display-lg: 48px;
  --bt-text-display-xl: 52px;
  --bt-text-display-2xl: 60px;
  --bt-text-quote: 86px;

  --bt-type-hero-title: 64px;
  --bt-type-page-title: 52px;
  --bt-type-single-title: 56px;
  --bt-type-section-title: 22px;
  --bt-type-proof-title: 44px;
  --bt-type-proof-subtitle: 34px;
  --bt-type-article-title: 21px;
  --bt-type-article-feature-title: 30px;

  /* Layout */
  --bt-content-max: 1440px;
  --bt-content-pad: 72px;
  --bt-radius: 12px;
  --bt-radius-sm: 8px;

  /* Motion */
  --bt-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bt-dur: 220ms;

  /* Gradients */
  --bt-grad-gold: linear-gradient(180deg, var(--bt-gold-bright) 0%, var(--bt-gold) 100%);
  --bt-grad-card: linear-gradient(180deg, #7c0d13 0%, #4a060a 100%);
  --bt-grad-header: linear-gradient(180deg, var(--bt-header-1) 0%, var(--bt-header-2) 100%);
}

/* ============================================================
   Reset / base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  color: var(--bt-gold-bright);
  background:
    linear-gradient(180deg, var(--bt-bg-1) 0%, var(--bt-bg-2) 50%, var(--bt-bg-3) 100%)
    fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--bt-dur) var(--bt-ease);
}

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

button,
input,
select,
textarea {
  font-family: var(--bt-font-ui);
}

button,
select {
  cursor: pointer;
}

input,
textarea {
  cursor: text;
}

:where(a, button, input):focus-visible {
  outline: 2px solid var(--bt-gold);
  outline-offset: 2px;
}

.bt-shell {
  width: 100%;
  max-width: var(--bt-content-max);
  margin-inline: auto;
}

.bt-icon {
  display: inline-flex;
  width: 1em;
  height: 1em;
}

.bt-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bt-line-mark {
  --bt-line-mark-fill: currentColor;
  --bt-line-mark-text: #351008;
}

.bt-line-mark svg {
  overflow: visible;
}

.bt-line-mark__bubble {
  fill: var(--bt-line-mark-fill);
}

.bt-line-mark__text {
  fill: var(--bt-line-mark-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8.6px;
  font-weight: 900;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Header
   ============================================================ */
.bt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bt-grad-header);
  border-bottom: 1px solid var(--bt-border);
}

.bt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: var(--bt-content-max);
  margin-inline: auto;
  padding: 14px clamp(24px, 3vw, 48px);
}

.bt-header__tagline {
  display: none;
}

.bt-logo {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.bt-logo__image {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.bt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex: 1 1 auto;
}

.bt-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.25vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.bt-nav__list > li {
  position: relative;
}

.bt-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--bt-text-lg);
  font-weight: 600;
  color: var(--bt-gold-bright);
  position: relative;
  padding-block: 4px;
  white-space: nowrap;
}

.bt-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--bt-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-nav a:hover {
  color: var(--bt-gold-soft);
}

.bt-nav a:hover::after,
.bt-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.bt-nav .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--bt-border-gold);
  border-radius: var(--bt-radius-sm);
  background: var(--bt-header-2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease),
    visibility 0s linear var(--bt-dur);
}

.bt-nav .menu-item-has-children:hover > .sub-menu,
.bt-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.bt-nav .sub-menu a {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  white-space: nowrap;
}

.bt-header__actions {
  display: flex;
  align-items: center;
  flex: none;
  gap: 12px;
}

/* Buttons */
.bt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: var(--bt-radius-sm);
  border: 1px solid transparent;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  font-weight: 600;
  line-height: 1.3;
  transition: transform var(--bt-dur) var(--bt-ease),
    box-shadow var(--bt-dur) var(--bt-ease), filter var(--bt-dur) var(--bt-ease);
}

.bt-btn--ghost {
  background: transparent;
  border-color: var(--bt-gold);
  color: var(--bt-gold-bright);
}

.bt-btn--ghost:hover {
  background: rgba(212, 175, 55, 0.12);
}

.bt-btn--gold {
  background: var(--bt-grad-gold);
  color: #3a0f0a;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.22);
}

.bt-btn--gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.bt-btn--block {
  width: 100%;
}

.bt-header-cta {
  min-height: 46px;
  padding-inline: 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.bt-header-cta .bt-icon {
  font-size: var(--bt-text-xl);
}

.bt-header-cta--line {
  border-color: rgba(212, 175, 55, 0.78);
  background:
    linear-gradient(135deg, rgba(245, 215, 122, 0.12), rgba(26, 4, 2, 0.3));
  color: var(--bt-gold-bright);
  box-shadow:
    inset 0 0 0 1px rgba(245, 215, 122, 0.08),
    0 8px 22px rgba(0, 0, 0, 0.16);
}

.bt-header-cta--line .bt-line-mark {
  --bt-line-mark-fill: var(--bt-gold-bright);
  --bt-line-mark-text: #351008;
  font-size: var(--bt-text-7xl);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
}

.bt-header-cta--phone {
  border-color: transparent;
  background: var(--bt-grad-gold);
  color: #361008;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.24);
}

.bt-header-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.bt-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--bt-gold);
  border-radius: 8px;
  color: var(--bt-gold-bright);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: var(--bt-text-4xl);
}

/* ============================================================
   Section frame
   ============================================================ */
.bt-main {
  display: flex;
  flex-direction: column;
}

.bt-bottom {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: var(--bt-content-max);
  margin-inline: auto;
  padding: 60px var(--bt-content-pad) 40px;
}

.bt-section {
  min-width: 0;
  border-radius: var(--bt-radius);
  border: 1px solid var(--bt-border-2);
  background: var(--bt-section);
  padding: 20px 24px;
}

.bt-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.bt-section__title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-3xl);
  font-weight: 600;
  line-height: 1.35;
  color: var(--bt-gold-soft);
}

.bt-section__title:is(h1) {
  font-size: var(--bt-text-6xl);
}

.bt-section__title .bt-icon {
  color: var(--bt-gold);
  font-size: var(--bt-text-4xl);
}

.bt-section__count {
  font-size: var(--bt-text-md);
  font-weight: 500;
  color: var(--bt-gold-dim);
}

.bt-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--bt-gold-dim);
}

.bt-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--bt-border-gold);
  background: var(--bt-section-deep);
  font-size: var(--bt-text-sm);
  font-weight: 600;
  color: var(--bt-gold-soft);
  transition: background var(--bt-dur) var(--bt-ease);
}

.bt-more:hover {
  background: #4a130d;
}

/* ============================================================
   Hero
   ============================================================ */
.bt-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 620px;
  padding: 0 var(--bt-content-pad) 40px;
  background: var(--bt-hero);
  overflow: hidden;
}

.bt-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(26, 4, 2, 0.55) 82%, var(--bt-hero) 100%),
    url("assets/images/banner-hero-homepage-client.webp") center top / 100% auto no-repeat,
    var(--bt-hero);
  z-index: 0;
}

.bt-hero__inner {
  position: relative;
  z-index: 1;
  aspect-ratio: 1672 / 941;
  max-height: 560px;
  padding-top: 0;
}

.bt-hero__copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bt-hero__plate {
  display: none;
}

.bt-hero__eyebrow {
  font-size: var(--bt-text-lg);
  color: var(--bt-gold-bright);
  margin: 0 0 8px;
}

.bt-hero__title {
  font-family: var(--bt-font-heading);
  font-weight: 800;
  font-size: var(--bt-type-hero-title);
  line-height: 1.02;
  margin: 0 0 14px;
  color: var(--bt-gold-bright);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.bt-hero__lead {
  font-size: var(--bt-text-xl);
  color: var(--bt-gold-dim);
  margin: 0 0 28px;
  max-width: 46ch;
}

.bt-hero__lead span {
  display: block;
}

.bt-hero__plate {
  justify-self: end;
}

/* Plate component */
.bt-plate {
  --plate-pad: 10px 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--plate-pad);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--bt-plate-face-1), var(--bt-plate-face-2)) padding-box,
    linear-gradient(90deg, #b77a09, #f8e38a 22%, #d49a13 50%, #fff2a6 72%, #a96c06) border-box;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.bt-plate__num {
  font-family: var(--bt-font-license);
  font-weight: 800;
  color: var(--bt-plate-ink);
  letter-spacing: 0;
  line-height: 1;
}

.bt-plate__prov {
  font-family: var(--bt-font-license);
  font-weight: 600;
  color: #6a4a12;
  line-height: 1;
}

.bt-plate--hero .bt-plate__num {
  font-size: var(--bt-type-hero-title);
}

.bt-plate--hero .bt-plate__prov {
  font-size: var(--bt-text-2xl);
  margin-top: 6px;
}

.bt-plate--hero {
  --plate-pad: 24px 40px;
}

/* Search box */
.bt-search {
  position: relative;
  z-index: 1;
  margin-top: 94px;
  border-radius: var(--bt-radius);
  border: 1px solid var(--bt-border-3);
  background: linear-gradient(180deg, rgba(74, 15, 10, 0.92), rgba(45, 8, 5, 0.92));
  backdrop-filter: blur(6px);
  padding: 22px 24px;
}

.bt-search__title {
  font-size: var(--bt-text-xl);
  font-weight: 600;
  color: var(--bt-gold-soft);
  margin: 0 0 14px;
}

.bt-search__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.bt-search__grid > .bt-btn {
  grid-column: 1 / -1;
}

.bt-search:not(.bt-search--catalog) .bt-search__grid > .bt-btn {
  justify-self: center;
  width: min(100%, 280px);
  min-height: 48px;
  padding-inline: 28px;
}

.bt-field {
  background: rgba(26, 4, 2, 0.7);
  border: 1px solid var(--bt-border-2);
  border-radius: var(--bt-radius-sm);
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-md);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.bt-field::placeholder {
  color: var(--bt-gold-faint);
}

select.bt-field {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bt-gold) 50%),
    linear-gradient(135deg, var(--bt-gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.bt-field:focus {
  border-color: var(--bt-gold);
  outline: none;
}

/* Trust badges */
.bt-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.bt-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--bt-radius-sm);
  border: 1px solid var(--bt-border-2);
  background: rgba(45, 8, 5, 0.6);
}

.bt-trust__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--bt-border-gold);
  background: var(--bt-card-2a);
  color: var(--bt-gold);
  font-size: var(--bt-text-3xl);
}

.bt-trust__label {
  font-size: var(--bt-text-md);
  font-weight: 600;
  color: var(--bt-gold-soft);
}

.bt-trust__desc {
  font-size: var(--bt-text-xs);
  color: var(--bt-gold-dim);
}

/* Homepage social channel strip */
.bt-home-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  border: 1px solid var(--bt-border-3);
  border-radius: var(--bt-radius);
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 215, 122, 0.1), transparent 36%),
    var(--bt-grad-card);
  box-shadow: 0 12px 30px rgba(38, 3, 5, 0.18);
}

.bt-home-social__copy {
  min-width: 0;
}

.bt-home-social__copy h2 {
  margin: 0;
  color: var(--bt-gold-soft);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-3xl);
  font-weight: 700;
  line-height: 1.3;
}

.bt-home-social__copy p {
  margin: 5px 0 0;
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-sm);
  line-height: 1.55;
}

.bt-home-social__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 10px;
  flex: 0 0 auto;
}

.bt-home-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 14px;
  border: 1px solid var(--bt-border-gold);
  border-radius: var(--bt-radius-sm);
  background: rgba(49, 8, 5, 0.72);
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--bt-dur) var(--bt-ease),
    border-color var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease);
}

.bt-home-social__link:hover {
  border-color: var(--bt-gold-bright);
  background: rgba(212, 175, 55, 0.14);
  color: var(--bt-gold-bright);
  transform: translateY(-2px);
}

.bt-home-social__link:focus-visible {
  outline: 3px solid var(--bt-gold-bright);
  outline-offset: 3px;
}

.bt-home-social__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--bt-gold);
  color: var(--bt-card-deep);
  font-size: var(--bt-text-md);
}

.bt-home-social__link--facebook .bt-home-social__icon {
  background: var(--bt-social-facebook);
  color: var(--bt-social-paper);
}

.bt-home-social__link--instagram .bt-home-social__icon {
  background: var(--bt-social-instagram);
  color: var(--bt-social-paper);
}

.bt-home-social__link--tiktok .bt-home-social__icon {
  background: var(--bt-social-tiktok);
  color: var(--bt-social-paper);
}

/* ============================================================
   VIP plate grid
   ============================================================ */
.bt-plate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.bt-plate-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.bt-plate-card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.bt-plate-card-link--locked {
  cursor: default;
}

.bt-plate-item--booked:hover .bt-plate-card,
.bt-plate-item--sold:hover .bt-plate-card {
  transform: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.bt-plate-card {
  display: block;
  padding: 5px;
  border-radius: 12px;
  background: var(--bt-grad-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform var(--bt-dur) var(--bt-ease),
    box-shadow var(--bt-dur) var(--bt-ease);
}

.bt-plate-item:hover .bt-plate-card {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.bt-plate-price {
  display: block;
  margin: 0;
  font-family: var(--bt-font-ui);
  font-weight: 800;
  font-size: var(--bt-text-4xl);
  color: var(--bt-price);
}

.bt-plate-price small {
  font-weight: 500;
  font-size: var(--bt-text-base);
  color: var(--bt-price);
}

.bt-plate-price--booked,
.bt-plate-price--sold {
  color: #fff;
}

.bt-plate-card .bt-plate {
  --plate-pad: 8px 12px;
}

.bt-plate-card .bt-plate__num {
  font-size: var(--bt-text-3xl);
}

.bt-plate-card__prov {
  font-size: var(--bt-text-xs);
  color: var(--bt-gold-dim);
}

.bt-plate-card__price {
  font-family: var(--bt-font-ui);
  font-weight: 700;
  font-size: var(--bt-text-lg);
  color: var(--bt-gold-soft);
}

.bt-plate-card__price small {
  font-weight: 500;
  font-size: var(--bt-text-xs);
  color: var(--bt-gold-muted);
}

/* ---- Real plate graphic (style PNG + text overlay) ---- */
.bt-tabien {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 188 / 77;
  container-type: inline-size;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
}

.bt-tabien__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--bt-plate-border);
  border-radius: 6px;
  display: block;
}

/* User-supplied purple artwork is the standard passenger graphic plate. */
.bt-tabien--graphic-purple .bt-tabien__bg {
  object-fit: fill;
}

/* White plate type — plain white background (no image) */
.bt-tabien--white {
  border: 2px solid var(--bt-plate-border);
  background: #fff;
}

/* TabienGraphic commercial plates: pickup = green, van = blue. */
.bt-tabien--pickup .bt-tabien__num,
.bt-tabien--pickup .bt-tabien__prov {
  color: #006b2d;
  text-shadow: none;
}

.bt-tabien--van.bt-tabien--white {
  border-color: #124d83;
}

.bt-tabien--van .bt-tabien__num,
.bt-tabien--van .bt-tabien__prov {
  color: #124d83;
  text-shadow: none;
}

/* Motorcycle plates use the official near-square, three-line composition. */
.bt-plate-item--motorcycle .bt-plate-card {
  width: min(100%, 150px);
  margin-inline: auto;
  padding: 3px;
  border-radius: 6px;
  background: linear-gradient(145deg, #3d3d3d, #151515);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bt-plate-item--motorcycle:hover .bt-plate-card {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.bt-plate-item--motorcycle .bt-plate-price {
  font-size: var(--bt-text-lg);
  line-height: 1.25;
}

.bt-tabien--motorcycle {
  aspect-ratio: 4 / 3;
  border: 2px solid #242424;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d7d7d7;
}

.bt-tabien--motorcycle .bt-tabien__bg {
  display: none;
}

.bt-tabien--motorcycle .bt-tabien__num {
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: none;
  font-size: inherit;
  text-shadow: none;
}

.bt-tabien--motorcycle .bt-tabien__letters,
.bt-tabien--motorcycle .bt-tabien__digits {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: var(--bt-font-ui), sans-serif;
  line-height: 0.9;
}

.bt-tabien--motorcycle .bt-tabien__letters {
  top: 8%;
  font-size: 24cqi;
  font-weight: 600;
}

.bt-tabien--motorcycle .bt-tabien__digits {
  bottom: 6%;
  font-size: 22cqi;
  font-weight: 500;
}

.bt-tabien--motorcycle .bt-tabien__prov {
  top: 48%;
  font-family: var(--bt-font-ui), sans-serif;
  font-size: 12cqi;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-shadow: none;
}

.bt-tabien__num,
.bt-tabien__price,
.bt-tabien__prov {
  position: absolute;
  left: 50%;
  width: 100%;
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  line-height: 1;
  white-space: nowrap;
}

.bt-tabien__num {
  top: 30%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.16em;
  font-family: 'Kt', sans-serif;
  font-size: 28cqi;
  color: #000;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

/* Even, uniform gap between the letter group and the number group,
   plus consistent spacing between characters within each group. */
.bt-tabien__letters,
.bt-tabien__digits {
  display: inline-block;
  letter-spacing: 0.02em;
  /* offset the trailing space letter-spacing adds so groups stay centered */
  margin-right: -0.02em;
}

.bt-tabien__price {
  top: 60%;
  font-family: var(--bt-font-ui), sans-serif;
  font-weight: 600;
  font-size: 8cqi;
  color: #db0000;
  text-shadow: 1px 1px 1px #fff;
}

.bt-tabien__prov {
  top: 72.5%;
  font-family: 'Kt', sans-serif;
  font-weight: 600;
  font-size: 11cqi;
  color: #000;
  text-shadow: 1px 1px 1px #fff;
}

/* Sum (ผลรวม) badge — bottom-right corner of the plate */
.bt-tabien__science {
  position: absolute;
  right: 1.6cqi;
  bottom: 1.6cqi;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14cqi;
  height: 14cqi;
  border: 1.5cqi solid #fff;
  border-radius: 50%;
  background: #ed0202;
  color: #fff;
  font-family: var(--bt-font-ui), sans-serif;
  font-weight: 700;
  font-size: 7cqi;
  line-height: 1;
}

.bt-tabien__science--lucky {
  background: #000;
  border-color: #ffdd79;
  color: #ffdd79;
}

/* tabien2you look: white/black plates carry a plain red sum badge, no crown. */
.bt-tabien--white .bt-tabien__science {
  background: #d92b23;
  border-color: #fff;
  color: #fff;
}

.bt-tabien--white .bt-tabien__crown {
  display: none;
}

.bt-tabien__crown {
  position: absolute;
  right: 4.5cqi;
  bottom: 12cqi;
  z-index: 3;
  width: 7cqi;
  height: 7cqi;
  color: #ffdd79;
}

.bt-tabien__crown .bt-icon,
.bt-tabien__crown svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bt-ribbon {
  position: absolute;
  left: 0;
  bottom: 7cqi;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 33cqi;
  min-height: 21cqi;
  padding: 0 6cqi 0 5cqi;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(135deg, #ff6a4d, #e90000);
  box-shadow: 0 1px 3px rgba(70, 0, 0, 0.25);
  color: #fff;
  font-family: var(--bt-font-ui), sans-serif;
  font-size: 8.5cqi;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 1px rgba(70, 0, 0, 0.35);
  white-space: nowrap;
}

.bt-ribbon--sold {
  background: linear-gradient(135deg, #4a4a4a, #111);
}

/* Automatic NEW marker for Bank Tabien's own recommendation inventory. */
.bt-new-corner {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 7;
  width: 16.5cqi;
  height: 16.5cqi;
  overflow: hidden;
  pointer-events: none;
}

.bt-new-corner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff1b1b 0%, #e90000 78%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.bt-new-corner span {
  position: absolute;
  top: 4.35cqi;
  left: -1.3cqi;
  width: 14.35cqi;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 3.25cqi;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.045em;
  text-align: center;
  text-shadow: 0 1px 1px rgba(90, 0, 0, 0.38);
  transform: rotate(-45deg);
  transform-origin: center;
}

.bt-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: var(--bt-text-xs);
  font-weight: 600;
}

.bt-status--booked {
  background: rgba(255, 132, 0, 0.16);
  color: #ff8400;
  border: 1px solid rgba(255, 132, 0, 0.4);
}

.bt-status--sold {
  background: rgba(217, 60, 21, 0.16);
  color: #ff7a5c;
  border: 1px solid rgba(217, 60, 21, 0.4);
}

/* ============================================================
   Category cards
   ============================================================ */
.bt-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bt-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px 10px;
  border-radius: var(--bt-radius-sm);
  border: 1px solid #7e4415;
  background: var(--bt-grad-card);
  text-align: center;
  transition: transform var(--bt-dur) var(--bt-ease),
    border-color var(--bt-dur) var(--bt-ease);
}

.bt-cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--bt-gold);
}

.bt-cat-card--featured {
  position: relative;
  isolation: isolate;
  border: 2px solid #f5d76e;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 226, 126, 0.16), transparent 42%),
    linear-gradient(155deg, rgba(91, 8, 15, 0.98), rgba(49, 8, 5, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 247, 214, 0.3),
    0 10px 24px rgba(39, 3, 4, 0.24),
    0 0 18px rgba(224, 179, 42, 0.12);
  transform: scale(1.015);
}

.bt-cat-card--featured::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(255, 226, 126, 0.2);
  border-radius: calc(var(--bt-radius-sm) - 6px);
  pointer-events: none;
}

.bt-cat-card--featured:hover {
  border-color: #fff0ad;
  box-shadow:
    inset 0 0 0 1px rgba(255, 251, 230, 0.48),
    0 14px 30px rgba(39, 3, 4, 0.34),
    0 0 24px rgba(242, 199, 65, 0.24);
  transform: translateY(-5px) scale(1.025);
}

.bt-cat-card--featured .bt-cat-card__icon {
  border-width: 2px;
  border-color: #e5bb35;
  background: rgba(49, 8, 5, 0.88);
  box-shadow: 0 0 18px rgba(235, 193, 62, 0.16);
}

.bt-cat-card--featured .bt-cat-card__title {
  color: #ffe493;
}

.bt-cat-card--featured .bt-cat-card__count {
  color: #d9b75b;
}

.bt-cat-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--bt-border-gold);
  background: var(--bt-card-2a);
  color: var(--bt-gold);
  font-size: var(--bt-text-4xl);
}

.bt-cat-card__title {
  font-family: var(--bt-font-heading);
  font-weight: 700;
  font-size: var(--bt-text-md);
  line-height: 1.1;
  color: var(--bt-gold-soft);
}

.bt-cat-card__count {
  font-size: var(--bt-text-xs);
  color: var(--bt-gold-dim);
}

/* ============================================================
   Steps
   ============================================================ */
.bt-steps {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bt-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--bt-border-2);
  background: var(--bt-section-deep);
}

.bt-step__num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--bt-grad-gold);
  font-family: var(--bt-font-heading);
  font-weight: 700;
  font-size: var(--bt-text-4xl);
  color: #3a0f0a;
}

.bt-step__title {
  font-size: var(--bt-text-base);
  font-weight: 600;
  color: var(--bt-gold-bright);
}

.bt-step__desc {
  font-size: var(--bt-text-xs);
  color: var(--bt-gold-muted);
}

.bt-step__arrow {
  color: var(--bt-border);
  font-size: var(--bt-text-2xl);
  flex: none;
}

/* ============================================================
   Proof + knowledge suite
   ============================================================ */
.bt-section__eyebrow {
  margin: 0 0 6px;
  color: var(--bt-gold);
  font-size: var(--bt-text-xs);
  font-weight: 800;
  letter-spacing: 0;
}

.bt-proof-suite {
  scroll-margin-top: 104px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(245, 215, 122, 0.36);
  background:
    radial-gradient(90% 80% at 0% 0%, rgba(245, 215, 122, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(17, 2, 1, 0.98) 0%, rgba(43, 6, 3, 0.98) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.bt-proof-suite__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid rgba(245, 215, 122, 0.18);
  text-align: center;
}

.bt-proof-section-head {
  flex-direction: column;
  gap: 6px;
}

.bt-proof-section-head__inner,
.bt-proof-section-head--compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bt-proof-section-head .bt-section__eyebrow {
  margin: 0;
  font-size: var(--bt-text-sm);
}

.bt-proof-suite__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-type-proof-title);
  font-weight: 800;
  line-height: 1.16;
}

.bt-proof-suite__title .bt-icon {
  color: var(--bt-gold);
  font-size: 0.82em;
}

.bt-proof-review-layout {
  position: relative;
  padding: 26px clamp(20px, 3vw, 34px) 24px;
  border-bottom: 1px solid rgba(245, 215, 122, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 215, 122, 0.045) 0%, transparent 54%);
}

.bt-proof-review-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bt-proof-review-viewport::-webkit-scrollbar {
  display: none;
}

.bt-proof-review-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 2px 2px 4px;
}

.bt-proof-articles__title {
  margin: 0;
  color: var(--bt-gold-bright);
  font-size: var(--bt-type-article-title);
  font-weight: 800;
  line-height: 1.28;
}

.bt-proof-review {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 288px;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 28px;
  border: 1px solid rgba(184, 132, 29, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(74, 15, 10, 0.78) 0%, rgba(22, 3, 2, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(245, 215, 122, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.2);
  opacity: 0.72;
  transform: scale(0.985);
  transition: opacity var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease),
    border-color var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease);
}

.bt-proof-review::before {
  content: "\201C";
  position: absolute;
  right: 16px;
  top: -2px;
  color: rgba(245, 215, 122, 0.14);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-quote);
  font-weight: 800;
  line-height: 1;
}

.bt-proof-review--active {
  border-color: rgba(255, 236, 160, 0.76);
  background: linear-gradient(180deg, #f4d979 0%, #c99a31 100%);
  color: #351008;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.bt-proof-review--active::before {
  color: rgba(53, 16, 8, 0.16);
}

.bt-proof-review__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bt-proof-review__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(245, 215, 122, 0.36);
  background: var(--bt-grad-gold);
  color: #351008;
  font-size: var(--bt-text-xl);
  font-weight: 900;
}

.bt-proof-review--active .bt-proof-review__avatar {
  border-color: rgba(53, 16, 8, 0.26);
  background: #351008;
  color: var(--bt-gold-bright);
}

.bt-proof-review__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bt-proof-review__person strong {
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-base);
  font-weight: 700;
  line-height: 1.3;
}

.bt-proof-review__person small {
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-xs);
  line-height: 1.35;
}

.bt-proof-review__stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--bt-gold);
}

.bt-proof-review__stars .bt-icon {
  width: 14px;
  height: 14px;
}

.bt-proof-review__stars svg {
  fill: currentColor;
  stroke: currentColor;
}

.bt-proof-review__quote {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  color: var(--bt-gold-soft);
  font-family: var(--bt-font-body);
  font-size: var(--bt-text-lg);
  font-weight: 600;
  line-height: 1.75;
}

.bt-proof-review__plate {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--bt-gold);
  font-size: var(--bt-text-sm);
  font-weight: 700;
}

.bt-proof-review--active .bt-proof-review__person strong,
.bt-proof-review--active .bt-proof-review__person small,
.bt-proof-review--active .bt-proof-review__stars,
.bt-proof-review--active .bt-proof-review__quote,
.bt-proof-review--active .bt-proof-review__plate {
  color: #351008;
}

.bt-proof-review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.bt-proof-slider-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 215, 122, 0.38);
  border-radius: 999px;
  background: rgba(26, 4, 2, 0.76);
  color: var(--bt-gold-bright);
  cursor: pointer;
  transition: transform var(--bt-dur) var(--bt-ease),
    border-color var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease);
}

.bt-proof-slider-btn:hover {
  transform: translateY(-2px);
  border-color: var(--bt-gold);
  background: rgba(74, 15, 10, 0.9);
}

.bt-proof-slider-btn .bt-icon {
  font-size: var(--bt-text-2xl);
}

.bt-proof-review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(245, 215, 122, 0.2);
  border-radius: 999px;
  background: rgba(26, 4, 2, 0.42);
}

.bt-proof-review-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.bt-proof-review-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 215, 122, 0.34);
  transition: width var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease);
}

.bt-proof-review-dot.is-active::after {
  width: 22px;
  background: var(--bt-gold-bright);
}

.bt-proof-articles {
  scroll-margin-top: 104px;
  padding: 36px clamp(20px, 3vw, 34px) 34px;
  background:
    linear-gradient(180deg, rgba(245, 215, 122, 0.035) 0%, transparent 46%);
}

.bt-proof-articles__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  text-align: center;
}

.bt-proof-articles__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-type-proof-subtitle);
  line-height: 1.16;
}

.bt-proof-articles__title .bt-icon {
  color: var(--bt-gold);
  font-size: 0.84em;
}

.bt-proof-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.bt-proof-article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(165px, 0.4fr) minmax(0, 1fr);
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 10px 18px;
  min-height: 100%;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(184, 132, 29, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(74, 15, 10, 0.62) 0%, rgba(24, 3, 2, 0.94) 100%);
  color: inherit;
  box-shadow:
    inset 0 1px 0 rgba(245, 215, 122, 0.09),
    0 16px 38px rgba(0, 0, 0, 0.16);
  transition: border-color var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease);
}

.bt-proof-article--feature {
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 20px;
}

.bt-proof-article:hover {
  transform: translateY(-3px);
  border-color: var(--bt-gold);
  background:
    linear-gradient(180deg, rgba(91, 19, 12, 0.9) 0%, rgba(35, 5, 3, 0.94) 100%);
}

.bt-proof-article__image-wrap {
  position: relative;
  display: block;
  grid-column: 1;
  grid-row: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(245, 215, 122, 0.28);
  border-radius: 8px;
  min-height: 194px;
  height: 100%;
  background: rgba(0, 0, 0, 0.22);
}

.bt-proof-article--feature .bt-proof-article__image-wrap {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 8.6;
}

.bt-proof-article__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(26, 4, 2, 0.34) 100%),
    linear-gradient(90deg, rgba(26, 4, 2, 0.25), transparent 55%);
  pointer-events: none;
}

.bt-proof-article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--bt-ease);
}

.bt-proof-article:hover .bt-proof-article__image {
  transform: scale(1.04);
}

.bt-proof-article__meta {
  grid-column: 2;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  color: var(--bt-gold);
  font-size: var(--bt-text-xs);
  font-weight: 700;
}

.bt-proof-article__meta .bt-icon {
  font-size: var(--bt-text-md);
}

.bt-proof-article--feature .bt-proof-article__meta {
  grid-column: auto;
}

.bt-proof-article__title {
  grid-column: 2;
  margin: 0;
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-type-article-title);
  font-weight: 700;
  line-height: 1.34;
}

.bt-proof-article--feature .bt-proof-article__title {
  grid-column: auto;
  font-size: var(--bt-type-article-feature-title);
  line-height: 1.24;
}

.bt-proof-article__excerpt {
  grid-column: 2;
  margin: 0;
  color: var(--bt-gold-dim);
  font-family: var(--bt-font-body);
  font-size: var(--bt-text-base);
  font-weight: 600;
  line-height: 1.7;
}

.bt-proof-article--feature .bt-proof-article__excerpt {
  grid-column: auto;
}

.bt-proof-article__link {
  grid-column: 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin-top: 6px;
  color: var(--bt-gold-soft);
  font-size: var(--bt-text-md);
  font-weight: 700;
}

.bt-proof-article--feature .bt-proof-article__link {
  grid-column: auto;
}

.bt-proof-article__link .bt-icon {
  font-size: var(--bt-text-lg);
}

/* ============================================================
   Promo row (app + signup + vip plate)
   ============================================================ */
.bt-promo {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.bt-promo-card {
  border-radius: var(--bt-radius);
  padding: 24px 28px;
}

.bt-app-card {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--bt-border-3);
  background: linear-gradient(135deg, #4a0f0a, #6b1810);
}

.bt-phone {
  flex: none;
  width: 120px;
  height: 200px;
  border-radius: 14px;
  border: 2px solid var(--bt-gold);
  background: var(--bt-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
}

.bt-phone .bt-plate {
  --plate-pad: 5px 8px;
}

.bt-phone .bt-plate__num {
  font-size: var(--bt-text-lg);
}

.bt-phone__bar {
  width: 96px;
  height: 14px;
  border-radius: 3px;
  background: #2b0b08;
}

.bt-app-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bt-app-card__title {
  font-size: var(--bt-text-2xl);
  font-weight: 600;
  color: var(--bt-gold-bright);
  margin: 0;
}

.bt-app-card__lead {
  font-size: var(--bt-text-md);
  color: #e5c87a;
  margin: 0;
}

.bt-stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bt-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--bt-radius-sm);
  border: 1px solid var(--bt-gold);
  background: #0d0301;
  transition: background var(--bt-dur) var(--bt-ease);
}

.bt-store:hover {
  background: #1a0604;
}

.bt-store .bt-icon {
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-4xl);
}

.bt-store small {
  display: block;
  font-size: var(--bt-text-2xs);
  color: var(--bt-gold-muted);
}

.bt-store strong {
  display: block;
  font-size: var(--bt-text-md);
  font-weight: 600;
  color: var(--bt-gold-bright);
}

.bt-signup-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--bt-border-3);
  background: linear-gradient(135deg, #4a0f0a 0%, #6b1810 100%);
}

.bt-signup-card__title {
  font-size: var(--bt-text-2xl);
  font-weight: 600;
  color: var(--bt-gold-bright);
  margin: 0;
}

.bt-signup-card__lead {
  font-size: var(--bt-text-md);
  color: #e5c87a;
  margin: 0;
}

.bt-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bt-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--bt-text-sm);
  color: #e5c87a;
}

.bt-benefits .bt-icon {
  color: var(--bt-gold);
  font-size: var(--bt-text-base);
}

.bt-vip-card {
  display: grid;
  place-items: center;
  border-radius: var(--bt-radius);
  border: 1px solid var(--bt-gold);
  background: linear-gradient(135deg, #6b1810 0%, #4a0f0a 100%);
  padding: 24px 28px;
}

.bt-vip-plate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 220px;
  min-height: 200px;
  border-radius: 14px;
  border: 2px solid var(--bt-gold);
  background: linear-gradient(135deg, #9b0f0a 0%, #6b0805 100%);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.33);
  padding: 14px;
}

.bt-vip-plate__mark {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  border: 1.5px solid var(--bt-gold);
}

.bt-vip-plate__name {
  font-family: var(--bt-font-brand);
  font-weight: 700;
  font-size: var(--bt-text-base);
  letter-spacing: 0;
  color: var(--bt-gold-bright);
}

.bt-vip-plate__big {
  font-family: var(--bt-font-brand);
  font-weight: 700;
  font-size: var(--bt-text-display-xl);
  letter-spacing: 0;
  color: var(--bt-gold-bright);
}

/* ============================================================
   Footer
   ============================================================ */
.bt-search-empty {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  line-height: 1.7;
  color: var(--bt-gold-muted);
  margin: 4px 0 0;
}

.bt-post {
  padding: 18px 0;
  border-bottom: 1px solid var(--bt-border-faint);
}

.bt-post__title {
  margin: 0 0 8px;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-2xl);
  font-weight: 600;
  line-height: 1.35;
  color: var(--bt-gold-bright);
}

.bt-post__excerpt {
  font-family: var(--bt-font-body);
  font-size: var(--bt-text-md);
  line-height: 1.75;
  color: var(--bt-gold-muted);
}

.bt-post__excerpt p {
  margin: 0;
}

.bt-pagination {
  margin-top: 20px;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
}

/* ============================================================
   Footer
   ============================================================ */
.bt-footer {
  position: relative;
  width: 100%;
  max-width: var(--bt-content-max);
  margin: 24px auto 0;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 56px) clamp(28px, 3vw, 40px);
  border-radius: 20px 20px 0 0;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(212, 175, 55, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(26, 4, 2, 0.4) 0%, rgba(26, 4, 2, 0.66) 100%);
}

/* Gold hairline across the top edge of the footer band */
.bt-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bt-gold) 18%,
    var(--bt-gold-bright) 50%,
    var(--bt-gold) 82%,
    transparent
  );
  opacity: 0.7;
}

.bt-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(380px, 1.5fr) minmax(280px, 0.9fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.bt-footer__about {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 340px;
}

.bt-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-xl);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bt-footer__brand img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: var(--bt-radius-sm);
  object-fit: cover;
}

.bt-footer__desc {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-md);
  line-height: 1.75;
  color: var(--bt-gold-muted);
  margin: 0;
}

.bt-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bt-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--bt-border-2);
  background: rgba(212, 175, 55, 0.04);
  color: var(--bt-gold);
  font-size: var(--bt-text-2xl);
  transition: color var(--bt-dur) var(--bt-ease),
    border-color var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

.bt-socials a:hover {
  color: var(--bt-gold-bright);
  border-color: var(--bt-gold);
  background: rgba(212, 175, 55, 0.14);
  transform: translateY(-3px);
}

.bt-fcol__title {
  position: relative;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-lg);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--bt-gold-bright);
  margin: 0 0 20px;
  padding-bottom: 12px;
}

.bt-fcol__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--bt-grad-gold);
}

.bt-fcol ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bt-footer__grid > .bt-fcol:nth-child(2) ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 6px;
}

.bt-fcol a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-md);
  color: var(--bt-gold-muted);
  transition: color var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

.bt-fcol a:hover {
  color: var(--bt-gold-soft);
  transform: translateX(3px);
}

.bt-fcontact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bt-fcontact__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-md);
  color: var(--bt-gold-muted);
}

a.bt-fcontact__row {
  width: fit-content;
  transition: color var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

a.bt-fcontact__row:hover {
  color: var(--bt-gold-bright);
  transform: translateX(3px);
}

a.bt-fcontact__row:focus-visible {
  outline: 2px solid var(--bt-gold);
  outline-offset: 4px;
  border-radius: 3px;
}

.bt-fcontact__row .bt-icon {
  flex: none;
  color: var(--bt-gold);
  font-size: var(--bt-text-lg);
}

.bt-fcontact__row .bt-line-mark,
.bt-socials .bt-line-mark {
  --bt-line-mark-fill: var(--bt-gold);
  --bt-line-mark-text: #351008;
}

.bt-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid var(--bt-border-faint);
}

.bt-copyright__text {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-sm);
  color: var(--bt-gold-faint);
  margin: 0;
}

.bt-copyright__brand {
  font-family: var(--bt-font-brand);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--bt-gold-dim);
}

.bt-totop {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--bt-gold);
  color: var(--bt-gold);
  background: transparent;
  transition: background var(--bt-dur) var(--bt-ease),
    color var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

.bt-totop:hover {
  background: var(--bt-grad-gold);
  color: #351008;
  transform: translateY(-2px);
}

/* ============================================================
   Floating CTA stack
   ============================================================ */
.bt-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.bt-floating-advisor {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  color: #fff;
  text-decoration: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-floating-advisor::before,
.bt-fab--phone::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border: 2px solid #06c755;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: bt-floating-pulse 6s ease-out infinite;
}

.bt-fab--phone::before {
  border-color: #2587ef;
  animation-delay: 1.4s;
}

.bt-floating-advisor:hover {
  transform: translateY(-3px);
  filter: brightness(1.08) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.bt-floating-advisor__bubble {
  position: absolute;
  top: 50%;
  right: 76px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 188px;
  min-height: 46px;
  padding: 7px 14px 8px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #06c755;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(8px, -50%);
  transition: opacity var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease),
    visibility var(--bt-dur) var(--bt-ease);
}

.bt-floating-advisor__bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 16px;
  height: 20px;
  background: #06c755;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.bt-floating-advisor:hover .bt-floating-advisor__bubble,
.bt-floating-advisor:focus-visible .bt-floating-advisor__bubble {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.bt-floating-advisor__avatar {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  margin: 0;
  overflow: visible;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #eee;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.bt-floating-advisor__crop {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 50%;
}

.bt-floating-advisor__crop > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 44%;
  border-radius: 50%;
}

.bt-floating-advisor__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.bt-floating-advisor__avatar::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 4;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #06c755;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
}

.bt-floating-advisor__line {
  position: absolute;
  left: -8px;
  bottom: -5px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #06c755;
  color: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
}

.bt-floating-advisor__line .bt-line-mark {
  --bt-line-mark-fill: #fff;
  --bt-line-mark-text: #06c755;
  font-size: 22px;
}

@media (max-width: 1200px) {
  .bt-floating-advisor {
    width: 64px;
    height: 64px;
  }

  .bt-floating-advisor__bubble {
    display: none;
  }

  .bt-floating-advisor__avatar {
    width: 64px;
    height: 64px;
    margin: 0;
    border-width: 5px;
  }
}

.bt-fab {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: var(--bt-text-6xl);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-fab:hover {
  transform: scale(1.08);
}

.bt-fab--dark {
  background: #0d0d0d;
}

.bt-fab--phone {
  position: relative;
  background: var(--bt-phone);
}

.bt-fab--phone:hover,
.bt-fab--phone:focus-visible {
  filter: brightness(1.12);
}

@keyframes bt-floating-pulse {
  0%, 72%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  76% {
    opacity: 0.62;
    transform: scale(1);
  }
  88% {
    opacity: 0;
    transform: scale(1.38);
  }
}

.bt-fab__tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: max-content;
  min-height: 44px;
  padding: 8px 16px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #075ab5;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font-family: var(--bt-font-ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(8px, -50%);
  transition: opacity var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease),
    visibility var(--bt-dur) var(--bt-ease);
  pointer-events: none;
}

.bt-fab__tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 15px;
  height: 18px;
  background: #075ab5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.bt-fab--phone:hover .bt-fab__tooltip,
.bt-fab--phone:focus-visible .bt-fab__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

@media (max-width: 1200px) {
  .bt-fab__tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-floating-advisor,
  .bt-fab,
  .bt-floating-advisor__bubble,
  .bt-fab__tooltip {
    transition: none;
  }

  .bt-floating-advisor::before,
  .bt-fab--phone::before {
    animation: none;
  }
}

.bt-fab--line {
  position: relative;
  border: 1px solid rgba(245, 215, 122, 0.56);
  background: var(--bt-grad-gold);
  color: #351008;
  box-shadow:
    0 10px 24px rgba(212, 175, 55, 0.24),
    inset 0 0 0 1px rgba(255, 242, 166, 0.28);
}

.bt-fab--line .bt-line-mark {
  --bt-line-mark-fill: #351008;
  --bt-line-mark-text: var(--bt-gold-bright);
  font-size: var(--bt-text-display-md);
}

/* ============================================================
   Single plate detail
   ============================================================ */
.bt-single-page .bt-bottom {
  padding: 52px 0 40px;
}

.bt-single-page {
  font-family: var(--bt-font-ui);
  letter-spacing: 0;
}

.bt-single-page :where(h1, h2, h3, p, span, small, strong, dt, dd, a, button) {
  letter-spacing: 0;
}

.bt-single {
  width: min(var(--bt-content-max), calc(100% - var(--bt-content-pad) * 2));
  margin: 0 auto 44px;
}

.bt-single__back {
  margin-bottom: 16px;
}

.bt-single__hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--bt-border-gold);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 199, 78, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(58, 10, 6, 0.98), rgba(20, 4, 2, 0.98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.bt-single__plate-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 36px 34px;
  border-right: 1px solid rgba(244, 199, 78, 0.2);
  background: rgba(0, 0, 0, 0.16);
}

.bt-single__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 40px;
}

.bt-single__eyebrow {
  margin: 0;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-sm);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bt-gold);
}

.bt-single__title {
  margin: 0;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-type-single-title);
  font-weight: 800;
  line-height: 1.08;
  color: var(--bt-gold-bright);
  text-wrap: balance;
}

.bt-single__lead {
  max-width: 100%;
  margin: 0;
  font-family: var(--bt-font-body);
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-xl);
  font-weight: 600;
  line-height: 1.75;
}

.bt-single__plate {
  width: min(460px, 100%);
  padding: 8px;
  border-radius: 14px;
  background: var(--bt-grad-gold);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.bt-single__plate .bt-ribbon {
  bottom: 4.5cqi;
  min-width: 27cqi;
  min-height: 15cqi;
  padding: 0 4.5cqi 0 4cqi;
  font-size: 6.4cqi;
  font-weight: 800;
}

.bt-single-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bt-single-metrics span {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(244, 199, 78, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.bt-single-metrics small {
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-sm);
  font-weight: 600;
}

.bt-single-metrics strong {
  font-family: var(--bt-font-ui);
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-3xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

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

.bt-single-actions a,
.bt-single-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(244, 199, 78, 0.36);
  border-radius: 999px;
  background: rgba(244, 199, 78, 0.1);
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-base);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.bt-single-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: 34px;
  margin-top: 34px;
}

.bt-detail-card,
.bt-sum-card {
  overflow: hidden;
  border: 1px solid rgba(244, 199, 78, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(74, 15, 10, 0.92), rgba(35, 5, 3, 0.94));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  color: var(--bt-gold-soft);
}

.bt-detail-card {
  width: 100%;
}

.bt-card-head {
  padding: 22px 24px 0;
}

.bt-card-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--bt-gold);
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.bt-card-head h2 {
  margin: 0;
  font-family: var(--bt-font-ui);
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-5xl);
  font-weight: 800;
  line-height: 1.1;
}

.bt-detail-list {
  margin: 18px 0 0;
  padding: 0 24px;
}

.bt-detail-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 199, 78, 0.13);
}

.bt-detail-list dt {
  font-family: var(--bt-font-body);
  font-weight: 700;
  color: var(--bt-gold-dim);
}

.bt-detail-list dd {
  margin: 0;
  text-align: right;
  font-family: var(--bt-font-ui);
  font-weight: 800;
  color: var(--bt-gold-bright);
  font-variant-numeric: tabular-nums;
}

.bt-detail-price {
  color: #ef3d19 !important;
  font-size: var(--bt-text-6xl);
  line-height: 1.1;
}

.bt-detail-plate-number {
  font-size: var(--bt-text-4xl);
  line-height: 1.15;
}

.bt-detail-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 199, 78, 0.1);
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-ui);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.bt-detail-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 0;
  border-radius: 0;
  background: #310805;
  box-shadow: none;
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-xl);
  font-weight: 700;
  line-height: 1;
}

.bt-single-buy {
  display: flex;
  justify-content: stretch;
  padding: 24px;
}

.bt-single-reserve,
.bt-single-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  background: var(--bt-grad-gold);
  box-shadow: 0 10px 24px rgba(244, 199, 78, 0.18);
  color: #351008;
  font-weight: 900;
  font-size: var(--bt-text-xl);
  letter-spacing: 0;
}

.bt-single-status--booked {
  background: linear-gradient(135deg, #ff6a4d, #e90000);
  color: #fff;
}

.bt-single-status--sold {
  background: linear-gradient(135deg, #4a4a4a, #111);
  color: #fff;
}

.bt-sum-card {
  width: 100%;
}

.bt-sum-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 24px 0;
  padding: 16px;
  border: 1px solid rgba(244, 199, 78, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  font-size: var(--bt-text-3xl);
  font-family: var(--bt-font-ui);
  font-weight: 700;
  color: var(--bt-gold-soft);
}

.bt-sum-pill {
  display: inline-grid;
  place-items: center;
  min-width: 66px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--bt-grad-gold);
  color: #351008;
  font-size: var(--bt-text-4xl);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.bt-sum-pill--muted {
  background: rgba(255, 255, 255, 0.16);
  color: var(--bt-gold-soft);
}

.bt-sum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 22px 24px 0;
}

.bt-sum-block,
.bt-sum-meaning {
  border: 1px solid rgba(244, 199, 78, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.bt-sum-block h3,
.bt-sum-meaning h3 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 22px;
  font-family: var(--bt-font-ui);
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-2xl);
  font-weight: 800;
  line-height: 1.25;
}

.bt-sum-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bt-gold);
}

.bt-sum-block--gold h3::before {
  background: #d99a3c;
}

.bt-sum-block--green h3::before {
  background: #39b95d;
}

.bt-sum-block--red h3::before {
  background: #f04444;
}

.bt-sum-block p,
.bt-sum-meaning p {
  margin: 0;
  font-family: var(--bt-font-body);
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-xl);
  font-weight: 600;
  line-height: 1.78;
}

.bt-sum-meaning {
  margin: 22px 24px 24px;
  background: rgba(0, 0, 0, 0.16);
}

.bt-sum-meaning h3 {
  padding-left: 0;
}

.bt-sum-meaning h3::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  margin-top: 10px;
  background: var(--bt-gold);
}

.bt-sum-meaning p + p {
  margin-top: 16px;
}

.bt-sum-score {
  color: var(--bt-gold-bright);
}

.bt-sum-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  margin-top: 18px;
  color: var(--bt-gold);
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-sum-source:hover {
  color: var(--bt-gold-bright);
}

.bt-sum-source:focus-visible {
  outline: 2px solid var(--bt-gold);
  outline-offset: 3px;
}

.bt-single-related {
  width: min(var(--bt-content-max), calc(100% - var(--bt-content-pad) * 2));
  margin-inline: auto;
}

/* ============================================================
   Standalone pages (about / contact / duang / reviews / articles)
   ============================================================ */
.bt-page-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 4vw, 48px) 0 clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--bt-border-faint);
}

.bt-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-sm);
  color: var(--bt-gold-faint);
}

.bt-breadcrumb a {
  color: var(--bt-gold-muted);
  transition: color var(--bt-dur) var(--bt-ease);
}

.bt-breadcrumb a:hover {
  color: var(--bt-gold-soft);
}

.bt-breadcrumb .bt-icon {
  font-size: var(--bt-text-sm);
  color: var(--bt-gold-faint);
}

.bt-breadcrumb [aria-current="page"] {
  color: var(--bt-gold-bright);
}

.bt-page-hero__eyebrow {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-md);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--bt-gold);
  margin: 0;
}

.bt-page-hero__title {
  font-family: var(--bt-font-heading);
  font-weight: 700;
  font-size: var(--bt-type-page-title);
  line-height: 1.12;
  color: var(--bt-gold-bright);
  margin: 0;
}

.bt-page-hero__lead {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-xl);
  line-height: 1.7;
  color: var(--bt-gold-muted);
  max-width: 62ch;
  margin: 0;
}

.bt-page-intro p {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-xl);
  line-height: 1.85;
  color: var(--bt-gold-soft);
  max-width: 72ch;
  margin: 0;
}

.bt-trust--page {
  margin-top: 0;
}

/* Placeholder block for pages awaiting content */
.bt-page-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(32px, 5vw, 64px) 20px;
}

.bt-page-placeholder__mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--bt-border-gold);
  background: rgba(212, 175, 55, 0.06);
  color: var(--bt-gold);
  font-size: var(--bt-text-8xl);
}

.bt-page-placeholder__note {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-xl);
  line-height: 1.7;
  color: var(--bt-gold-muted);
  max-width: 46ch;
  margin: 0;
}

/* Documents page */
.bt-documents {
  padding-top: clamp(32px, 5vw, 64px);
}

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

.bt-document-card {
  display: flex;
  min-width: 0;
  min-height: 190px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--bt-border-faint);
  border-radius: var(--bt-radius-sm);
  background: var(--bt-card);
  transition: border-color var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

.bt-document-card:hover {
  border-color: var(--bt-border-gold);
  transform: translateY(-2px);
}

.bt-document-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.bt-document-card__meta span {
  color: var(--bt-gold-faint);
  font-size: var(--bt-text-sm);
  font-weight: 600;
}

.bt-document-card__meta small {
  padding: 4px 8px;
  border: 1px solid var(--bt-border-gold);
  border-radius: 999px;
  color: var(--bt-gold);
  font-size: var(--bt-text-2xs);
  font-weight: 700;
}

.bt-document-card h3 {
  margin: 0 0 24px;
  color: var(--bt-gold-soft);
  font-size: var(--bt-text-2xl);
  line-height: 1.45;
}

.bt-document-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--bt-gold);
  font-size: var(--bt-text-sm);
  font-weight: 600;
  white-space: nowrap;
}

.bt-document-card > a:hover {
  color: var(--bt-gold-bright);
}

.bt-document-card > a:focus-visible {
  outline: 2px solid var(--bt-gold-bright);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .bt-documents__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .bt-documents__grid {
    grid-template-columns: 1fr;
  }

  .bt-document-card {
    min-height: 168px;
  }
}

/* Contact page */
.bt-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.bt-contact__heading {
  font-family: var(--bt-font-heading);
  font-weight: 700;
  font-size: var(--bt-text-3xl);
  color: var(--bt-gold-bright);
  margin: 0 0 16px;
}

.bt-contact__methods {
  display: flex;
  flex-direction: column;
}

.bt-contact__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-lg);
  color: var(--bt-gold-soft);
  border-bottom: 1px solid var(--bt-border-faint);
}

.bt-contact__row:last-child {
  border-bottom: 0;
}

.bt-contact__row .bt-icon {
  flex: none;
  color: var(--bt-gold);
  font-size: var(--bt-text-2xl);
}

.bt-contact__row .bt-line-mark {
  --bt-line-mark-fill: var(--bt-gold);
  --bt-line-mark-text: #351008;
}

.bt-contact__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.bt-contact__note {
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  line-height: 1.7;
  color: var(--bt-gold-muted);
  margin: 0 0 4px;
}

.bt-contact__cta .bt-btn {
  width: 100%;
  max-width: 320px;
}

/* ============================================================
   ดูดวงทะเบียนรถ ( plate numerology page )
   ============================================================ */
.bt-duang-page .bt-bottom {
  gap: 0;
  padding-top: 44px;
  padding-bottom: 72px;
}

.bt-duang-intro {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.bt-duang-intro .bt-breadcrumb {
  margin-bottom: 28px;
}

.bt-duang-intro__copy {
  max-width: 820px;
}

.bt-duang-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--bt-gold);
}

.bt-duang-eyebrow .bt-icon {
  flex: none;
  font-size: var(--bt-text-xl);
}

.bt-duang-intro__title {
  margin: 8px 0 10px;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-lg);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  color: #fff3cd;
}

.bt-duang-intro__lead {
  max-width: 66ch;
  margin: 0;
  font-family: var(--bt-font-body);
  font-size: var(--bt-text-xl);
  line-height: 1.75;
  color: #bca778;
}

.bt-duang-workbench {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background: #1d0705;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.bt-duang-workbench__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: #150403;
}

.bt-duang-workbench__head h2,
.bt-duang-section-head h2 {
  margin: 4px 0 0;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-6xl);
  font-weight: 700;
  line-height: 1.35;
  color: #fff0c2;
}

.bt-duang-workbench__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(107, 196, 139, 0.38);
  border-radius: 6px;
  font-size: var(--bt-text-base);
  font-weight: 600;
  color: #8fdaa9;
  background: rgba(42, 114, 68, 0.14);
}

.bt-duang-workbench__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.bt-duang-preview-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px;
  border-right: 1px solid rgba(212, 175, 55, 0.18);
  background: #120403;
}

.bt-duang-preview-frame {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 8px;
  border-radius: 8px;
  background: var(--bt-grad-gold);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.bt-duang-preview {
  width: 100%;
}

.bt-duang-preview-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 560px);
  margin: 18px auto 0;
  padding: 12px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: var(--bt-text-base);
  color: #a89262;
}

.bt-duang-preview-total strong {
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-8xl);
  font-weight: 800;
  line-height: 1;
  color: var(--bt-gold-bright);
}

.bt-duang-preview-note {
  width: min(100%, 560px);
  margin: 10px auto 0;
  font-size: var(--bt-text-base);
  line-height: 1.6;
  color: #826e49;
}

.bt-duang-calc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px;
}

.bt-duang-calc__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bt-duang-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bt-duang-field span {
  font-size: var(--bt-text-base);
  font-weight: 600;
  color: #c2a96f;
}

.bt-duang-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 8px;
  background: #100302;
  color: #fff3d1;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-xl);
  transition: border-color var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease);
}

.bt-duang-field input:hover {
  border-color: rgba(212, 175, 55, 0.58);
}

.bt-duang-field input:focus {
  border-color: var(--bt-gold);
  background: #170504;
  outline: none;
}

.bt-duang-field input::placeholder {
  color: #755e3d;
}

.bt-duang-example {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 12px;
  border-left: 3px solid #76aee1;
  background: rgba(42, 91, 136, 0.13);
  font-size: var(--bt-text-base);
  color: #8faecb;
}

.bt-duang-example strong {
  font-size: var(--bt-text-base);
  font-weight: 600;
  color: #d3e7f8;
}

.bt-duang-calc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bt-duang-calc__actions .bt-btn {
  min-height: 44px;
}

.bt-duang-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  font-size: var(--bt-text-base);
  line-height: 1.65;
  color: #917d59;
}

.bt-duang-disclaimer .bt-icon {
  flex: none;
  margin-top: 2px;
  color: #79c798;
  font-size: var(--bt-text-lg);
}

.bt-duang-result {
  --bt-duang-accent: var(--bt-gold);
  margin-top: 56px;
  padding: 28px 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.32);
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
  border-left: 4px solid var(--bt-duang-accent);
  background: #180504;
}

.bt-duang-result--excellent {
  --bt-duang-accent: #f1c95c;
}

.bt-duang-result--good {
  --bt-duang-accent: #68c88a;
}

.bt-duang-result--fair {
  --bt-duang-accent: #76aee1;
}

.bt-duang-result--muted {
  --bt-duang-accent: #9b765e;
}

.bt-duang-result__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bt-duang-result__head h2 {
  margin: 5px 0 10px;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-sm);
  font-weight: 700;
  line-height: 1.25;
  color: #fff1c6;
}

.bt-duang-result__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--bt-duang-accent);
  color: #1a0805;
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-duang-result__sum {
  display: grid;
  place-items: center;
  width: 108px;
  height: 96px;
  flex: none;
  border: 1px solid var(--bt-duang-accent);
  border-radius: 8px;
  background: #0f0302;
  text-align: center;
}

.bt-duang-result__sum small {
  align-self: end;
  font-size: var(--bt-text-base);
  color: #9b8558;
}

.bt-duang-result__sum strong {
  align-self: start;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-md);
  font-weight: 900;
  line-height: 1;
  color: var(--bt-duang-accent);
}

.bt-duang-result__overview {
  max-width: 900px;
  margin-top: 26px;
}

.bt-duang-result__overview h3 {
  margin: 0 0 8px;
  font-size: var(--bt-text-2xl);
  font-weight: 700;
  color: #f0ce79;
}

.bt-duang-result__overview p {
  margin: 0;
  font-size: var(--bt-text-xl);
  line-height: 1.8;
  color: #b09a6b;
}

.bt-duang-result__overview p + p {
  margin-top: 8px;
}

.bt-duang-result__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.bt-duang-chip {
  position: relative;
  padding: 18px 20px 18px 24px;
  border-right: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.bt-duang-chip:nth-child(even) {
  border-right: 0;
}

.bt-duang-chip:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.bt-duang-chip::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d0a954;
}

.bt-duang-chip--birthday::before {
  background: #76aee1;
}

.bt-duang-chip--colors::before {
  background: #68c88a;
}

.bt-duang-chip--avoid::before {
  background: #d1776a;
}

.bt-duang-chip h3 {
  margin: 0 0 6px;
  font-size: var(--bt-text-xl);
  font-weight: 700;
  color: #ebca79;
}

.bt-duang-chip p {
  margin: 0;
  font-size: var(--bt-text-lg);
  line-height: 1.7;
  color: #9e895f;
}

.bt-duang-result__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bt-duang-reference {
  margin-top: 58px;
}

.bt-duang-section-head {
  margin-bottom: 22px;
}

.bt-duang-reference__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.bt-duang-method {
  padding-right: 32px;
  border-right: 1px solid rgba(212, 175, 55, 0.18);
}

.bt-duang-method > h3,
.bt-duang-popular > h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  font-size: var(--bt-text-2xl);
  font-weight: 700;
  color: #f3d486;
}

.bt-duang-method > h3 .bt-icon,
.bt-duang-popular > h3 .bt-icon {
  color: var(--bt-gold);
}

.bt-duang-method > p {
  margin: 0;
  font-size: var(--bt-text-xl);
  line-height: 1.75;
  color: #9e895f;
}

.bt-duang-steps {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.bt-duang-steps li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.bt-duang-steps li:last-child {
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.bt-duang-steps li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 50%;
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-duang-steps p {
  margin: 5px 0 0;
  font-size: var(--bt-text-lg);
  line-height: 1.6;
  color: #a38d62;
}

.bt-duang-sum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.bt-duang-sum-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 68px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  transition: color var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

.bt-duang-sum-card:hover {
  transform: translateX(3px);
}

.bt-duang-sum-card__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 6px;
  background: #1e0705;
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-2xl);
  font-weight: 800;
}

.bt-duang-sum-card__text {
  font-size: var(--bt-text-base);
  line-height: 1.55;
  color: #9d885d;
}

.bt-duang-sum-card .bt-icon {
  color: #886c38;
  font-size: var(--bt-text-lg);
}

.bt-duang-sum-card:hover .bt-icon {
  color: var(--bt-gold);
}

.bt-duang-letters {
  margin-top: 38px;
  border-top: 1px solid rgba(212, 175, 55, 0.26);
  border-bottom: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(19, 4, 3, 0.48);
}

.bt-duang-letters summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.bt-duang-letters summary::-webkit-details-marker {
  display: none;
}

.bt-duang-letters summary > .bt-icon {
  flex: none;
  color: var(--bt-gold);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-duang-letters[open] summary > .bt-icon {
  transform: rotate(90deg);
}

.bt-duang-letters__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bt-duang-letters__summary > .bt-icon {
  flex: none;
  font-size: var(--bt-text-7xl);
  color: var(--bt-gold);
}

.bt-duang-letters__summary > span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-duang-letters__summary strong {
  font-size: var(--bt-text-3xl);
  font-weight: 700;
  color: #f0d082;
}

.bt-duang-letters__summary small {
  margin-top: 4px;
  font-size: var(--bt-text-base);
  line-height: 1.6;
  color: #8e7953;
}

.bt-duang-letter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 18px;
  padding: 0 24px 24px;
}

.bt-duang-letter-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 84px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.bt-duang-letter-row__val {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 6px;
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-4xl);
  font-weight: 800;
}

.bt-duang-letter-row__chars {
  min-width: 0;
  font-family: var(--bt-font-ui);
  font-weight: 500;
  font-size: var(--bt-text-6xl);
  line-height: 1.6;
  letter-spacing: 0;
  color: #d8bd78;
  overflow-wrap: anywhere;
}

/* Hallmark · pre-emit critique: P5 H5 E5 S5 R5 V4
 * Numerology library: compact reference index with progressive disclosure.
 */
.bt-duang-library {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--bt-border-faint);
}

.bt-duang-library__head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.bt-duang-library__head--single {
  grid-template-columns: minmax(0, 1fr);
}

.bt-duang-library__head h2 {
  margin: 5px 0 8px;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-sm);
  font-style: normal;
  line-height: 1.25;
  color: var(--bt-gold-soft);
  overflow-wrap: anywhere;
}

.bt-duang-library__head p:not(.bt-duang-eyebrow) {
  max-width: 62ch;
  margin: 0;
  font-size: var(--bt-text-lg);
  line-height: 1.7;
  color: var(--bt-gold-dim);
}

.bt-duang-library__legend {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-left: 3px solid var(--bt-gold);
  background: var(--bt-card-deep);
}

.bt-duang-library__legend--before-letters {
  margin-top: 38px;
}

.bt-duang-library__legend span {
  font-size: var(--bt-text-base);
  line-height: 1.65;
  color: var(--bt-gold-dim);
}

.bt-duang-library__legend strong {
  margin-right: 6px;
  color: var(--bt-gold-bright);
}

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

.bt-duang-meaning {
  min-width: 0;
  border: 1px solid var(--bt-border-faint);
  border-radius: var(--bt-radius-sm);
  background: var(--bt-card-deep);
}

.bt-duang-meaning[open] {
  border-color: var(--bt-border-gold);
  background: var(--bt-card);
}

.bt-duang-meaning summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}

.bt-duang-meaning summary::-webkit-details-marker {
  display: none;
}

.bt-duang-meaning__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--bt-border-gold);
  border-radius: var(--bt-radius-sm);
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-5xl);
  font-weight: 800;
}

.bt-duang-meaning__label {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.bt-duang-meaning__label strong {
  min-width: 0;
  color: var(--bt-gold-soft);
  font-size: var(--bt-text-lg);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.bt-duang-meaning__label small {
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-xs);
}

.bt-duang-meaning__score {
  white-space: nowrap;
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-duang-meaning summary > .bt-icon {
  color: var(--bt-gold-muted);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-duang-meaning[open] summary > .bt-icon {
  transform: rotate(90deg);
}

.bt-duang-meaning__body {
  padding: 0 18px 18px 80px;
  border-top: 1px solid var(--bt-border-faint);
}

.bt-duang-meaning__body p {
  margin: 14px 0 0;
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-base);
  line-height: 1.8;
}

.bt-duang-meaning__body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-top: 14px;
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-duang-meaning__body a .bt-icon {
  font-size: var(--bt-text-base);
}

.bt-duang-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  background: #180504;
}

.bt-duang-cta h2 {
  margin: 4px 0 0;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-6xl);
  font-weight: 700;
  line-height: 1.35;
  color: #f7d98c;
}

.bt-duang-cta .bt-btn {
  flex: none;
}

.bt-duang-page .bt-btn {
  font-size: var(--bt-text-lg);
}

@media (max-width: 1000px) {
  .bt-duang-workbench__grid {
    grid-template-columns: 1fr;
  }

  .bt-duang-preview-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  }

  .bt-duang-reference__grid {
    grid-template-columns: 1fr;
  }

  .bt-duang-method {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  }

  .bt-duang-library__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 700px) {
  .bt-duang-page .bt-bottom {
    padding-top: 30px;
    padding-bottom: 52px;
  }

  .bt-duang-intro {
    padding-bottom: 24px;
  }

  .bt-duang-intro .bt-breadcrumb {
    margin-bottom: 22px;
  }

  .bt-duang-intro__title {
    font-size: var(--bt-text-9xl);
  }

  .bt-duang-intro__lead {
    font-size: var(--bt-text-xl);
  }

  .bt-duang-workbench {
    margin-top: 22px;
  }

  .bt-duang-workbench__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
  }

  .bt-duang-preview-panel,
  .bt-duang-calc {
    padding: 20px 18px;
  }

  .bt-duang-calc__fields {
    grid-template-columns: 1fr;
  }

  .bt-duang-example {
    grid-template-columns: auto 1fr;
  }

  .bt-duang-example > span:last-child {
    grid-column: 2;
  }

  .bt-duang-result {
    margin-top: 42px;
    padding: 22px 18px;
  }

  .bt-duang-result__head {
    align-items: flex-start;
  }

  .bt-duang-result__head h2 {
    font-size: var(--bt-text-7xl);
  }

  .bt-duang-result__sum {
    width: 88px;
    height: 82px;
  }

  .bt-duang-result__sum strong {
    font-size: var(--bt-text-9xl);
  }

  .bt-duang-result__grid {
    grid-template-columns: 1fr;
  }

  .bt-duang-chip,
  .bt-duang-chip:nth-child(even),
  .bt-duang-chip:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  }

  .bt-duang-chip:last-child {
    border-bottom: 0;
  }

  .bt-duang-reference {
    margin-top: 44px;
  }

  .bt-duang-sum-grid,
  .bt-duang-letter-grid {
    grid-template-columns: 1fr;
  }

  .bt-duang-library {
    margin-top: 42px;
  }

  .bt-duang-library__grid {
    grid-template-columns: 1fr;
  }

  .bt-duang-library__head h2 {
    font-size: var(--bt-text-8xl);
  }

  .bt-duang-meaning summary {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .bt-duang-meaning__num {
    width: 46px;
    height: 46px;
    font-size: var(--bt-text-3xl);
  }

  .bt-duang-meaning__score {
    grid-column: 2;
    justify-self: start;
  }

  .bt-duang-meaning summary > .bt-icon {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .bt-duang-meaning__body {
    padding: 0 14px 16px;
  }

  .bt-duang-letters summary {
    padding: 18px;
  }

  .bt-duang-letters__summary strong {
    font-size: var(--bt-text-2xl);
  }

  .bt-duang-letters__summary small {
    font-size: var(--bt-text-base);
  }

  .bt-duang-letter-grid {
    padding: 0 18px 18px;
  }

  .bt-duang-letter-row {
    min-height: 72px;
  }

  .bt-duang-letter-row__chars {
    font-size: var(--bt-text-4xl);
  }

  .bt-duang-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Hallmark · premium numerology workbench refinement · v1.9.206 */
/* Rolled back: keep this historical block inert so the previous page design remains authoritative. */
@media (width < 0px) {
.bt-duang-page {
  color: var(--bt-duang-ink);
  background:
    radial-gradient(circle at 8% 1%, color-mix(in srgb, var(--bt-duang-gold-soft) 42%, transparent), transparent 24rem),
    linear-gradient(180deg, var(--bt-duang-paper-strong), var(--bt-duang-paper));
}

.bt-duang-page :is(#duang-calc, #duang-guide, #duang-letters, #duang-library) {
  scroll-margin-top: 118px;
}

.bt-duang-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--bt-duang-line);
  border-left: 5px solid var(--bt-duang-gold);
  border-radius: var(--bt-duang-radius-lg);
  background:
    linear-gradient(110deg, var(--bt-duang-paper-strong) 0 66%, var(--bt-duang-paper-warm) 66% 100%);
  box-shadow: var(--bt-duang-shadow-md);
}

.bt-duang-intro::after {
  position: absolute;
  right: -58px;
  bottom: -78px;
  width: 250px;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--bt-duang-gold) 28%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bt-duang-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
}

.bt-duang-intro__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.bt-duang-intro__title {
  max-width: 760px;
  margin-bottom: var(--bt-duang-space-3);
  color: var(--bt-duang-wine-deep);
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.bt-duang-intro__lead {
  max-width: 650px;
  color: var(--bt-duang-ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.8;
}

.bt-duang-intro__action {
  display: inline-flex;
  gap: var(--bt-duang-space-2);
  align-items: center;
  margin-top: var(--bt-duang-space-4);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--bt-duang-gold);
  color: var(--bt-duang-wine);
  font-weight: 700;
  text-decoration: none;
  transition: gap 180ms var(--bt-duang-ease), color 180ms ease;
}

.bt-duang-intro__action:hover {
  gap: var(--bt-duang-space-3);
  color: var(--bt-duang-wine-deep);
}

.bt-duang-intro__signal {
  position: relative;
  z-index: 1;
  padding: var(--bt-duang-space-5);
  border: 1px solid var(--bt-duang-line-strong);
  border-radius: var(--bt-duang-radius-md);
  color: var(--bt-duang-gold-soft);
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--bt-duang-gold-bright) 18%, transparent), transparent 48%),
    var(--bt-duang-wine-deep);
  box-shadow: var(--bt-duang-shadow-sm);
}

.bt-duang-intro__signal-label {
  display: block;
  margin-bottom: var(--bt-duang-space-3);
  color: var(--bt-duang-gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bt-duang-intro__signal-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bt-duang-space-2);
  margin-bottom: var(--bt-duang-space-3);
}

.bt-duang-intro__signal-numbers strong {
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  border-bottom: 2px solid var(--bt-duang-gold);
  color: var(--bt-duang-paper-strong);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
}

.bt-duang-intro__signal p {
  margin: 0;
  color: color-mix(in srgb, var(--bt-duang-paper-strong) 74%, transparent);
  font-size: 0.9rem;
  line-height: 1.65;
}

.bt-duang-jumpnav {
  position: sticky;
  z-index: 25;
  top: 88px;
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  margin: var(--bt-duang-space-4) 0 var(--bt-duang-space-5);
  padding: 14px 22px;
  overflow-x: auto;
  border: 1px solid color-mix(in srgb, var(--bt-duang-line) 82%, transparent);
  border-radius: var(--bt-duang-radius-sm);
  background: color-mix(in srgb, var(--bt-duang-paper-strong) 91%, transparent);
  box-shadow: var(--bt-duang-shadow-sm);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.bt-duang-jumpnav::-webkit-scrollbar {
  display: none;
}

.bt-duang-jumpnav a {
  flex: 0 0 auto;
  color: var(--bt-duang-ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.bt-duang-jumpnav a:hover {
  color: var(--bt-duang-wine);
}

.bt-duang-page .bt-discovery--birthday,
.bt-duang-workbench,
.bt-duang-reference,
.bt-duang-library {
  border-color: var(--bt-duang-line);
  border-radius: var(--bt-duang-radius-lg);
  background: var(--bt-duang-paper-strong);
  box-shadow: var(--bt-duang-shadow-sm);
}

.bt-duang-workbench {
  overflow: hidden;
  border-top: 5px solid var(--bt-duang-wine);
  box-shadow: var(--bt-duang-shadow-lg);
}

.bt-duang-workbench__head {
  border-bottom-color: var(--bt-duang-line);
  background: linear-gradient(100deg, var(--bt-duang-paper-warm), var(--bt-duang-paper-strong));
}

.bt-duang-workbench__status {
  border: 1px solid color-mix(in srgb, var(--bt-duang-positive) 35%, transparent);
  color: var(--bt-duang-positive);
  background: color-mix(in srgb, var(--bt-duang-positive) 8%, var(--bt-duang-paper-strong));
}

.bt-duang-page :is(input, button, a, summary):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bt-duang-gold-bright) 70%, var(--bt-duang-wine));
  outline-offset: 3px;
}

.bt-duang-reference__grid {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.45fr);
  gap: clamp(32px, 5vw, 70px);
}

.bt-duang-method {
  padding-right: clamp(0px, 3vw, 38px);
  border-right: 1px solid var(--bt-duang-line);
}

.bt-duang-library__legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bt-duang-space-3);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.bt-duang-legend-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--bt-duang-space-3);
  align-items: start;
  padding: var(--bt-duang-space-4);
  border: 1px solid var(--bt-duang-line);
  border-radius: var(--bt-duang-radius-md);
  background: var(--bt-duang-paper-strong);
  box-shadow: var(--bt-duang-shadow-sm);
}

.bt-duang-legend-card__mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
}

.bt-duang-legend-card--excellent .bt-duang-legend-card__mark {
  color: var(--bt-duang-wine-deep);
  background: var(--bt-duang-gold-bright);
}

.bt-duang-legend-card--good .bt-duang-legend-card__mark {
  color: var(--bt-duang-paper-strong);
  background: var(--bt-duang-positive);
}

.bt-duang-legend-card strong,
.bt-duang-legend-card small {
  display: block;
}

.bt-duang-legend-card strong {
  margin-bottom: var(--bt-duang-space-1);
  color: var(--bt-duang-ink);
  font-size: 1.03rem;
}

.bt-duang-legend-card small {
  color: var(--bt-duang-ink-soft);
  line-height: 1.7;
}

.bt-duang-letters {
  border-color: var(--bt-duang-line);
  border-radius: var(--bt-duang-radius-md);
  background: var(--bt-duang-paper-strong);
  box-shadow: var(--bt-duang-shadow-sm);
}

.bt-duang-library-disclosure {
  margin-top: var(--bt-duang-space-4);
  border-top: 1px solid var(--bt-duang-line);
}

.bt-duang-library-disclosure > summary {
  display: flex;
  gap: var(--bt-duang-space-3);
  align-items: center;
  justify-content: space-between;
  padding: var(--bt-duang-space-4) 2px;
  color: var(--bt-duang-wine);
  cursor: pointer;
  list-style: none;
}

.bt-duang-library-disclosure > summary::-webkit-details-marker {
  display: none;
}

.bt-duang-library-disclosure > summary span,
.bt-duang-library-disclosure > summary small {
  display: block;
}

.bt-duang-library-disclosure > summary small {
  margin-top: var(--bt-duang-space-1);
  color: var(--bt-duang-ink-soft);
  font-weight: 400;
}

.bt-duang-library-disclosure[open] > summary > svg {
  transform: rotate(90deg);
}

.bt-duang-library-disclosure > summary > svg {
  flex: 0 0 auto;
  transition: transform 180ms var(--bt-duang-ease);
}

.bt-duang-meaning {
  border-color: var(--bt-duang-line);
  background: var(--bt-duang-paper-strong);
}

.bt-duang-meaning--excellent {
  border-left: 4px solid var(--bt-duang-gold);
}

.bt-duang-meaning--good {
  border-left: 4px solid var(--bt-duang-positive);
}

.bt-duang-meaning--fair {
  border-left: 4px solid var(--bt-duang-info);
}

.bt-duang-meaning--caution {
  border-left: 4px solid var(--bt-duang-caution);
}

.bt-duang-meaning--excellent .bt-duang-meaning__score {
  color: var(--bt-duang-wine);
}

.bt-duang-meaning--good .bt-duang-meaning__score {
  color: var(--bt-duang-positive);
}

.bt-duang-meaning--fair .bt-duang-meaning__score {
  color: var(--bt-duang-info);
}

.bt-duang-meaning--caution .bt-duang-meaning__score {
  color: var(--bt-duang-caution);
}

.bt-duang-cta {
  border-radius: var(--bt-duang-radius-md);
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--bt-duang-gold-bright) 18%, transparent), transparent 35%),
    linear-gradient(135deg, var(--bt-duang-wine), var(--bt-duang-wine-deep));
  box-shadow: var(--bt-duang-shadow-md);
}

@media (max-width: 920px) {
  .bt-duang-intro {
    background: var(--bt-duang-paper-strong);
  }

  .bt-duang-intro__layout,
  .bt-duang-reference__grid {
    grid-template-columns: 1fr;
  }

  .bt-duang-intro__signal {
    max-width: 560px;
  }

  .bt-duang-method {
    padding-right: 0;
    padding-bottom: var(--bt-duang-space-5);
    border-right: 0;
    border-bottom: 1px solid var(--bt-duang-line);
  }
}

@media (max-width: 700px) {
  .bt-duang-page :is(#duang-calc, #duang-guide, #duang-letters, #duang-library) {
    scroll-margin-top: 92px;
  }

  .bt-duang-intro {
    padding: 28px 22px;
  }

  .bt-duang-intro__layout {
    gap: var(--bt-duang-space-5);
  }

  .bt-duang-intro__title {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .bt-duang-intro__signal {
    padding: 22px;
  }

  .bt-duang-jumpnav {
    top: 68px;
    width: calc(100% + 8px);
    margin-left: -4px;
    padding-inline: 18px;
  }

  .bt-duang-library__legend {
    grid-template-columns: 1fr;
  }

  .bt-duang-legend-card {
    padding: 20px;
  }

  .bt-duang-library-disclosure > summary {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-duang-page *,
  .bt-duang-page *::before,
  .bt-duang-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 420px) {
  .bt-duang-calc__actions .bt-btn,
  .bt-duang-result__cta .bt-btn,
  .bt-duang-cta .bt-btn {
    width: 100%;
  }

  .bt-duang-result__head {
    flex-direction: column;
  }

  .bt-duang-result__sum {
    width: 100%;
    height: 74px;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .bt-duang-result__sum small,
  .bt-duang-result__sum strong {
    align-self: center;
  }
}
}

/* Hallmark · pre-emit critique: P5 H4 E5 S4 R5 V5 */
/* Numerology readability pass · scoped to the “ดูดวงทะเบียนรถ” page. */
.bt-duang-page {
  --bt-duang-text-strong: #fff1c7;
  --bt-duang-text-body: #f4dfae;
  --bt-duang-text-muted: #dfc17f;
  --bt-duang-text-accent: #ffd86a;
}

.bt-duang-page .bt-breadcrumb a,
.bt-duang-page .bt-breadcrumb span,
.bt-duang-page .bt-duang-eyebrow,
.bt-duang-page .bt-duang-intro__title,
.bt-duang-page .bt-duang-workbench__head h2,
.bt-duang-page .bt-duang-section-head h2,
.bt-duang-page .bt-duang-library__head h2,
.bt-duang-page .bt-duang-cta h2,
.bt-duang-page .bt-duang-result__head h2,
.bt-duang-page .bt-duang-result__overview h3,
.bt-duang-page .bt-duang-chip h3,
.bt-duang-page .bt-duang-method > h3,
.bt-duang-page .bt-duang-popular > h3,
.bt-duang-page .bt-duang-meaning__label strong,
.bt-duang-page .bt-duang-letters__summary strong {
  color: var(--bt-duang-text-strong);
}

.bt-duang-page .bt-duang-intro__lead,
.bt-duang-page .bt-duang-workbench__head p,
.bt-duang-page .bt-duang-preview-note,
.bt-duang-page .bt-duang-disclaimer,
.bt-duang-page .bt-duang-result__overview p,
.bt-duang-page .bt-duang-chip p,
.bt-duang-page .bt-duang-method > p,
.bt-duang-page .bt-duang-steps p,
.bt-duang-page .bt-duang-sum-card__text,
.bt-duang-page .bt-duang-library__head p:not(.bt-duang-eyebrow),
.bt-duang-page .bt-duang-meaning__body p,
.bt-duang-page .bt-managed-content__inner p,
.bt-duang-page .bt-managed-content__inner li {
  color: var(--bt-duang-text-body);
}

.bt-duang-page .bt-duang-letters__summary small,
.bt-duang-page .bt-duang-meaning__label small,
.bt-duang-page .bt-duang-library__legend span,
.bt-duang-page .bt-duang-preview-total > span,
.bt-duang-page .bt-duang-field span,
.bt-duang-page .bt-duang-example,
.bt-duang-page .bt-duang-jumpnav a,
.bt-duang-page .bt-managed-content__inner small {
  color: var(--bt-duang-text-muted);
}

.bt-duang-page .bt-duang-result__sum small,
.bt-duang-page .bt-duang-result__sum strong,
.bt-duang-page .bt-duang-workbench__status,
.bt-duang-page .bt-duang-legend-card strong,
.bt-duang-page .bt-duang-legend-card small,
.bt-duang-page .bt-duang-meaning__score,
.bt-duang-page .bt-duang-meaning__body a,
.bt-duang-page .bt-duang-library__legend strong,
.bt-duang-page .bt-duang-letter-row__val,
.bt-duang-page .bt-duang-sum-card__num {
  color: var(--bt-duang-text-accent);
}

.bt-duang-page .bt-duang-example strong {
  color: var(--bt-duang-text-strong);
}

.bt-duang-page .bt-duang-field input::placeholder {
  color: var(--bt-duang-text-muted);
}

.bt-duang-page .bt-duang-meaning__body a:hover,
.bt-duang-page .bt-duang-jumpnav a:hover,
.bt-duang-page .bt-managed-content__inner a:hover {
  color: var(--bt-duang-text-strong);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --bt-content-pad: 40px;
  }
  .bt-plate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bt-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bt-promo {
    grid-template-columns: 1fr 1fr;
  }
  .bt-vip-card {
    grid-column: 1 / -1;
  }
  .bt-search__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bt-search__grid .bt-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .bt-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bt-footer__about {
    grid-column: 1 / -1;
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  :root {
    --bt-type-hero-title: 52px;
    --bt-type-page-title: 44px;
    --bt-type-single-title: 44px;
    --bt-type-proof-title: 36px;
    --bt-type-proof-subtitle: 30px;
    --bt-type-article-feature-title: 26px;
  }
  .bt-nav,
  .bt-header__actions .bt-btn {
    display: none;
  }
  .bt-burger {
    display: inline-flex;
  }
  .bt-search {
    margin-top: 48px;
  }
  .bt-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .bt-home-social {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .bt-home-social__links {
    width: 100%;
  }
  .bt-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .bt-step__arrow {
    transform: rotate(90deg);
    align-self: center;
  }
  .bt-proof-article-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bt-proof-review {
    flex-basis: calc(100% - 2px);
    min-height: 268px;
  }
  .bt-proof-articles__head {
    align-items: center;
  }
  .bt-proof-article,
  .bt-proof-article--feature {
    min-height: auto;
  }
  .bt-proof-article--feature {
    grid-row: auto;
  }
  .bt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bt-single {
    width: min(100% - 32px, 720px);
  }
  .bt-single__hero {
    grid-template-columns: 1fr;
  }
  .bt-single__plate-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 199, 78, 0.2);
  }
  .bt-single-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .bt-plate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bt-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  :root {
    --bt-content-pad: 18px;
    --bt-type-hero-title: 32px;
    --bt-type-page-title: 32px;
    --bt-type-single-title: 32px;
    --bt-type-proof-title: 28px;
    --bt-type-proof-subtitle: 26px;
    --bt-type-article-title: 18px;
    --bt-type-article-feature-title: 21px;
  }
  .bt-plate-grid,
  .bt-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bt-promo {
    grid-template-columns: 1fr;
  }
  .bt-app-card {
    flex-direction: column;
    text-align: center;
  }
  .bt-search__grid {
    grid-template-columns: 1fr;
  }
  .bt-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }
  .bt-trust__item {
    min-width: 0;
    gap: 8px;
    padding: 9px 8px;
    border-radius: 10px;
  }
  .bt-trust__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .bt-trust__item > span:last-child {
    min-width: 0;
    line-height: 1.15;
  }
  .bt-trust__label {
    display: inline-block;
    font-size: 12px;
    line-height: 1.25;
  }
  .bt-trust__desc {
    display: inline-block;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.25;
  }
  .bt-home-social {
    gap: 12px;
    padding: 14px;
  }
  .bt-home-social__copy h2 {
    font-size: var(--bt-text-xl);
  }
  .bt-home-social__copy p {
    margin-top: 3px;
    font-size: var(--bt-text-xs);
  }
  .bt-home-social__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .bt-home-social__link {
    min-height: 42px;
    gap: 5px;
    padding: 7px 6px;
    font-size: 11px;
  }
  .bt-home-social__icon {
    width: 24px;
    height: 24px;
    font-size: var(--bt-text-xs);
  }
  .bt-proof-suite__head,
  .bt-proof-articles {
    padding: 18px;
  }
  .bt-proof-review-layout {
    padding: 16px 14px 18px;
  }
  .bt-proof-suite__title {
    font-size: var(--bt-type-proof-title);
  }
  .bt-proof-suite__title .bt-icon {
    font-size: var(--bt-text-5xl);
  }
  .bt-proof-review-track {
    gap: 12px;
  }
  .bt-proof-review,
  .bt-proof-article,
  .bt-proof-article--feature {
    padding: 18px;
  }
  .bt-proof-review {
    flex-basis: calc(100% - 2px);
    min-height: 0;
  }
  .bt-proof-review-controls {
    gap: 10px;
    margin-top: 14px;
  }
  .bt-proof-slider-btn {
    width: 38px;
    height: 38px;
  }
  .bt-proof-review-dots {
    min-height: 38px;
  }
  .bt-proof-articles__head {
    margin-bottom: 16px;
  }
  .bt-proof-articles__title {
    font-size: var(--bt-type-proof-subtitle);
  }
  .bt-proof-article-grid {
    gap: 14px;
  }
  .bt-proof-article {
    grid-template-columns: 1fr;
  }
  .bt-proof-article__image-wrap,
  .bt-proof-article__meta,
  .bt-proof-article__title,
  .bt-proof-article__excerpt,
  .bt-proof-article__link {
    grid-column: auto;
  }
  .bt-proof-article__image-wrap {
    aspect-ratio: 16 / 9;
    grid-row: auto;
    min-height: 0;
    height: auto;
  }
  .bt-proof-article--feature .bt-proof-article__title {
    font-size: var(--bt-type-article-feature-title);
  }
  .bt-proof-article__title {
    font-size: var(--bt-type-article-title);
  }
  .bt-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bt-footer__about {
    align-items: center;
    text-align: center;
    max-width: none;
  }
  .bt-footer__desc {
    max-width: 42ch;
    margin-inline: auto;
  }
  .bt-socials {
    justify-content: center;
  }
  .bt-copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .bt-copyright .bt-totop {
    display: none;
  }
  .bt-floating {
    right: 14px;
    bottom: 18px;
  }
  .bt-fab {
    width: 52px;
    height: 52px;
    font-size: var(--bt-text-4xl);
  }
  .bt-single-page .bt-bottom {
    padding: 28px 0 30px;
  }
  .bt-single {
    width: auto;
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }
  .bt-single__hero,
  .bt-detail-card,
  .bt-sum-card {
    width: 100%;
    max-width: 100%;
  }
  .bt-single__plate-panel,
  .bt-single__summary {
    padding: 22px 18px;
  }
  .bt-single__title {
    font-size: var(--bt-type-single-title);
    line-height: 1.12;
  }
  .bt-single__lead {
    font-size: var(--bt-text-lg);
  }
  .bt-single__plate {
    width: 100%;
  }
  .bt-single__plate .bt-ribbon {
    min-height: 14cqi;
    padding-inline: 4cqi;
    font-size: 6cqi;
  }
  .bt-single-metrics,
  .bt-sum-grid {
    grid-template-columns: 1fr;
  }
  .bt-single-actions a,
  .bt-single-actions button {
    flex: 1 1 100%;
    min-height: 42px;
  }
  .bt-card-head {
    padding: 18px 18px 0;
  }
  .bt-card-head h2 {
    font-size: var(--bt-text-3xl);
  }
  .bt-detail-list {
    padding: 0 18px;
  }
  .bt-detail-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
  }
  .bt-detail-list dd {
    text-align: left;
  }
  .bt-detail-phone {
    width: 100%;
    justify-content: center;
  }
  .bt-sum-intro {
    align-items: flex-start;
    flex-direction: column;
    margin: 18px 18px 0;
    padding: 18px;
    font-size: var(--bt-text-xl);
  }
  .bt-sum-grid {
    padding: 18px 18px 0;
  }
  .bt-sum-block,
  .bt-sum-meaning {
    padding: 18px;
  }
  .bt-sum-block p,
  .bt-sum-meaning p {
    font-size: var(--bt-text-lg);
    line-height: 1.75;
  }
  .bt-single-related {
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-home-social__link {
    transition: none;
  }

  .bt-home-social__link:hover {
    transform: none;
  }
}

/* Nav drawer (mobile) */
.bt-drawer {
  display: none;
}

body.bt-drawer-open .bt-drawer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px var(--bt-content-pad) 20px;
  background: var(--bt-header-2);
  border-bottom: 1px solid var(--bt-border);
}

/* ============================================================
   Plate catalogue page
   ============================================================ */
.bt-search:not(.bt-search--catalog) .bt-search__field {
  display: contents;
}

.bt-search-page .bt-bottom {
  gap: 0;
  padding-top: 60px;
  padding-bottom: 72px;
}

.bt-catalog-hero {
  margin: -60px calc(0px - var(--bt-content-pad)) 0;
  padding: 28px var(--bt-content-pad) 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  background: #190504;
}

.bt-catalog-hero .bt-breadcrumb {
  width: min(100%, var(--bt-content-max));
  margin: 0 auto 32px;
}

.bt-catalog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 64px;
  width: min(100%, var(--bt-content-max));
  margin-inline: auto;
}

.bt-catalog-hero__copy {
  min-width: 0;
}

.bt-catalog-hero__eyebrow,
.bt-catalog-section-head__eyebrow,
.bt-search__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--bt-gold);
}

.bt-catalog-hero__eyebrow .bt-icon {
  font-size: var(--bt-text-xl);
}

.bt-catalog-hero__title {
  margin: 10px 0 12px;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #fff4d1;
}

.bt-catalog-hero__lead {
  max-width: 58ch;
  margin: 0;
  font-family: var(--bt-font-body);
  font-size: var(--bt-text-xl);
  line-height: 1.75;
  color: #c9b584;
}

.bt-catalog-stats {
  display: flex;
  align-items: stretch;
  margin-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.bt-catalog-stat {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 14px 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.bt-catalog-stat:first-child {
  padding-left: 0;
}

.bt-catalog-stat:last-child {
  border-right: 0;
}

.bt-catalog-stat strong {
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-6xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bt-gold-bright);
}

.bt-catalog-stat small {
  font-size: var(--bt-text-base);
  color: #a89468;
}

.bt-catalog-spotlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 0;
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-catalog-spotlight:hover {
  transform: translateY(-3px);
}

.bt-catalog-spotlight__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--bt-text-base);
  font-weight: 600;
  color: var(--bt-gold-soft);
}

.bt-catalog-spotlight__label .bt-icon {
  color: var(--bt-gold);
}

.bt-catalog-spotlight__plate {
  display: block;
  padding: 8px;
  border-radius: 8px;
  background: var(--bt-grad-gold);
}

.bt-catalog-spotlight__plate .bt-tabien {
  max-width: 480px;
}

.bt-catalog-spotlight__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.bt-catalog-spotlight__meta > span:not(.bt-icon) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-catalog-spotlight__meta small {
  font-size: var(--bt-text-base);
  color: #9d895f;
}

.bt-catalog-spotlight__meta strong {
  overflow: hidden;
  font-size: var(--bt-text-xl);
  font-weight: 600;
  color: var(--bt-gold-bright);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bt-catalog-spotlight__meta > .bt-icon {
  align-self: center;
  font-size: var(--bt-text-3xl);
  color: var(--bt-gold);
}

.bt-search--catalog {
  margin-top: 28px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background: #260806;
  backdrop-filter: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.bt-search--catalog .bt-search__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: #1c0604;
}

.bt-search__head-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  color: var(--bt-gold);
  background: #2c0c08;
  font-size: var(--bt-text-3xl);
}

.bt-search--catalog .bt-search__title {
  margin: 2px 0 0;
  font-size: var(--bt-text-4xl);
  line-height: 1.3;
  color: #fff0c3;
}

.bt-search--catalog .bt-search__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 22px 22px;
  align-items: end;
}

.bt-search__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.bt-search__label {
  font-size: var(--bt-text-base);
  font-weight: 600;
  color: #c8ad73;
}

.bt-search--catalog .bt-field {
  min-height: 46px;
  border-color: rgba(212, 175, 55, 0.32);
  background-color: #140403;
  color: #fff3d0;
  font-size: var(--bt-text-xl);
}

.bt-search--catalog .bt-field:hover {
  border-color: rgba(212, 175, 55, 0.62);
}

.bt-search--catalog .bt-field::placeholder {
  color: #836b4a;
}

.bt-search--catalog .bt-btn {
  grid-column: 1 / -1;
  min-height: 46px;
  font-size: var(--bt-text-lg);
  white-space: nowrap;
}

.bt-catalog-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(18, 5, 3, 0.5);
}

.bt-catalog-assurance > span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 14px 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.16);
}

.bt-catalog-assurance > span:last-child {
  border-right: 0;
}

.bt-catalog-assurance > span > .bt-icon {
  flex: none;
  font-size: var(--bt-text-5xl);
  color: #79c798;
}

.bt-catalog-assurance > span:nth-child(2) > .bt-icon {
  color: #76aee1;
}

.bt-catalog-assurance > span:nth-child(3) > .bt-icon {
  color: #edbd5d;
}

.bt-catalog-assurance > span > span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-catalog-assurance strong {
  font-size: var(--bt-text-xl);
  font-weight: 600;
  color: #f8e8be;
}

.bt-catalog-assurance small {
  margin-top: 2px;
  font-size: var(--bt-text-base);
  line-height: 1.45;
  color: #9f8c65;
}

.bt-catalog-section,
.bt-catalog-results {
  margin-top: 56px;
}

.bt-catalog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.bt-catalog-section-head__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0 0;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-6xl);
  font-weight: 700;
  line-height: 1.3;
  color: #fff0c3;
}

.bt-catalog-section-head__title .bt-icon {
  flex: none;
  color: var(--bt-gold);
}

.bt-catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bt-catalog-category {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  background: #2a0906;
  transition: border-color var(--bt-dur) var(--bt-ease),
    background var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

.bt-catalog-category:hover {
  transform: translateY(-2px);
  border-color: var(--bt-gold);
  background: #340d09;
}

.bt-catalog-category__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  background: #1b0504;
  color: var(--bt-gold);
  font-size: var(--bt-text-3xl);
}

.bt-catalog-category__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-catalog-category__copy strong {
  font-size: var(--bt-text-xl);
  font-weight: 600;
  line-height: 1.4;
  color: #f7e4b4;
}

.bt-catalog-category__copy small {
  margin-top: 3px;
  font-size: var(--bt-text-base);
  color: #a88c58;
}

.bt-catalog-category > .bt-icon {
  font-size: var(--bt-text-xl);
  color: #8e713c;
  transition: color var(--bt-dur) var(--bt-ease),
    transform var(--bt-dur) var(--bt-ease);
}

.bt-catalog-category:hover > .bt-icon {
  color: var(--bt-gold);
  transform: translateX(2px);
}

.bt-catalog-text-link,
.bt-catalog-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  font-size: var(--bt-text-base);
  font-weight: 600;
  color: var(--bt-gold-soft);
}

.bt-catalog-text-link .bt-icon,
.bt-catalog-clear .bt-icon {
  font-size: var(--bt-text-xl);
}

.bt-catalog-text-link:hover,
.bt-catalog-clear:hover {
  color: #fff4d1;
}

.bt-catalog-clear {
  padding: 7px 12px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 6px;
  background: #240806;
}

.bt-plate-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 16px;
}

.bt-plate-grid--catalog .bt-plate-card {
  border-radius: 8px;
}

.bt-plate-grid--catalog .bt-plate-price {
  font-size: var(--bt-text-3xl);
}

/* Province results follow TabienGraphic's vehicle + number-pattern sections. */
.bt-catalog-result-groups {
  display: grid;
  gap: 46px;
}

/* tabien2you-style number-search results: exact block, then nearby block,
   each with a colored query chip and grey vehicle-group bars. */
.bt-t2y-results {
  display: grid;
  gap: 52px;
}

.bt-t2y-block {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.bt-t2y-label {
  justify-self: start;
  margin: 0;
  padding: 12px 26px;
  border-left: 6px solid #35a463;
  border-radius: 14px;
  background: rgba(53, 164, 99, 0.14);
  color: #fff;
  font-size: var(--bt-text-2xl, 20px);
  font-weight: 700;
}

.bt-t2y-label--near {
  border-left-color: #3f7fd9;
  background: rgba(63, 127, 217, 0.16);
}

.bt-t2y-group {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.bt-t2y-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5c5c5c, rgba(92, 92, 92, 0.55));
  color: #fff;
  font-size: var(--bt-text-xl, 18px);
  font-weight: 700;
}

.bt-t2y-bar span {
  font-size: var(--bt-text-sm, 14px);
  font-weight: 500;
  opacity: 0.85;
  white-space: nowrap;
}

/* tabiengraphic-style groups: provincial sedans + every pickup / van /
   motorcycle, grouped by province → vehicle → number pattern under a solid
   yellow header bar (matches tabiengraphic.com search results). */
.bt-tg-results {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.bt-tg-group {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.bt-tg-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 11px 20px;
  border-radius: 10px;
  background: #ffe11a;
  color: #191100;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-lg, 17px);
  font-weight: 700;
  line-height: 1.4;
}

.bt-tg-bar span {
  flex: none;
  font-size: var(--bt-text-sm, 14px);
  font-weight: 600;
  color: rgba(25, 17, 0, 0.62);
  white-space: nowrap;
}

.bt-tg-group--motorcycle .bt-plate-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1050px) {
  .bt-tg-group--motorcycle .bt-plate-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bt-tg-bar {
    font-size: var(--bt-text-base, 16px);
    padding: 10px 16px;
  }

  .bt-tg-group--motorcycle .bt-plate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bt-catalog-result-group {
  min-width: 0;
}

.bt-catalog-result-group--motorcycle .bt-plate-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 20px;
}

@media (max-width: 1050px) {
  .bt-catalog-result-group--motorcycle .bt-plate-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bt-catalog-result-group--motorcycle .bt-plate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 12px;
  }
}

@media (max-width: 480px) {
  .bt-catalog-result-group--motorcycle .bt-plate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.bt-home-result-groups {
  margin-top: 6px;
}

.bt-catalog-result-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.34);
}

.bt-catalog-result-group__head h2,
.bt-catalog-result-group__head h3 {
  margin: 0;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-weight: 700;
  line-height: 1.35;
  color: #ffe49a;
}

.bt-catalog-result-group__head span {
  flex: none;
  font-size: var(--bt-text-base);
  color: #b9954d;
}

@media (max-width: 640px) {
  .bt-catalog-result-groups {
    gap: 36px;
  }

  .bt-catalog-result-group__head {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .bt-catalog-result-group__head h2,
  .bt-catalog-result-group__head h3 {
    font-size: var(--bt-text-2xl);
  }
}

.bt-catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 22px;
}

.bt-catalog-filters span {
  padding: 6px 9px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 4px;
  background: rgba(18, 4, 3, 0.48);
  font-size: var(--bt-text-base);
  color: #cdb37a;
}

/* Hallmark · pre-emit critique: P5 H5 E5 S5 R5 V4 */
.bt-sum-context {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 0 0 34px;
  padding: 22px 24px;
  border: 1px solid var(--bt-border-gold);
  border-radius: var(--bt-radius);
  background: var(--bt-card-deep);
}

.bt-sum-context__number {
  display: grid;
  place-items: center;
  width: 104px;
  height: 92px;
  border-right: 1px solid var(--bt-border-gold);
  text-align: center;
}

.bt-sum-context__number small {
  align-self: end;
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-sm);
}

.bt-sum-context__number strong {
  align-self: start;
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-md);
  line-height: 1;
}

.bt-sum-context__copy {
  min-width: 0;
}

.bt-sum-context__copy > p {
  margin: 0 0 4px;
  color: var(--bt-gold);
  font-size: var(--bt-text-sm);
  font-weight: 700;
}

.bt-sum-context__copy h3 {
  min-width: 0;
  margin: 0;
  color: var(--bt-gold-soft);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-style: normal;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.bt-sum-context__copy > span {
  display: block;
  max-width: 82ch;
  margin-top: 7px;
  color: var(--bt-gold-dim);
  font-size: var(--bt-text-base);
  line-height: 1.7;
}

.bt-sum-context__meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 156px;
}

.bt-sum-context__meta > strong {
  color: var(--bt-gold-bright);
  font-size: var(--bt-text-5xl);
}

.bt-sum-context__meta > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  white-space: nowrap;
  color: var(--bt-gold-soft);
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-sum-context__meta > a:hover,
.bt-sum-context__meta > a:focus-visible,
.bt-sum-context__meta > a:active {
  color: var(--bt-gold-bright);
}

@media (max-width: 820px) {
  .bt-sum-context {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
  }

  .bt-sum-context__number {
    width: 84px;
  }

  .bt-sum-context__meta {
    grid-column: 2;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .bt-sum-context {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 14px;
  }

  .bt-sum-context__number {
    width: 64px;
    height: 76px;
  }

  .bt-sum-context__number strong {
    font-size: var(--bt-text-9xl);
  }

  .bt-sum-context__copy h3 {
    font-size: var(--bt-text-xl);
  }

  .bt-sum-context__copy > span {
    font-size: var(--bt-text-sm);
  }

  .bt-sum-context__meta {
    grid-column: 1 / -1;
  }
}

.bt-catalog-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  text-align: center;
}

.bt-catalog-empty__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  color: var(--bt-gold);
  background: #260806;
  font-size: var(--bt-text-6xl);
}

.bt-catalog-empty h3 {
  margin: 16px 0 6px;
  font-size: var(--bt-text-3xl);
  font-weight: 600;
  color: #f8e7ba;
}

.bt-catalog-empty p {
  margin: 0 0 20px;
  font-size: var(--bt-text-base);
  line-height: 1.7;
  color: #a99162;
}

@media (max-width: 1200px) {
  .bt-catalog-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
    gap: 40px;
  }

  .bt-search--catalog .bt-search__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bt-search--catalog .bt-btn {
    grid-column: auto;
  }

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

@media (max-width: 900px) {
  .bt-catalog-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bt-catalog-spotlight {
    width: min(100%, 560px);
  }

  .bt-catalog-category-grid,
  .bt-plate-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .bt-search-page .bt-bottom {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .bt-catalog-hero {
    margin-top: -36px;
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .bt-catalog-hero .bt-breadcrumb {
    margin-bottom: 24px;
  }

  .bt-catalog-hero__title {
    font-size: var(--bt-text-9xl);
  }

  .bt-catalog-hero__lead {
    font-size: var(--bt-text-xl);
  }

  .bt-catalog-stats {
    margin-top: 22px;
  }

  .bt-catalog-stat {
    padding: 12px;
  }

  .bt-catalog-stat:first-child {
    padding-left: 0;
  }

  .bt-catalog-stat strong {
    font-size: var(--bt-text-5xl);
  }

  .bt-catalog-stat small {
    font-size: var(--bt-text-base);
  }

  .bt-search--catalog .bt-search__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .bt-catalog-assurance {
    grid-template-columns: 1fr;
  }

  .bt-catalog-assurance > span {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  }

  .bt-catalog-assurance > span:last-child {
    border-bottom: 0;
  }

  .bt-catalog-section,
  .bt-catalog-results {
    margin-top: 42px;
  }
}

@media (max-width: 520px) {
  .bt-catalog-spotlight__meta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .bt-catalog-spotlight__meta > span:nth-child(2) {
    display: none;
  }

  .bt-search--catalog .bt-search__head {
    align-items: flex-start;
    padding: 16px;
  }

  .bt-search--catalog .bt-search__title {
    font-size: var(--bt-text-3xl);
  }

  .bt-search--catalog .bt-search__grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .bt-search--catalog .bt-btn {
    grid-column: auto;
  }

  .bt-catalog-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .bt-catalog-section-head__title {
    font-size: var(--bt-text-5xl);
  }

  .bt-catalog-category-grid {
    grid-template-columns: 1fr;
  }

  .bt-catalog-category {
    min-height: 70px;
  }
}

@media (max-width: 360px) {
  .bt-plate-grid--catalog {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Customer reviews page
   ============================================================ */
.bt-reviews-page .bt-bottom {
  gap: 0;
  padding-top: 44px;
  padding-bottom: 72px;
}

.bt-reviews-page .bt-btn {
  min-height: 48px;
  font-size: var(--bt-text-lg);
}

.bt-reviews-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  margin: -44px calc(0px - var(--bt-content-pad)) 0;
  padding: 28px var(--bt-content-pad) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  background: #190504;
}

.bt-reviews-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 2, 2, 0.82) 0%, rgba(15, 2, 2, 0.64) 38%, rgba(15, 2, 2, 0.16) 72%, rgba(15, 2, 2, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 2, 2, 0.42) 0%, transparent 48%);
}

.bt-reviews-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.bt-reviews-hero__inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, var(--bt-content-max));
  min-height: 582px;
  margin-inline: auto;
}

.bt-reviews-hero .bt-breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.bt-reviews-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 650px;
  padding: 38px 0 44px;
  text-align: left;
}

.bt-reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--bt-gold);
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  font-weight: 700;
  letter-spacing: 0;
}

.bt-reviews-eyebrow .bt-icon {
  font-size: var(--bt-text-xl);
}

.bt-reviews-hero h1 {
  margin: 10px 0 12px;
  color: #fff4d1;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.bt-reviews-hero__lead {
  max-width: 62ch;
  margin: 0;
  color: #ead9aa;
  font-family: var(--bt-font-body);
  font-size: var(--bt-text-xl);
  line-height: 1.75;
}

.bt-reviews-hero__actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.bt-reviews-hero__mockup-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  color: #cbbd98;
  font-size: var(--bt-text-base);
  line-height: 1.55;
}

.bt-reviews-hero__mockup-note .bt-icon {
  flex: none;
  color: #7bd49e;
  font-size: var(--bt-text-2xl);
}

.bt-reviews-line-btn {
  border-color: #06a947;
  background: #06c755;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.18);
}

.bt-reviews-line-btn:hover {
  transform: translateY(-2px);
  border-color: #05b64d;
  background: #05b94f;
  color: #ffffff;
}

.bt-reviews-line-btn .bt-line-mark {
  --bt-line-mark-fill: #ffffff;
  --bt-line-mark-text: #06a947;
}

.bt-reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-inline: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(15, 2, 2, 0.7);
  backdrop-filter: blur(8px);
}

.bt-reviews-stats > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.bt-reviews-stats > span:last-child {
  border-right: 0;
}

.bt-reviews-stats strong {
  color: var(--bt-gold-bright);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-6xl);
  font-weight: 700;
  line-height: 1.25;
}

.bt-reviews-stats small {
  color: #ad9869;
  font-size: var(--bt-text-base);
  line-height: 1.45;
}

.bt-reviews-wall {
  margin-top: 64px;
}

.bt-reviews-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.bt-reviews-section-head h2,
.bt-reviews-themes h2,
.bt-reviews-journey h2,
.bt-reviews-cta h2 {
  margin: 6px 0 0;
  color: #fff0c3;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-8xl);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.bt-reviews-section-head > p {
  max-width: 48ch;
  margin: 0;
  color: #a99364;
  font-size: var(--bt-text-base);
  line-height: 1.65;
  text-align: right;
}

.bt-customer-gallery {
  display: grid;
  gap: 18px;
}

.bt-customer-gallery__featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bt-customer-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bt-customer-gallery__grid .bt-customer-gallery__item {
  margin: 0;
  aspect-ratio: 3 / 4;
}

.bt-customer-gallery__grid .bt-customer-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .bt-customer-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bt-customer-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 12px;
  background: #290806;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bt-customer-gallery__featured .bt-customer-gallery__item {
  margin-bottom: 0;
}

.bt-customer-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 239, 185, 0.08);
  border-radius: inherit;
}

.bt-customer-gallery__item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 215, 122, 0.76);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
}

.bt-customer-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.bt-customer-gallery__item--featured {
  border-color: rgba(245, 215, 122, 0.72);
}

.bt-lightbox[hidden] {
  display: none;
}

.bt-lightbox {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(56px, 1fr) minmax(0, 1200px) minmax(56px, 1fr);
  align-items: center;
  padding: 28px;
  background: rgba(7, 2, 2, 0.94);
  backdrop-filter: blur(8px);
}

.bt-lightbox__figure {
  grid-column: 2;
  display: grid;
  place-items: center;
  max-width: 100%;
  max-height: calc(100vh - 56px);
  margin: 0;
}

.bt-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 108px);
  border: 1px solid rgba(245, 215, 122, 0.56);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
}

.bt-lightbox__counter {
  min-width: 82px;
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(49, 8, 5, 0.88);
  color: #f5d77a;
  font-size: 15px;
  text-align: center;
}

.bt-lightbox__close,
.bt-lightbox__nav {
  border: 1px solid rgba(245, 215, 122, 0.6);
  border-radius: 50%;
  background: rgba(49, 8, 5, 0.88);
  color: #f5d77a;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.bt-lightbox__close:hover,
.bt-lightbox__nav:hover {
  transform: scale(1.08);
  background: #64120d;
}

.bt-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 36px;
  line-height: 42px;
}

.bt-lightbox__nav {
  width: 54px;
  height: 54px;
  font-size: 40px;
  line-height: 44px;
}

.bt-lightbox__nav--prev {
  grid-column: 1;
  justify-self: center;
}

.bt-lightbox__nav--next {
  grid-column: 3;
  justify-self: center;
}

body.bt-lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .bt-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding: 16px 6px;
  }

  .bt-lightbox__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .bt-lightbox__nav {
    width: 40px;
    height: 48px;
    font-size: 34px;
  }

  .bt-lightbox__image {
    max-height: calc(100vh - 90px);
  }
}

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

.bt-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 324px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: #290806;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.bt-review-card__top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.bt-review-card__avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 215, 122, 0.42);
  border-radius: 50%;
  background: #f0d274;
  color: #351008;
  font-size: var(--bt-text-2xl);
  font-weight: 800;
}

.bt-review-card__person {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bt-review-card__person strong {
  color: #f8e8bc;
  font-size: var(--bt-text-xl);
  font-weight: 700;
  line-height: 1.35;
}

.bt-review-card__person small {
  color: #aa915d;
  font-size: var(--bt-text-base);
  line-height: 1.4;
}

.bt-review-card__index {
  align-self: start;
  color: rgba(245, 215, 122, 0.36);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-3xl);
  font-weight: 700;
}

.bt-review-card__stars {
  display: flex;
  gap: 5px;
  margin: 22px 0 14px;
  color: #f5ca52;
}

.bt-review-card__stars .bt-icon {
  width: 17px;
  height: 17px;
}

.bt-review-card__stars svg {
  fill: currentColor;
  stroke: currentColor;
}

.bt-review-card blockquote {
  flex: 1;
  margin: 0;
  color: #ead9aa;
  font-family: var(--bt-font-body);
  font-size: var(--bt-text-xl);
  font-weight: 500;
  line-height: 1.8;
}

.bt-review-card__service {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 20px;
  padding: 7px 9px;
  border: 1px solid rgba(123, 212, 158, 0.32);
  border-radius: 4px;
  background: rgba(123, 212, 158, 0.06);
  color: #93d9ad;
  font-size: var(--bt-text-base);
  font-weight: 600;
}

.bt-reviews-themes {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  padding: 38px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.bt-reviews-themes header {
  padding-right: 28px;
}

.bt-reviews-themes h2 {
  font-size: var(--bt-text-6xl);
}

.bt-reviews-theme {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.bt-reviews-theme__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  color: var(--bt-gold);
  background: #220705;
  font-size: var(--bt-text-3xl);
}

.bt-reviews-theme h3 {
  margin: 16px 0 7px;
  color: #f6e2b0;
  font-size: var(--bt-text-2xl);
  font-weight: 700;
  line-height: 1.35;
}

.bt-reviews-theme p {
  margin: 0;
  color: #ad9869;
  font-size: var(--bt-text-lg);
  line-height: 1.7;
}

.bt-reviews-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 72px;
  margin-top: 64px;
}

.bt-reviews-journey > header {
  position: sticky;
  top: 110px;
}

.bt-reviews-journey > header > p:last-child {
  max-width: 48ch;
  margin: 14px 0 0;
  color: #b09b6b;
  font-size: var(--bt-text-xl);
  line-height: 1.75;
}

.bt-reviews-journey__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.bt-reviews-journey__steps li {
  display: grid;
  grid-template-columns: 34px 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.bt-reviews-journey__steps li:first-child {
  padding-top: 0;
}

.bt-reviews-journey__number {
  color: #8f7341;
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-reviews-journey__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  color: var(--bt-gold);
  background: #250806;
  font-size: var(--bt-text-3xl);
}

.bt-reviews-journey__steps li > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bt-reviews-journey__steps strong {
  color: #f8e6b7;
  font-size: var(--bt-text-2xl);
  font-weight: 700;
  line-height: 1.35;
}

.bt-reviews-journey__steps small {
  color: #a99263;
  font-size: var(--bt-text-lg);
  line-height: 1.6;
}

.bt-reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 64px calc(0px - var(--bt-content-pad)) 0;
  padding: 46px var(--bt-content-pad);
  border-top: 1px solid #caa44a;
  border-bottom: 1px solid #caa44a;
  background: #f1e3c2;
}

.bt-reviews-cta > div:first-child {
  max-width: 720px;
}

.bt-reviews-cta .bt-reviews-eyebrow {
  color: #8b6416;
}

.bt-reviews-cta h2 {
  color: #351008;
}

.bt-reviews-cta > div:first-child > p:last-child {
  margin: 10px 0 0;
  color: #72573a;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-reviews-cta__actions {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.bt-reviews-cta__search {
  border-color: #6c431f;
  background: transparent;
  color: #4d2915;
}

.bt-reviews-cta__search:hover {
  transform: translateY(-2px);
  background: rgba(77, 41, 21, 0.08);
}

@media (max-width: 1000px) {
  .bt-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bt-review-card:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .bt-reviews-themes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bt-reviews-themes header {
    grid-column: 1 / -1;
    margin-bottom: 28px;
    padding-right: 0;
  }

  .bt-reviews-themes header + .bt-reviews-theme {
    padding-left: 0;
    border-left: 0;
  }

  .bt-reviews-journey {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bt-reviews-journey > header {
    position: static;
  }

  .bt-reviews-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .bt-reviews-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .bt-reviews-page .bt-bottom {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .bt-reviews-hero {
    min-height: 520px;
    margin-top: -36px;
    padding-top: 22px;
  }

  .bt-reviews-hero::after {
    background:
      linear-gradient(90deg, rgba(15, 2, 2, 0.8), rgba(15, 2, 2, 0.46)),
      linear-gradient(0deg, rgba(15, 2, 2, 0.56), transparent 55%);
  }

  .bt-reviews-hero__media {
    object-position: 66% center;
  }

  .bt-reviews-hero__inner {
    min-height: 498px;
  }

  .bt-reviews-hero .bt-breadcrumb {
    margin-bottom: 26px;
  }

  .bt-reviews-hero h1 {
    font-size: var(--bt-text-9xl);
  }

  .bt-reviews-hero__lead {
    font-size: var(--bt-text-xl);
  }

  .bt-reviews-hero__copy {
    max-width: 520px;
    padding: 28px 0 34px;
  }

  .bt-reviews-stats > span {
    padding: 15px 8px;
  }

  .bt-reviews-stats strong {
    font-size: var(--bt-text-4xl);
  }

  .bt-reviews-grid {
    grid-template-columns: 1fr;
  }

  .bt-customer-gallery {
    gap: 12px;
  }

  .bt-customer-gallery__featured {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bt-customer-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bt-customer-gallery__item {
    margin-bottom: 12px;
    border-radius: 8px;
  }

  .bt-reviews-wall {
    margin-top: 48px;
  }

  .bt-review-card:last-child {
    grid-column: auto;
  }

  .bt-reviews-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .bt-reviews-section-head h2,
  .bt-reviews-journey h2,
  .bt-reviews-cta h2 {
    font-size: var(--bt-text-5xl);
  }

  .bt-reviews-section-head > p {
    text-align: left;
  }

  .bt-reviews-themes {
    grid-template-columns: 1fr;
    padding-bottom: 18px;
  }

  .bt-reviews-theme,
  .bt-reviews-themes header + .bt-reviews-theme {
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-left: 0;
  }

  .bt-reviews-themes header {
    margin-bottom: 10px;
  }

  .bt-reviews-cta__actions,
  .bt-reviews-cta__actions .bt-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bt-reviews-hero__actions,
  .bt-reviews-hero__actions .bt-btn {
    width: 100%;
  }

  .bt-reviews-hero__mockup-note {
    align-items: flex-start;
    text-align: left;
  }

  .bt-reviews-stats small {
    font-size: var(--bt-text-base);
  }

  .bt-review-card {
    min-height: 0;
    padding: 20px;
  }

  .bt-review-card__top {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .bt-review-card__avatar {
    width: 44px;
    height: 44px;
  }

  .bt-reviews-journey__steps li {
    grid-template-columns: 26px 40px minmax(0, 1fr);
    gap: 10px;
  }

  .bt-reviews-journey__icon {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   Articles journal page
   ============================================================ */
.bt-articles-page .bt-bottom {
  gap: 0;
  padding-top: 44px;
  padding-bottom: 72px;
}

.bt-articles-page .bt-btn {
  min-height: 48px;
  font-size: var(--bt-text-lg);
}

.bt-articles-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  margin: -44px calc(0px - var(--bt-content-pad)) 0;
  padding: 28px var(--bt-content-pad) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  background: #190504;
}

.bt-articles-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(19, 2, 1, 0.56);
}

.bt-articles-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.bt-articles-hero__inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, var(--bt-content-max));
  min-height: 492px;
  margin-inline: auto;
}

.bt-articles-hero .bt-breadcrumb {
  position: relative;
  z-index: 1;
}

.bt-articles-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 720px;
  padding: 34px 0 38px;
}

.bt-articles-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--bt-gold);
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-base);
  font-weight: 700;
  letter-spacing: 0;
}

.bt-articles-eyebrow .bt-icon {
  flex: none;
  font-size: var(--bt-text-xl);
}

.bt-articles-hero h1 {
  max-width: 14ch;
  margin: 10px 0 12px;
  color: #fff4d1;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-display-xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.bt-articles-hero__copy > p:not(.bt-articles-eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: #ead9aa;
  font-size: var(--bt-text-xl);
  line-height: 1.75;
}

.bt-articles-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 18px 0 22px;
}

.bt-articles-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d9c590;
  font-size: var(--bt-text-base);
  font-weight: 600;
}

.bt-articles-hero__meta .bt-icon {
  color: #7bd49e;
  font-size: var(--bt-text-xl);
}

.bt-articles-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 215, 122, 0.28);
  background: rgba(14, 2, 1, 0.76);
  backdrop-filter: blur(8px);
}

.bt-articles-topics a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 20px;
  border-right: 1px solid rgba(245, 215, 122, 0.2);
  color: #f3dfab;
  transition: background var(--bt-dur) var(--bt-ease), color var(--bt-dur) var(--bt-ease);
}

.bt-articles-topics a:last-child {
  border-right: 0;
}

.bt-articles-topics a:hover {
  color: #ffffff;
  background: rgba(212, 175, 55, 0.1);
}

.bt-articles-topics > a > .bt-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  color: var(--bt-gold);
  background: #250806;
  font-size: var(--bt-text-3xl);
}

.bt-articles-topics a > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bt-articles-topics small {
  color: #bca36d;
  font-size: var(--bt-text-base);
  line-height: 1.35;
}

.bt-articles-topics strong {
  color: #f8e8bc;
  font-size: var(--bt-text-lg);
  font-weight: 600;
  line-height: 1.35;
}

.bt-articles-library {
  margin-top: 64px;
  scroll-margin-top: 108px;
}

.bt-articles-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.bt-articles-section-head h2,
.bt-articles-paths h2,
.bt-articles-contact h2 {
  margin: 6px 0 0;
  color: #fff0c3;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-8xl);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.bt-articles-section-head > p {
  max-width: 50ch;
  margin: 0;
  color: #ad9869;
  font-size: var(--bt-text-base);
  line-height: 1.7;
  text-align: right;
}

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

.bt-articles-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background: #290806;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.bt-articles-card--feature {
  grid-column: 1 / -1;
}

.bt-articles-card__link {
  display: grid;
  height: 100%;
  color: inherit;
}

.bt-articles-card--feature .bt-articles-card__link {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.bt-articles-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #190504;
}

.bt-articles-card--feature .bt-articles-card__media {
  min-height: 340px;
  aspect-ratio: auto;
}

.bt-articles-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--bt-ease);
}

.bt-articles-card:hover .bt-articles-card__media img {
  transform: scale(1.025);
}

.bt-articles-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 24px;
}

.bt-articles-card--feature .bt-articles-card__content {
  justify-content: center;
  padding: 32px;
}

.bt-articles-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-bottom: 14px;
}

.bt-articles-card__meta > span {
  padding: 5px 8px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 4px;
  color: #e2c46d;
  background: rgba(212, 175, 55, 0.06);
  font-size: var(--bt-text-base);
  font-weight: 600;
}

.bt-articles-card__meta small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a99162;
  font-size: var(--bt-text-base);
}

.bt-articles-card h3 {
  margin: 0;
  color: #f8e7ba;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
}

.bt-articles-card--feature h3 {
  font-size: var(--bt-text-6xl);
}

.bt-articles-card__content > p {
  margin: 12px 0 0;
  color: #b19b6c;
  font-size: var(--bt-text-xl);
  line-height: 1.75;
}

.bt-articles-card__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--bt-gold-soft);
  font-size: var(--bt-text-lg);
  font-weight: 700;
}

.bt-articles-card__action .bt-icon {
  font-size: var(--bt-text-xl);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-articles-card:hover .bt-articles-card__action .bt-icon {
  transform: translateX(3px);
}

.bt-articles-paths {
  margin: 64px calc(0px - var(--bt-content-pad)) 0;
  padding: 42px var(--bt-content-pad) 46px;
  border-top: 1px solid #c79b3c;
  border-bottom: 1px solid #c79b3c;
  background: #f1e3c2;
}

.bt-articles-paths > header,
.bt-articles-paths__grid {
  width: min(100%, var(--bt-content-max));
  margin-inline: auto;
}

.bt-articles-paths > header {
  margin-bottom: 24px;
}

.bt-articles-paths .bt-articles-eyebrow {
  color: #8b6416;
}

.bt-articles-paths h2 {
  color: #351008;
}

.bt-articles-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(89, 54, 24, 0.26);
  border-bottom: 1px solid rgba(89, 54, 24, 0.26);
}

.bt-articles-path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid rgba(89, 54, 24, 0.22);
  color: #351008;
  transition: background var(--bt-dur) var(--bt-ease);
}

.bt-articles-path:last-child {
  border-right: 0;
}

.bt-articles-path:hover {
  background: rgba(115, 70, 26, 0.06);
}

.bt-articles-path__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid #7b4d20;
  border-radius: 8px;
  color: #f1d67d;
  background: #4a0f0a;
  font-size: var(--bt-text-3xl);
}

.bt-articles-path > small {
  color: #916a35;
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-articles-path h3 {
  margin: 7px 0 8px;
  color: #351008;
  font-size: var(--bt-text-3xl);
  font-weight: 700;
  line-height: 1.4;
}

.bt-articles-path p {
  flex: 1;
  margin: 0;
  color: #72573a;
  font-size: var(--bt-text-lg);
  line-height: 1.7;
}

.bt-articles-path > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #6f3f18;
  font-size: var(--bt-text-lg);
  font-weight: 700;
}

.bt-articles-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 0 calc(0px - var(--bt-content-pad));
  padding: 38px var(--bt-content-pad);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  background: #1a0402;
}

.bt-articles-contact > div {
  max-width: 720px;
}

.bt-articles-contact h2 {
  font-size: var(--bt-text-6xl);
}

.bt-articles-contact > div > p:last-child {
  margin: 10px 0 0;
  color: #b19b6c;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-articles-contact .bt-btn {
  flex: none;
  border-color: #06a947;
  background: #06c755;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.18);
}

.bt-articles-contact .bt-btn:hover {
  transform: translateY(-2px);
  background: #05b94f;
}

.bt-articles-contact .bt-line-mark {
  --bt-line-mark-fill: #ffffff;
  --bt-line-mark-text: #06a947;
}

@media (max-width: 1000px) {
  .bt-articles-card--feature .bt-articles-card__link {
    grid-template-columns: 1fr;
  }

  .bt-articles-card--feature .bt-articles-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .bt-articles-paths__grid {
    grid-template-columns: 1fr;
  }

  .bt-articles-path {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    column-gap: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(89, 54, 24, 0.22);
  }

  .bt-articles-path:last-child {
    border-bottom: 0;
  }

  .bt-articles-path__icon {
    grid-column: 1;
    grid-row: 1 / 5;
    margin-bottom: 0;
  }

  .bt-articles-path > small,
  .bt-articles-path h3,
  .bt-articles-path p {
    grid-column: 2;
  }

  .bt-articles-path > span:last-child {
    grid-column: 3;
    grid-row: 1 / 5;
    align-self: center;
    margin-top: 0;
  }
}

@media (max-width: 800px) {
  .bt-articles-topics {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .bt-articles-grid {
    grid-template-columns: 1fr;
  }

  .bt-articles-card--feature {
    grid-column: auto;
  }

  .bt-articles-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .bt-articles-section-head > p {
    text-align: left;
  }

  .bt-articles-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 700px) {
  .bt-articles-page .bt-bottom {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .bt-articles-hero {
    min-height: 520px;
    margin-top: -36px;
    padding-top: 22px;
  }

  .bt-articles-hero::after {
    background: rgba(19, 2, 1, 0.7);
  }

  .bt-articles-hero__media {
    object-position: 66% center;
  }

  .bt-articles-hero__inner {
    min-height: 498px;
  }

  .bt-articles-hero__copy {
    padding: 28px 0 32px;
  }

  .bt-articles-hero h1 {
    font-size: var(--bt-text-9xl);
  }

  .bt-articles-hero__copy > p:not(.bt-articles-eyebrow) {
    font-size: var(--bt-text-xl);
  }

  .bt-articles-library {
    margin-top: 48px;
  }

  .bt-articles-section-head h2,
  .bt-articles-paths h2,
  .bt-articles-contact h2 {
    font-size: var(--bt-text-5xl);
  }

  .bt-articles-card--feature .bt-articles-card__content,
  .bt-articles-card__content {
    padding: 20px;
  }

  .bt-articles-card--feature h3,
  .bt-articles-card h3 {
    font-size: var(--bt-text-4xl);
  }

  .bt-articles-paths {
    margin-top: 48px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .bt-articles-path {
    display: flex;
    padding: 22px 0;
  }

  .bt-articles-path__icon {
    margin-bottom: 16px;
  }

  .bt-articles-path > span:last-child {
    margin-top: 16px;
  }

  .bt-articles-contact .bt-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bt-articles-hero__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .bt-articles-hero__copy > .bt-btn {
    width: 100%;
  }

  .bt-articles-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================================
   Contact page
   ============================================================ */
/* Hallmark · pre-emit critique: P4 H5 E4 S5 R4 V4 */
.bt-contact-page {
  font-family: var(--bt-font-ui);
}

.bt-contact-page + .bt-floating {
  display: none;
}

.bt-contact-page .bt-bottom {
  gap: 0;
  padding-top: 44px;
  padding-bottom: 72px;
}

.bt-contact-page .bt-btn {
  min-height: 50px;
  padding: 11px 20px;
  font-size: var(--bt-text-lg);
  letter-spacing: 0;
}

.bt-contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  width: 100%;
  max-width: var(--bt-content-max);
  margin: -44px auto 0;
  padding: 28px clamp(20px, 4vw, 56px) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
  background: #1d0503;
}

.bt-contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(22, 4, 2, 0.54);
}

.bt-contact-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.bt-contact-hero__inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, var(--bt-content-max));
  min-height: 562px;
  margin-inline: auto;
}

.bt-contact-hero .bt-breadcrumb {
  position: relative;
  z-index: 1;
  font-size: var(--bt-text-base);
  color: #c9b88d;
}

.bt-contact-hero .bt-breadcrumb a {
  color: #dcc783;
}

.bt-contact-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 670px;
  padding: 34px 0 38px;
}

.bt-contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--bt-gold);
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-lg);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.bt-contact-eyebrow .bt-icon {
  font-size: var(--bt-text-2xl);
}

.bt-contact-hero h1 {
  max-width: 14ch;
  margin: 8px 0 14px;
  color: #fff3ce;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-type-page-title);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.bt-contact-hero__copy > p:not(.bt-contact-eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: #e4d6b7;
  font-size: var(--bt-text-xl);
  line-height: 1.75;
}

.bt-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.bt-contact-btn--line {
  border-color: #06b94e;
  background: #06c755;
  color: #081d10;
  box-shadow: 0 10px 26px rgba(6, 199, 85, 0.2);
}

.bt-contact-btn--line .bt-line-mark {
  --bt-line-mark-fill: #071d10;
  --bt-line-mark-text: #06c755;
  font-size: var(--bt-text-6xl);
}

.bt-contact-btn--phone {
  border-color: rgba(255, 243, 206, 0.72);
  background: rgba(22, 4, 2, 0.74);
  color: #fff3ce;
}

.bt-contact-btn--line:hover,
.bt-contact-btn--phone:hover,
.bt-contact-final__phone:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.bt-contact-hero__caption {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #c9b88d;
  font-size: var(--bt-text-base);
  line-height: 1.5;
}

.bt-contact-hero__caption .bt-icon {
  color: var(--bt-gold);
  font-size: var(--bt-text-xl);
}

.bt-contact-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(24, 5, 3, 0.78);
}

.bt-contact-hero__facts > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 16px 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.bt-contact-hero__facts > div:last-child {
  border-right: 0;
}

.bt-contact-hero__facts > div > .bt-icon {
  flex: 0 0 auto;
  color: var(--bt-gold);
  font-size: var(--bt-text-5xl);
}

.bt-contact-hero__facts span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-contact-hero__facts small {
  color: #b8a477;
  font-size: var(--bt-text-base);
  line-height: 1.4;
}

.bt-contact-hero__facts strong {
  color: #fff0c3;
  font-size: var(--bt-text-xl);
  font-weight: 600;
  line-height: 1.45;
}

.bt-contact-channels,
.bt-contact-social,
.bt-contact-prep,
.bt-contact-paths,
.bt-contact-final {
  width: 100%;
  max-width: var(--bt-content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.bt-contact-channels {
  padding-top: 64px;
  padding-bottom: 72px;
  background: #f1f3f2;
}

.bt-contact-section-head,
.bt-contact-channels__grid,
.bt-contact-social__head,
.bt-contact-social__grid,
.bt-contact-prep > *,
.bt-contact-paths > *,
.bt-contact-final > * {
  width: min(100%, var(--bt-content-max));
  margin-inline: auto;
}

.bt-contact-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.bt-contact-section-head h2,
.bt-contact-prep h2,
.bt-contact-final h2 {
  margin: 6px 0 0;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-9xl);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

.bt-contact-channels .bt-contact-eyebrow,
.bt-contact-paths .bt-contact-eyebrow {
  color: #8a6218;
}

.bt-contact-channels .bt-contact-section-head h2,
.bt-contact-paths .bt-contact-section-head h2 {
  color: #25120e;
}

.bt-contact-section-head > p {
  max-width: 52ch;
  margin: 0;
  color: #645d57;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
  text-align: right;
}

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

.bt-contact-channel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 334px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #d8dcda;
  border-top-width: 4px;
  border-radius: 8px;
  background: #ffffff;
  color: #221612;
  box-shadow: 0 16px 36px rgba(29, 35, 32, 0.07);
  transition: transform var(--bt-dur) var(--bt-ease),
    box-shadow var(--bt-dur) var(--bt-ease),
    border-color var(--bt-dur) var(--bt-ease);
}

.bt-contact-channel--line {
  border-top-color: #06c755;
}

.bt-contact-channel--phone {
  border-top-color: #1677c8;
}

.bt-contact-channel--email {
  border-top-color: #c79b3c;
}

.bt-contact-channel:hover {
  transform: translateY(-4px);
  border-color: #b8bebb;
  box-shadow: 0 20px 42px rgba(29, 35, 32, 0.12);
}

.bt-contact-channel:focus-visible,
.bt-contact-path:focus-visible {
  outline: 3px solid #1677c8;
  outline-offset: 3px;
}

.bt-contact-channel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bt-contact-channel__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #eef0ef;
  font-size: var(--bt-text-6xl);
}

.bt-contact-channel--line .bt-contact-channel__icon {
  background: #e1f8e9;
  color: #038839;
}

.bt-contact-channel--line .bt-contact-channel__icon .bt-line-mark {
  --bt-line-mark-fill: #038839;
  --bt-line-mark-text: #e1f8e9;
}

.bt-contact-channel--phone .bt-contact-channel__icon {
  background: #e5f1fb;
  color: #1267ad;
}

.bt-contact-channel--email .bt-contact-channel__icon {
  background: #f8efd8;
  color: #8a6218;
}

.bt-contact-channel__top > small {
  color: #706a65;
  font-size: var(--bt-text-base);
  font-weight: 600;
  line-height: 1.4;
}

.bt-contact-channel__body {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}

.bt-contact-channel__body > strong {
  color: #665f59;
  font-size: var(--bt-text-xl);
  font-weight: 600;
  line-height: 1.4;
}

.bt-contact-channel__body > b {
  overflow-wrap: anywhere;
  margin-top: 3px;
  color: #23120e;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-5xl);
  font-weight: 800;
  line-height: 1.35;
}

.bt-contact-channel__body > span {
  margin-top: 12px;
  color: #625c57;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-contact-channel__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  color: #3e2b25;
  font-size: var(--bt-text-lg);
  font-weight: 700;
}

.bt-contact-channel__action .bt-icon {
  font-size: var(--bt-text-xl);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-contact-channel:hover .bt-contact-channel__action .bt-icon,
.bt-contact-path:hover > span:last-child .bt-icon,
.bt-social-card:hover .bt-social-card__action .bt-icon {
  transform: translateX(3px);
}

.bt-contact-social {
  padding-top: 70px;
  padding-bottom: 76px;
  background: var(--bt-social-paper);
  color: var(--bt-social-ink);
}

.bt-contact-social__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 28px;
}

.bt-contact-social__head .bt-contact-eyebrow {
  color: var(--bt-gold-deep);
}

.bt-contact-social__head h2 {
  max-width: none;
  margin: 6px 0 0;
  color: var(--bt-social-ink);
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-9xl);
  font-style: normal;
  font-weight: 800;
  line-height: 1.28;
}

.bt-contact-social__head h2 span {
  display: block;
}

.bt-contact-social__head > p {
  margin: 0;
  color: var(--bt-social-muted);
  font-size: var(--bt-text-xl);
  line-height: 1.7;
  text-align: right;
}

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

.bt-social-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--bt-social-line);
  border-left: 5px solid var(--bt-gold);
  border-radius: var(--bt-radius-sm);
  background: var(--bt-social-paper);
  color: var(--bt-social-ink);
  box-shadow: 0 14px 34px rgba(37, 18, 14, 0.08);
  transition: transform var(--bt-dur) var(--bt-ease),
    box-shadow var(--bt-dur) var(--bt-ease),
    border-color var(--bt-dur) var(--bt-ease);
}

.bt-social-card--facebook {
  grid-column: 1 / -1;
  min-height: 184px;
  border-left-color: var(--bt-social-facebook);
}

.bt-social-card--instagram {
  border-left-color: var(--bt-social-instagram);
}

.bt-social-card--tiktok {
  border-left-color: var(--bt-social-tiktok);
}

.bt-social-card:hover {
  transform: translateY(-3px);
  border-color: var(--bt-gold);
  box-shadow: 0 20px 44px rgba(37, 18, 14, 0.13);
}

.bt-social-card:focus-visible {
  outline: 3px solid var(--bt-gold);
  outline-offset: 3px;
}

.bt-social-card__brand {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: var(--bt-radius-sm);
  background: var(--bt-social-ink);
  color: var(--bt-social-paper);
  font-size: var(--bt-text-display-sm);
}

.bt-social-card--facebook .bt-social-card__brand {
  background: var(--bt-social-facebook);
}

.bt-social-card--instagram .bt-social-card__brand {
  background: var(--bt-social-instagram);
}

.bt-social-card--tiktok .bt-social-card__brand {
  background: var(--bt-social-tiktok);
}

.bt-social-card__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-social-card__copy small {
  color: var(--bt-social-muted);
  font-size: var(--bt-text-base);
  font-weight: 600;
}

.bt-social-card__copy strong {
  overflow-wrap: anywhere;
  color: var(--bt-social-ink);
  font-size: var(--bt-text-5xl);
  line-height: 1.35;
}

.bt-social-card--facebook .bt-social-card__copy strong {
  font-size: var(--bt-text-8xl);
}

.bt-social-card__copy span {
  margin-top: 3px;
  color: var(--bt-social-muted);
  font-size: var(--bt-text-lg);
}

.bt-social-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--bt-social-line);
  border-radius: var(--bt-radius-sm);
  color: var(--bt-social-ink);
  font-size: var(--bt-text-lg);
  font-weight: 700;
  white-space: nowrap;
}

.bt-social-card__action .bt-icon {
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-contact-prep {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 64px;
  padding-top: 70px;
  padding-bottom: 70px;
  background: #290805;
}

.bt-contact-prep__intro {
  width: 100%;
}

.bt-contact-prep h2 {
  max-width: 20ch;
  color: #fff0c3;
}

.bt-contact-prep__intro > p:not(.bt-contact-eyebrow) {
  max-width: 46ch;
  margin: 16px 0 0;
  color: #c5b58f;
  font-size: var(--bt-text-xl);
  line-height: 1.75;
}

.bt-contact-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 390px;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.34);
  border-bottom: 1px solid rgba(212, 175, 55, 0.34);
}

.bt-contact-hours > .bt-icon {
  flex: 0 0 auto;
  color: var(--bt-gold);
  font-size: var(--bt-text-7xl);
}

.bt-contact-hours > span {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 1px 9px;
}

.bt-contact-hours small {
  grid-column: 1 / -1;
  color: #b6a477;
  font-size: var(--bt-text-base);
}

.bt-contact-hours strong,
.bt-contact-hours b {
  color: #fff0c3;
  font-size: var(--bt-text-xl);
  line-height: 1.5;
}

.bt-contact-prep__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  list-style: none;
}

.bt-contact-prep__list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.bt-contact-prep__list li > span {
  color: var(--bt-gold);
  font-size: var(--bt-text-lg);
  font-weight: 700;
  line-height: 1.5;
}

.bt-contact-prep__list h3 {
  margin: 0;
  color: #fff0c3;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.bt-contact-prep__list p {
  margin: 6px 0 0;
  color: #bbaa83;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-contact-prep__list li > .bt-icon {
  margin-top: 3px;
  color: #06c755;
  font-size: var(--bt-text-3xl);
}

.bt-contact-paths {
  padding-top: 66px;
  padding-bottom: 70px;
  background: #ffffff;
}

.bt-contact-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8d3ce;
  border-bottom: 1px solid #d8d3ce;
}

.bt-contact-path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 26px;
  border-right: 1px solid #d8d3ce;
  color: #25120e;
  transition: background var(--bt-dur) var(--bt-ease);
}

.bt-contact-path:last-child {
  border-right: 0;
}

.bt-contact-path:hover {
  background: #f4f6f5;
}

.bt-contact-path__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid #9b762d;
  border-radius: 8px;
  background: #351008;
  color: #f3d77d;
  font-size: var(--bt-text-5xl);
}

.bt-contact-path > small {
  color: #8a6218;
  font-size: var(--bt-text-base);
  font-weight: 700;
  line-height: 1.5;
}

.bt-contact-path h3 {
  margin: 5px 0 0;
  color: #25120e;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.bt-contact-path p {
  margin: 9px 0 0;
  color: #655e58;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-contact-path > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: #71351d;
  font-size: var(--bt-text-lg);
  font-weight: 700;
}

.bt-contact-path > span:last-child .bt-icon {
  font-size: var(--bt-text-xl);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-contact-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: var(--bt-content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  padding-top: 46px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  background: #360b07;
}

.bt-contact-final > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin-inline: 0;
}

.bt-contact-final h2 {
  color: #fff0c3;
}

.bt-contact-final p:not(.bt-contact-eyebrow) {
  margin: 9px 0 0;
  color: #c5b58f;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-contact-final__actions {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 10px;
  width: auto;
  margin-inline: 0;
}

.bt-contact-final__actions .bt-btn {
  white-space: nowrap;
}

.bt-contact-final__phone {
  border-color: var(--bt-gold);
  background: transparent;
  color: #fff0c3;
}

@media (max-width: 1024px) {
  .bt-contact-hero::after {
    background: rgba(22, 4, 2, 0.64);
  }

  .bt-contact-hero__media {
    object-position: 62% center;
  }

  .bt-contact-prep {
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
  }

  .bt-contact-section-head > p {
    max-width: 44ch;
  }
}

@media (max-width: 900px) {
  .bt-contact-hero__facts > div {
    align-items: flex-start;
    padding: 14px;
  }

  .bt-contact-hero__facts > div > .bt-icon {
    font-size: var(--bt-text-4xl);
  }

  .bt-contact-prep {
    grid-template-columns: 1fr;
  }

  .bt-contact-prep h2 {
    max-width: 24ch;
  }

  .bt-contact-hours {
    margin-top: 22px;
  }

  .bt-contact-social__head {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .bt-contact-social__head > p {
    text-align: left;
  }

  .bt-social-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .bt-social-card__brand {
    width: 64px;
    height: 64px;
  }

  .bt-social-card__action {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .bt-contact-page .bt-bottom {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .bt-contact-hero {
    min-height: 592px;
    margin-top: -28px;
    padding-top: 20px;
  }

  .bt-contact-hero__inner {
    min-height: 572px;
  }

  .bt-contact-hero__copy {
    padding: 22px 0 24px;
  }

  .bt-contact-hero h1 {
    max-width: 12ch;
    margin-top: 7px;
    font-size: var(--bt-text-display-sm);
    line-height: 1.18;
  }

  .bt-contact-hero__copy > p:not(.bt-contact-eyebrow) {
    max-width: 48ch;
    font-size: var(--bt-text-xl);
    line-height: 1.68;
  }

  .bt-contact-hero__actions {
    margin-top: 18px;
  }

  .bt-contact-hero__caption {
    margin-top: 12px;
  }

  .bt-contact-hero__facts > div {
    flex-direction: column;
    gap: 6px;
    padding: 12px 10px;
  }

  .bt-contact-hero__facts strong {
    font-size: var(--bt-text-lg);
  }

  .bt-contact-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .bt-contact-section-head > p {
    max-width: 56ch;
    text-align: left;
  }

  .bt-contact-channels,
  .bt-contact-social,
  .bt-contact-prep,
  .bt-contact-paths {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .bt-contact-channels__grid,
  .bt-contact-social__grid,
  .bt-contact-paths__grid {
    grid-template-columns: 1fr;
  }

  .bt-social-card--facebook {
    grid-column: auto;
  }

  .bt-contact-channel {
    min-height: 0;
  }

  .bt-contact-path {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #d8d3ce;
  }

  .bt-contact-path:last-child {
    border-bottom: 0;
  }

  .bt-contact-final {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .bt-contact-final__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .bt-contact-page .bt-btn {
    min-height: 48px;
    padding-inline: 14px;
  }

  .bt-contact-hero {
    min-height: 604px;
  }

  .bt-contact-hero::after {
    background: rgba(22, 4, 2, 0.72);
  }

  .bt-contact-hero__inner {
    min-height: 584px;
  }

  .bt-contact-hero__media {
    object-position: 68% center;
  }

  .bt-contact-hero .bt-breadcrumb,
  .bt-contact-hero__facts small,
  .bt-contact-hero__caption {
    font-size: var(--bt-text-base);
  }

  .bt-contact-hero__actions {
    width: 100%;
  }

  .bt-contact-hero__actions .bt-btn {
    flex: 1 1 auto;
  }

  .bt-contact-hero__facts > div {
    padding: 10px 8px;
  }

  .bt-contact-hero__facts > div > .bt-icon {
    font-size: var(--bt-text-3xl);
  }

  .bt-contact-hero__facts strong {
    font-size: var(--bt-text-base);
    line-height: 1.4;
  }

  .bt-contact-section-head h2,
  .bt-contact-prep h2,
  .bt-contact-final h2 {
    font-size: var(--bt-text-7xl);
  }

  .bt-contact-channel {
    padding: 20px;
  }

  .bt-contact-channel__body > b {
    font-size: var(--bt-text-4xl);
  }

  .bt-contact-social__head h2 {
    font-size: var(--bt-text-7xl);
    overflow-wrap: anywhere;
  }

  .bt-contact-social__head h2 span {
    display: inline;
  }

  .bt-contact-social__head h2 span + span::before {
    content: " ";
  }

  .bt-social-card,
  .bt-social-card--facebook {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
    min-height: 0;
    padding: 18px;
  }

  .bt-social-card__brand {
    width: 52px;
    height: 52px;
    font-size: var(--bt-text-6xl);
  }

  .bt-social-card--facebook .bt-social-card__copy strong,
  .bt-social-card__copy strong {
    font-size: var(--bt-text-3xl);
  }

  .bt-social-card__action {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  .bt-contact-prep {
    gap: 34px;
  }

  .bt-contact-prep__list li {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .bt-contact-hours > span {
    grid-template-columns: 1fr;
  }

  .bt-contact-hours small {
    grid-column: auto;
  }

  .bt-contact-final__actions,
  .bt-contact-final__actions .bt-btn {
    width: 100%;
  }

  .bt-contact-final__actions {
    flex-direction: column;
  }
}

/* ============================================================
   About page
   ============================================================ */
.bt-about-page {
  font-family: var(--bt-font-ui);
}

.bt-about-page + .bt-floating {
  display: none;
}

.bt-about-page .bt-bottom {
  gap: 0;
  padding-top: 44px;
  padding-bottom: 72px;
}

.bt-about-page .bt-btn {
  min-height: 50px;
  padding: 11px 20px;
  font-size: var(--bt-text-lg);
  letter-spacing: 0;
}

.bt-about-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  margin: -44px calc(0px - var(--bt-content-pad)) 0;
  padding: 28px var(--bt-content-pad) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.34);
  background: #1b0503;
}

.bt-about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(24, 4, 2, 0.68);
}

.bt-about-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.bt-about-hero__inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, var(--bt-content-max));
  min-height: 562px;
  margin-inline: auto;
}

.bt-about-hero .bt-breadcrumb {
  position: relative;
  z-index: 1;
  font-size: var(--bt-text-base);
  color: #c8b68a;
}

.bt-about-hero .bt-breadcrumb a {
  color: #ddc883;
}

.bt-about-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 680px;
  padding: 34px 0 38px;
}

.bt-about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--bt-gold);
  font-family: var(--bt-font-ui);
  font-size: var(--bt-text-lg);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.bt-about-eyebrow .bt-icon {
  font-size: var(--bt-text-2xl);
}

.bt-about-hero h1 {
  margin: 8px 0 14px;
  color: #fff3ce;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-type-page-title);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.bt-about-hero__copy > p:not(.bt-about-eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: #e2d4b4;
  font-size: var(--bt-text-xl);
  line-height: 1.75;
}

.bt-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.bt-about-btn--ghost {
  border-color: rgba(255, 243, 206, 0.72);
  background: rgba(24, 4, 2, 0.76);
  color: #fff3ce;
}

.bt-about-btn--ghost:hover,
.bt-about-phone-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.bt-about-hero__caption {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: #c8b68a;
  font-size: var(--bt-text-base);
  line-height: 1.5;
}

.bt-about-hero__caption .bt-icon {
  color: var(--bt-gold);
  font-size: var(--bt-text-xl);
}

.bt-about-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(22, 4, 2, 0.82);
}

.bt-about-hero__facts > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 16px 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.bt-about-hero__facts > div:last-child {
  border-right: 0;
}

.bt-about-hero__facts > div > .bt-icon {
  flex: 0 0 auto;
  color: var(--bt-gold);
  font-size: var(--bt-text-5xl);
}

.bt-about-hero__facts span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-about-hero__facts small {
  color: #b8a476;
  font-size: var(--bt-text-base);
  line-height: 1.4;
}

.bt-about-hero__facts strong {
  color: #fff0c3;
  font-size: var(--bt-text-xl);
  font-weight: 600;
  line-height: 1.45;
}

.bt-about-story,
.bt-about-services,
.bt-about-process,
.bt-about-principles,
.bt-about-paths,
.bt-about-final {
  margin-inline: calc(0px - var(--bt-content-pad));
  padding-inline: max(
    var(--bt-content-pad),
    calc((100vw - var(--bt-content-max)) / 2)
  );
}

.bt-about-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  gap: 64px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 72px;
  background: #eef1ef;
  color: #25120e;
}

.bt-about-story__copy h2,
.bt-about-section-head h2,
.bt-about-process h2,
.bt-about-principles h2,
.bt-about-final h2 {
  margin: 6px 0 0;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-9xl);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-wrap: balance;
}

.bt-about-story .bt-about-eyebrow,
.bt-about-process .bt-about-eyebrow,
.bt-about-principles .bt-about-eyebrow {
  color: #8a6218;
}

.bt-about-story__copy h2 {
  max-width: 22ch;
  color: #25120e;
}

.bt-about-story__copy > p:not(.bt-about-eyebrow) {
  max-width: 64ch;
  margin: 16px 0 0;
  color: #5d5752;
  font-size: var(--bt-text-xl);
  line-height: 1.82;
}

.bt-about-story__copy blockquote {
  max-width: 31ch;
  margin: 24px 0 0;
  padding: 5px 0 5px 18px;
  border-left: 3px solid #a97d25;
  color: #4a2116;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-3xl);
  font-weight: 700;
  line-height: 1.55;
}

.bt-about-story__figure {
  position: relative;
  min-width: 0;
  margin: 0;
}

.bt-about-story__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid #c8cbc9;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(31, 29, 27, 0.15);
}

.bt-about-story__figure figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  color: #716a64;
  font-size: var(--bt-text-base);
  line-height: 1.5;
}

.bt-about-story__figure figcaption .bt-icon {
  color: #8a6218;
  font-size: var(--bt-text-xl);
}

.bt-about-services {
  padding-top: 66px;
  padding-bottom: 70px;
  background: #290805;
}

.bt-about-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.bt-about-services .bt-about-section-head h2,
.bt-about-paths .bt-about-section-head h2 {
  color: #fff0c3;
}

.bt-about-section-head > p {
  max-width: 52ch;
  margin: 0;
  color: #bbaa83;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
  text-align: right;
}

.bt-about-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(212, 175, 55, 0.34);
  border-bottom: 1px solid rgba(212, 175, 55, 0.34);
}

.bt-about-service {
  min-width: 0;
  padding: 26px 24px 28px;
  border-right: 1px solid rgba(212, 175, 55, 0.26);
}

.bt-about-service:last-child {
  border-right: 0;
}

.bt-about-service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bt-about-service__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  border-radius: 8px;
  background: #3a0d08;
  color: #f2d474;
  font-size: var(--bt-text-5xl);
}

.bt-about-service__top small {
  color: #a98d51;
  font-size: var(--bt-text-base);
  font-weight: 700;
}

.bt-about-service h3 {
  margin: 20px 0 0;
  color: #fff0c3;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.bt-about-service p {
  margin: 10px 0 0;
  color: #bbaa83;
  font-size: var(--bt-text-xl);
  line-height: 1.72;
}

.bt-about-process {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  gap: 70px;
  padding-top: 68px;
  padding-bottom: 70px;
  background: #ffffff;
  color: #25120e;
}

.bt-about-process h2 {
  max-width: 17ch;
  color: #25120e;
}

.bt-about-process__intro > p:not(.bt-about-eyebrow) {
  max-width: 48ch;
  margin: 16px 0 0;
  color: #625b56;
  font-size: var(--bt-text-xl);
  line-height: 1.78;
}

.bt-about-process__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: #7b351e;
  font-size: var(--bt-text-lg);
  font-weight: 700;
}

.bt-about-process__link .bt-icon {
  font-size: var(--bt-text-xl);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-about-process__link:hover .bt-icon {
  transform: translateX(3px);
}

.bt-about-process__steps {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d9d4cf;
  list-style: none;
}

.bt-about-process__steps li {
  display: grid;
  grid-template-columns: 42px 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #d9d4cf;
}

.bt-about-process__number {
  color: #9a711e;
  font-size: var(--bt-text-lg);
  font-weight: 700;
}

.bt-about-process__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #9b762d;
  border-radius: 8px;
  background: #351008;
  color: #f3d77d;
  font-size: var(--bt-text-4xl);
}

.bt-about-process__steps li > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-about-process__steps strong {
  color: #29140f;
  font-size: var(--bt-text-3xl);
  font-weight: 700;
  line-height: 1.45;
}

.bt-about-process__steps small {
  margin-top: 3px;
  color: #6b645e;
  font-size: var(--bt-text-xl);
  line-height: 1.65;
}

.bt-about-principles {
  padding-top: 66px;
  padding-bottom: 70px;
  background: #edf1ef;
  color: #25120e;
}

.bt-about-principles > header {
  max-width: 760px;
}

.bt-about-principles h2 {
  color: #25120e;
}

.bt-about-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.bt-about-principles__grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid #d3d9d6;
  border-radius: 8px;
  background: #ffffff;
}

.bt-about-principles__grid article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #e6eee9;
  color: #176347;
  font-size: var(--bt-text-5xl);
}

.bt-about-principles__grid h3 {
  margin: 18px 0 0;
  color: #25120e;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

.bt-about-principles__grid p {
  margin: 9px 0 0;
  color: #625b56;
  font-size: var(--bt-text-xl);
  line-height: 1.72;
}

.bt-about-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 20px 0;
  border-top: 1px solid #c8cfcb;
  border-bottom: 1px solid #c8cfcb;
}

.bt-about-note > .bt-icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #176347;
  font-size: var(--bt-text-5xl);
}

.bt-about-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.bt-about-note strong {
  color: #25120e;
  font-size: var(--bt-text-xl);
  line-height: 1.5;
}

.bt-about-note span {
  margin-top: 3px;
  color: #625b56;
  font-size: var(--bt-text-xl);
  line-height: 1.65;
}

.bt-about-paths {
  padding-top: 66px;
  padding-bottom: 70px;
  background: #260705;
}

.bt-about-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(212, 175, 55, 0.34);
  border-bottom: 1px solid rgba(212, 175, 55, 0.34);
}

.bt-about-path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 26px;
  border-right: 1px solid rgba(212, 175, 55, 0.26);
  color: #fff0c3;
  transition: background var(--bt-dur) var(--bt-ease);
}

.bt-about-path:last-child {
  border-right: 0;
}

.bt-about-path:hover {
  background: rgba(255, 255, 255, 0.04);
}

.bt-about-path:focus-visible {
  outline: 3px solid #06c755;
  outline-offset: 3px;
}

.bt-about-path__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid #a97d25;
  border-radius: 8px;
  background: #3a0d08;
  color: #f3d77d;
  font-size: var(--bt-text-5xl);
}

.bt-about-path > small {
  color: #bca467;
  font-size: var(--bt-text-base);
  font-weight: 700;
  line-height: 1.5;
}

.bt-about-path h3 {
  margin: 5px 0 0;
  color: #fff0c3;
  font-family: var(--bt-font-heading);
  font-size: var(--bt-text-4xl);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.bt-about-path p {
  margin: 9px 0 0;
  color: #bbaa83;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-about-path > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: #f3d77d;
  font-size: var(--bt-text-lg);
  font-weight: 700;
}

.bt-about-path > span:last-child .bt-icon {
  font-size: var(--bt-text-xl);
  transition: transform var(--bt-dur) var(--bt-ease);
}

.bt-about-path:hover > span:last-child .bt-icon {
  transform: translateX(3px);
}

.bt-about-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 46px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(212, 175, 55, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  background: #360b07;
}

.bt-about-final > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.bt-about-final .bt-about-eyebrow {
  color: var(--bt-gold);
}

.bt-about-final h2 {
  color: #fff0c3;
}

.bt-about-final p:not(.bt-about-eyebrow) {
  margin: 9px 0 0;
  color: #c5b58f;
  font-size: var(--bt-text-xl);
  line-height: 1.7;
}

.bt-about-final__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.bt-about-final__actions .bt-btn {
  white-space: nowrap;
}

.bt-about-line-btn {
  border-color: var(--bt-gold);
  background: var(--bt-grad-gold);
  color: #351008;
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.2);
}

.bt-about-line-btn .bt-line-mark {
  --bt-line-mark-fill: #351008;
  --bt-line-mark-text: var(--bt-gold-soft);
  font-size: var(--bt-text-6xl);
}

.bt-about-phone-btn {
  border-color: var(--bt-gold);
  background: transparent;
  color: #fff0c3;
}

@media (max-width: 1120px) {
  .bt-about-story {
    gap: 40px;
  }

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

  .bt-about-service:nth-child(2) {
    border-right: 0;
  }

  .bt-about-service:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.26);
  }

  .bt-about-process {
    gap: 46px;
  }
}

@media (max-width: 900px) {
  .bt-about-hero::after {
    background: rgba(24, 4, 2, 0.74);
  }

  .bt-about-hero__media {
    object-position: 58% center;
  }

  .bt-about-hero__facts > div {
    align-items: flex-start;
    padding: 14px;
  }

  .bt-about-story,
  .bt-about-process {
    grid-template-columns: 1fr;
  }

  .bt-about-story__copy h2,
  .bt-about-process h2 {
    max-width: 24ch;
  }

  .bt-about-story__figure {
    width: 100%;
  }

  .bt-about-principles__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bt-about-page .bt-bottom {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .bt-about-hero {
    min-height: 604px;
    margin-top: -28px;
    padding-top: 20px;
  }

  .bt-about-hero__inner {
    min-height: 584px;
  }

  .bt-about-hero__copy {
    padding: 22px 0 24px;
  }

  .bt-about-hero h1 {
    margin-top: 7px;
    font-size: var(--bt-text-display-sm);
    line-height: 1.18;
  }

  .bt-about-hero__copy > p:not(.bt-about-eyebrow) {
    max-width: 48ch;
    line-height: 1.68;
  }

  .bt-about-hero__actions {
    margin-top: 18px;
  }

  .bt-about-hero__facts > div {
    flex-direction: column;
    gap: 6px;
    padding: 11px 9px;
  }

  .bt-about-hero__facts > div > .bt-icon {
    font-size: var(--bt-text-4xl);
  }

  .bt-about-hero__facts strong {
    font-size: var(--bt-text-lg);
  }

  .bt-about-story,
  .bt-about-services,
  .bt-about-process,
  .bt-about-principles,
  .bt-about-paths {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .bt-about-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .bt-about-section-head > p {
    max-width: 56ch;
    text-align: left;
  }

  .bt-about-services__grid,
  .bt-about-paths__grid {
    grid-template-columns: 1fr;
  }

  .bt-about-service,
  .bt-about-service:nth-child(2) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.26);
  }

  .bt-about-service:last-child {
    border-bottom: 0;
  }

  .bt-about-process {
    gap: 38px;
  }

  .bt-about-process__steps li {
    grid-template-columns: 34px 44px minmax(0, 1fr);
    gap: 10px;
  }

  .bt-about-path {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.26);
  }

  .bt-about-path:last-child {
    border-bottom: 0;
  }

  .bt-about-final {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .bt-about-final__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .bt-about-page .bt-btn {
    min-height: 48px;
    padding-inline: 14px;
  }

  .bt-about-hero {
    min-height: 628px;
  }

  .bt-about-hero__inner {
    min-height: 608px;
  }

  .bt-about-hero__media {
    object-position: 62% center;
  }

  .bt-about-hero .bt-breadcrumb,
  .bt-about-hero__facts small,
  .bt-about-hero__caption {
    font-size: var(--bt-text-base);
  }

  .bt-about-hero__actions,
  .bt-about-hero__actions .bt-btn {
    width: 100%;
  }

  .bt-about-hero__actions {
    flex-direction: column;
  }

  .bt-about-hero__facts > div {
    padding: 10px 7px;
  }

  .bt-about-hero__facts > div > .bt-icon {
    font-size: var(--bt-text-3xl);
  }

  .bt-about-hero__facts strong {
    font-size: var(--bt-text-base);
    line-height: 1.4;
  }

  .bt-about-story__copy h2,
  .bt-about-section-head h2,
  .bt-about-process h2,
  .bt-about-principles h2,
  .bt-about-final h2 {
    font-size: var(--bt-text-7xl);
  }

  .bt-about-story__copy blockquote {
    font-size: var(--bt-text-2xl);
  }

  .bt-about-process__steps strong {
    font-size: var(--bt-text-2xl);
  }

  .bt-about-process__steps small {
    font-size: var(--bt-text-lg);
  }

  .bt-about-principles__grid article {
    padding: 20px;
  }

  .bt-about-note {
    gap: 10px;
  }

  .bt-about-final__actions,
  .bt-about-final__actions .bt-btn {
    width: 100%;
  }

  .bt-about-final__actions {
    flex-direction: column;
  }
}

/* ============================================================
   Sitewide responsive consistency
   ============================================================ */
:where(
  .bt-header__inner,
  .bt-main,
  .bt-bottom,
  .bt-section,
  .bt-section__head,
  .bt-footer__grid > *
) {
  min-width: 0;
}

:where(h1, h2, h3, h4, p, a, button, label, dt, dd) {
  overflow-wrap: anywhere;
}

@media (max-width: 1280px) {
  .bt-plate-card,
  .bt-catalog-spotlight__plate,
  .bt-duang-preview-frame,
  .bt-single__plate {
    padding: 3px;
  }
}

@media (max-width: 991px) {
  .bt-plate-card,
  .bt-catalog-spotlight__plate,
  .bt-duang-preview-frame,
  .bt-single__plate {
    padding: 2px;
    border-radius: 7px;
  }
}

@media (max-width: 1500px) {
  .bt-nav,
  .bt-header__actions .bt-btn {
    display: none;
  }

  .bt-burger {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  :root {
    --bt-content-pad: 28px;
  }

  .bt-bottom {
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bt-footer {
    margin-top: 16px;
  }
}

@media (max-width: 760px) {
  .bt-bottom {
    gap: 34px;
    padding-top: 36px;
  }

  .bt-section {
    padding: 18px;
  }

  .bt-section__head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .bt-floating {
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .bt-floating-advisor {
    position: absolute;
    right: 0;
    bottom: 52px;
    width: 52px;
    height: 52px;
  }

  .bt-floating-advisor__bubble {
    display: none;
  }

  .bt-floating-advisor__avatar {
    width: 52px;
    height: 52px;
    margin: 0;
    border-width: 3px;
  }

  .bt-floating-advisor__avatar::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .bt-floating-advisor__line {
    left: -5px;
    bottom: -3px;
    width: 21px;
    height: 21px;
    border-width: 2px;
  }

  .bt-floating-advisor__line .bt-line-mark {
    font-size: 15px;
  }

  .bt-floating .bt-fab--dark {
    display: none;
  }

  .bt-fab {
    width: 44px;
    height: 44px;
    font-size: var(--bt-text-4xl);
  }

  .bt-proof-slider-btn {
    width: 44px;
    height: 44px;
  }

  .bt-proof-review-dots {
    min-height: 44px;
  }

  .bt-single-actions a,
  .bt-single-actions button {
    min-height: 46px;
  }
}

@media (max-width: 600px) {
  :root {
    --bt-content-pad: 18px;
    --bt-type-hero-title: 34px;
    --bt-type-page-title: 34px;
    --bt-type-single-title: 34px;
    --bt-type-proof-title: 30px;
    --bt-type-proof-subtitle: 28px;
    --bt-type-article-title: 20px;
    --bt-type-article-feature-title: 24px;
  }

  .bt-header__inner {
    gap: 14px;
    padding: 11px var(--bt-content-pad);
  }

  .bt-header__tagline {
    display: block;
    flex: 1;
    min-width: 0;
    color: var(--bt-gold-bright);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    text-wrap: balance;
  }

  .bt-logo__image {
    width: 52px;
    height: 52px;
    border-radius: 8px;
  }

  .bt-burger {
    width: 44px;
    height: 44px;
  }

  .bt-section {
    padding: 18px 16px;
  }

  .bt-section__title:is(h1) {
    font-size: var(--bt-text-5xl);
  }

  .bt-plate-grid,
  .bt-cat-grid {
    gap: 18px 12px;
  }

  .bt-plate-card-link {
    gap: 4px;
  }

  .bt-plate-grid .bt-plate-card {
    padding: 1px;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  }

  .bt-plate-grid .bt-tabien__num {
    top: 31%;
    gap: 0.2em;
    font-size: clamp(42px, 30.5cqi, 58px);
    text-shadow: none;
  }

  .bt-plate-grid .bt-tabien__letters,
  .bt-plate-grid .bt-tabien__digits {
    letter-spacing: 0.01em;
    margin-right: -0.01em;
  }

  .bt-plate-grid .bt-tabien__prov {
    top: 72.5%;
    font-size: clamp(15px, 10.8cqi, 20px);
    font-weight: 600;
    text-shadow: none;
  }

  .bt-plate-grid .bt-plate-price,
  .bt-plate-grid--catalog .bt-plate-price {
    font-size: var(--bt-text-xs);
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
  }

  .bt-plate-grid .bt-plate-price small,
  .bt-plate-grid--catalog .bt-plate-price small {
    font-size: var(--bt-text-2xs);
  }

  .bt-footer {
    padding: 36px 18px 28px;
    border-radius: 8px 8px 0 0;
  }

  .bt-footer__grid {
    gap: 28px;
  }

  .bt-fcol__title {
    margin-bottom: 12px;
  }

  .bt-fcol ul {
    gap: 4px;
  }

  .bt-fcol a {
    min-height: 40px;
  }

  .bt-fab {
    width: 44px;
    height: 44px;
    font-size: var(--bt-text-4xl);
  }

  .bt-proof-slider-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 520px) {
  /* Hallmark mobile pass: balanced two-column category labels without oversized cards. */
  .bt-cat-grid {
    gap: 12px 10px;
  }

  .bt-cat-card {
    justify-content: center;
    min-width: 0;
    min-height: 178px;
    gap: 9px;
    padding: 18px 9px 15px;
  }

  .bt-cat-card__icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    font-size: var(--bt-text-3xl);
  }

  .bt-cat-card__title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.5em;
    font-size: clamp(14px, 4.15vw, 17px);
    line-height: 1.25;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .bt-cat-card__count {
    font-size: 13px;
    line-height: 1.25;
  }

  .bt-catalog-stat small {
    font-size: var(--bt-text-xs);
  }

  .bt-copyright__text {
    line-height: 1.7;
  }
}

@media (max-width: 360px) {
  .bt-cat-card {
    min-height: 166px;
    padding-inline: 7px;
  }

  .bt-cat-card__icon {
    width: 48px;
    height: 48px;
  }

  .bt-cat-card__title {
    font-size: 13px;
  }

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

  .bt-plate-grid .bt-tabien__num {
    font-size: clamp(40px, 30cqi, 52px);
  }

  .bt-plate-grid .bt-tabien__prov {
    font-size: clamp(14px, 10.6cqi, 18px);
  }
}

/* Province and birthday discovery shortcuts */
.bt-discovery {
  margin: 32px 0;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--bt-border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(74, 15, 10, 0.98), rgba(49, 8, 5, 0.98));
  box-shadow: 0 18px 44px rgba(31, 3, 4, 0.22);
}

.bt-discovery__head {
  margin-bottom: 22px;
  text-align: center;
}

.bt-discovery__head p {
  margin: 0 0 4px;
  color: var(--bt-gold-deep);
  font-weight: 700;
}

.bt-discovery__head h2 {
  margin: 0;
  color: var(--bt-gold-bright);
  font-size: clamp(26px, 3vw, 38px);
}

.bt-province-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bt-province-card {
  display: grid;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(232, 196, 86, 0.55);
  border-radius: 16px;
  color: var(--bt-gold-bright);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 211, 86, 0.18), transparent 38%),
    rgba(126, 20, 23, 0.58);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bt-province-card:hover {
  transform: translateY(-3px);
  border-color: var(--bt-gold-bright);
  background-color: rgba(160, 25, 28, 0.72);
}

.bt-province-card small {
  color: var(--bt-gold-deep);
}

.bt-province-card strong {
  align-self: center;
  font-size: clamp(20px, 2vw, 27px);
}

.bt-province-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--bt-text-sm);
}

.bt-province-card .bt-icon {
  width: 16px;
  height: 16px;
}

.bt-discovery--birthday {
  margin-top: 0;
}

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

.bt-birthday-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 14px 8px 16px;
  border: 1px solid color-mix(in srgb, var(--bt-day-color), transparent 35%);
  border-radius: 16px;
  color: var(--bt-gold-bright);
  text-align: center;
  background: rgba(88, 16, 12, 0.72);
  transition: transform 180ms ease, background 180ms ease;
}

.bt-birthday-card:hover {
  transform: translateY(-3px);
  background: rgba(123, 23, 18, 0.9);
}

.bt-birthday-card__calendar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 7px solid var(--bt-day-color);
  border-radius: 13px;
  color: var(--bt-day-color);
  background: #fff;
  box-shadow: inset 0 -9px 0 #f0f0f0;
}

.bt-birthday-card__calendar strong {
  font-size: 23px;
}

.bt-birthday-card > strong {
  line-height: 1.25;
}

.bt-birthday-card small {
  color: var(--bt-gold-deep);
}

@media (max-width: 1024px) {
  .bt-province-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bt-birthday-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bt-discovery {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .bt-province-grid,
  .bt-birthday-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
  }

  .bt-province-card {
    flex: 0 0 76%;
    scroll-snap-align: start;
  }

  .bt-birthday-card {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
}

.bt-drawer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 4px;
  font-size: var(--bt-text-lg);
  color: var(--bt-gold-bright);
  border-bottom: 1px solid var(--bt-border-faint);
}

.bt-drawer__group {
  display: flex;
  flex-direction: column;
}

.bt-drawer__sub {
  padding-inline-start: 20px;
}

.bt-drawer__sub a {
  min-height: 40px;
  font-size: var(--bt-text-base);
  color: var(--bt-gold-deep);
}

.bt-drawer .bt-header-cta {
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.72);
}

.bt-drawer .bt-header-cta + .bt-header-cta {
  margin-top: 4px;
}

/* Editor-managed content shared by the homepage and code-routed pages. */
.bt-managed-content {
  width: min(100% - 32px, 1800px);
  margin: clamp(26px, 4vw, 64px) auto;
}

.bt-managed-content__inner {
  padding: clamp(24px, 4vw, 56px);
  color: var(--bt-gold-bright);
  background:
    linear-gradient(145deg, rgba(96, 18, 13, 0.97), rgba(49, 8, 5, 0.98));
  border: 1px solid var(--bt-border);
  border-radius: var(--bt-radius-lg);
  box-shadow: var(--bt-shadow);
}

.bt-managed-content__inner > :first-child {
  margin-top: 0;
}

.bt-managed-content__inner > :last-child {
  margin-bottom: 0;
}

.bt-managed-content__inner h2,
.bt-managed-content__inner h3,
.bt-managed-content__inner h4 {
  margin: 1.25em 0 0.55em;
  color: var(--bt-gold-bright);
  line-height: 1.3;
}

.bt-managed-content__inner p,
.bt-managed-content__inner li {
  color: var(--bt-gold-deep);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.85;
}

.bt-managed-content__inner a {
  color: var(--bt-gold-bright);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.bt-managed-content__inner img {
  max-width: 100%;
  height: auto;
  border-radius: var(--bt-radius-md);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Numerology page · light editorial theme
   AIS-inspired section rhythm while preserving Bank Tabien CI.
   ============================================================ */
/* Disabled after restoring the original red-and-gold CI. */
@media (width < 0px) {
.bt-duang-page {
  overflow-x: clip;
  color: #33231f;
  background:
    radial-gradient(circle at 8% 4%, rgba(229, 191, 91, 0.16), transparent 22rem),
    linear-gradient(180deg, #fbf8f1 0%, #f5efe4 52%, #fbf8f2 100%);
}

.bt-duang-page .bt-bottom {
  gap: 0;
}

.bt-duang-intro {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid #eadfc9;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(229, 191, 91, 0.3), transparent 38%),
    linear-gradient(135deg, #fffdf8, #f8edda);
  box-shadow: 0 18px 50px rgba(91, 56, 35, 0.08);
}

.bt-duang-intro::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(#8f1720, #d6ad42);
}

.bt-duang-intro .bt-breadcrumb a,
.bt-duang-intro .bt-breadcrumb span {
  color: #705d53;
}

.bt-duang-intro .bt-breadcrumb .bt-icon {
  color: #aa8129;
}

.bt-duang-page .bt-duang-eyebrow {
  color: #9a7019;
}

.bt-duang-intro__title {
  color: #321d19;
}

.bt-duang-intro__lead {
  color: #66544b;
  font-weight: 400;
}

.bt-duang-page .bt-discovery--birthday {
  margin: 34px 0;
  border-color: #e7d8bd;
  background:
    radial-gradient(circle at 50% -30%, rgba(233, 195, 91, 0.22), transparent 42%),
    #fff;
  box-shadow: 0 14px 42px rgba(71, 45, 29, 0.08);
}

.bt-duang-page .bt-discovery__head p {
  color: #9b761f;
}

.bt-duang-page .bt-discovery__head h2 {
  color: #351f1a;
}

.bt-duang-page .bt-birthday-card {
  border-color: color-mix(in srgb, var(--bt-day-color), #d9cdb9 54%);
  color: #3b2822;
  background: #fbfaf7;
  box-shadow: 0 8px 22px rgba(68, 45, 32, 0.06);
}

.bt-duang-page .bt-birthday-card:hover {
  background: #fff;
  box-shadow: 0 12px 28px rgba(68, 45, 32, 0.11);
}

.bt-duang-page .bt-birthday-card small {
  color: #756157;
}

.bt-duang-workbench {
  border-color: #dfc887;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(72, 43, 28, 0.12);
}

.bt-duang-workbench__head {
  padding: 22px 28px;
  border-color: #eadfc9;
  background: linear-gradient(90deg, #f8edcf, #fffaf0);
}

.bt-duang-workbench__head h2,
.bt-duang-section-head h2 {
  color: #38221c;
}

.bt-duang-workbench__status {
  border-color: #b8dcc3;
  color: #286840;
  background: #eef9f1;
}

.bt-duang-preview-panel {
  border-color: #eadfc9;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(246, 236, 216, 0.88)),
    #f4eee4;
}

.bt-duang-preview-frame {
  box-shadow: 0 18px 34px rgba(64, 40, 26, 0.18);
}

.bt-duang-preview-total {
  border-color: #e3d5bd;
  color: #6f5b51;
}

.bt-duang-preview-total strong {
  color: #8d1820;
}

.bt-duang-preview-note {
  color: #78665d;
}

.bt-duang-calc {
  background: #fff;
}

.bt-duang-field span {
  color: #4b342d;
}

.bt-duang-field input {
  border-color: #d9c9ad;
  background: #fffdf9;
  color: #2e1e1a;
  box-shadow: inset 0 1px 2px rgba(62, 39, 27, 0.04);
}

.bt-duang-field input:hover {
  border-color: #bd9131;
}

.bt-duang-field input:focus {
  border-color: #a87516;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(202, 158, 55, 0.14);
}

.bt-duang-field input::placeholder {
  color: #98877f;
}

.bt-duang-example {
  border-left-color: #8f1720;
  background: #faf1e5;
  color: #755e53;
}

.bt-duang-example strong {
  color: #3e2822;
}

.bt-duang-disclaimer {
  color: #69584f;
}

.bt-duang-result {
  border-color: #dec98c;
  border-left-color: var(--bt-duang-accent);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(72, 43, 28, 0.08);
}

.bt-duang-result__head h2,
.bt-duang-result__overview h3,
.bt-duang-chip h3 {
  color: #36211c;
}

.bt-duang-result__sum {
  background: #fffaf0;
}

.bt-duang-result__sum small {
  color: #725e53;
}

.bt-duang-result__overview p,
.bt-duang-chip p {
  color: #66544b;
  font-weight: 400;
}

.bt-duang-result__grid,
.bt-duang-chip {
  border-color: #e7dac4;
}

.bt-duang-reference {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #e9ddc8;
  border-radius: 24px;
  background: linear-gradient(145deg, #fffdf8, #f8f1e5);
  box-shadow: 0 16px 46px rgba(72, 43, 28, 0.07);
}

.bt-duang-reference__grid,
.bt-duang-method,
.bt-duang-steps li,
.bt-duang-sum-card {
  border-color: #e4d6bf;
}

.bt-duang-method > h3,
.bt-duang-popular > h3 {
  color: #39231d;
}

.bt-duang-method > p,
.bt-duang-steps p,
.bt-duang-sum-card__text {
  color: #6c5950;
  font-weight: 400;
}

.bt-duang-steps li > span {
  border-color: #caa044;
  color: #8f6513;
  background: #fff;
}

.bt-duang-sum-card__num {
  border-color: #caa044;
  background: #6f1017;
  color: #ffe498;
}

.bt-duang-sum-card .bt-icon {
  color: #a27c28;
}

.bt-duang-library__legend {
  border-left-color: #a91520;
  background: #fff;
  box-shadow: 0 10px 30px rgba(72, 43, 28, 0.06);
}

.bt-duang-library__legend span {
  color: #68564d;
}

.bt-duang-library__legend strong {
  color: #7f151c;
}

.bt-duang-letters {
  border: 1px solid #e1d2b8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(72, 43, 28, 0.07);
}

.bt-duang-letters__summary strong {
  color: #38221c;
}

.bt-duang-letters__summary small {
  color: #746158;
}

.bt-duang-letter-row {
  border-color: #eadfc9;
}

.bt-duang-letter-row__val {
  border-color: #c79a37;
  color: #7d121a;
  background: #fff9eb;
}

.bt-duang-letter-row__chars {
  color: #3f2b25;
  font-weight: 500;
}

.bt-duang-library {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #eadfcb;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 184, 70, 0.15), transparent 30%),
    #f6efe4;
}

.bt-duang-library__head h2 {
  color: #341f1a;
}

.bt-duang-library__head p:not(.bt-duang-eyebrow) {
  color: #6b5850;
}

.bt-duang-meaning,
.bt-duang-meaning[open] {
  border-color: #dfd1b9;
  background: #fff;
}

.bt-duang-meaning[open] {
  border-color: #c59a3d;
  box-shadow: 0 12px 30px rgba(75, 47, 30, 0.08);
}

.bt-duang-meaning__num {
  border-color: #c79a37;
  color: #7f151c;
  background: #fff9eb;
}

.bt-duang-meaning__label strong {
  color: #37221c;
}

.bt-duang-meaning__label small,
.bt-duang-meaning__body p {
  color: #6d5a51;
  font-weight: 400;
}

.bt-duang-meaning__score,
.bt-duang-meaning__body a {
  color: #8a6010;
}

.bt-duang-meaning__body {
  border-color: #eadfc9;
}

.bt-duang-cta {
  border-color: #b88429;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(234, 192, 73, 0.2), transparent 35%),
    linear-gradient(135deg, #6a0d14, #3b0908);
  box-shadow: 0 18px 44px rgba(80, 11, 14, 0.18);
}

.bt-duang-cta h2 {
  color: #ffe8a6;
}

.bt-duang-page .bt-managed-content__inner {
  color: #34211c;
  border-color: #e4d4b9;
  background: #fff;
  box-shadow: 0 14px 40px rgba(72, 43, 28, 0.08);
}

.bt-duang-page .bt-managed-content__inner h2,
.bt-duang-page .bt-managed-content__inner h3,
.bt-duang-page .bt-managed-content__inner h4 {
  color: #34211c;
}

.bt-duang-page .bt-managed-content__inner p,
.bt-duang-page .bt-managed-content__inner li {
  color: #67554c;
}

.bt-duang-page .bt-managed-content__inner a {
  color: #86151d;
}

@media (max-width: 700px) {
  .bt-duang-page .bt-bottom,
  .bt-duang-page .bt-bottom > *,
  .bt-duang-intro,
  .bt-duang-workbench,
  .bt-duang-reference,
  .bt-duang-library {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .bt-duang-intro {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .bt-duang-intro__copy,
  .bt-duang-intro__lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .bt-duang-page .bt-discovery--birthday,
  .bt-duang-workbench,
  .bt-duang-reference,
  .bt-duang-library {
    border-radius: 18px;
  }

  .bt-duang-page .bt-birthday-grid {
    scrollbar-width: thin;
    scrollbar-color: #b58b31 #eee3d2;
  }

  .bt-duang-page .bt-birthday-card {
    flex-basis: min(72%, 220px);
  }

  .bt-duang-reference,
  .bt-duang-library {
    padding: 24px 18px;
  }

  .bt-duang-workbench__head {
    padding: 18px;
  }

  .bt-duang-workbench__head h2,
  .bt-duang-discovery__head h2 {
    max-width: 100%;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
}
}

/* Floating CTA advisor final responsive override. */
.bt-floating-advisor {
  width: 88px;
  height: 88px;
}

.bt-floating-advisor__bubble {
  right: 100px;
}

.bt-floating-advisor__avatar {
  width: 88px;
  height: 88px;
}

.bt-floating-advisor__crop > img {
  object-fit: cover;
  object-position: 50% 34%;
}

.bt-floating-advisor__line {
  left: -10px;
  bottom: -6px;
  width: 36px;
  height: 36px;
}

.bt-floating-advisor__line .bt-line-mark {
  font-size: 26px;
}

.bt-floating-advisor__avatar::before {
  top: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
}

@media (max-width: 760px) {
  .bt-floating-advisor {
    width: 52px;
    height: 52px;
    bottom: 52px;
  }

  .bt-floating-advisor__avatar {
    width: 52px;
    height: 52px;
    border-width: 3px;
  }

  .bt-floating-advisor__avatar::before {
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .bt-floating-advisor__line {
    left: -5px;
    bottom: -3px;
    width: 21px;
    height: 21px;
    border-width: 2px;
  }

  .bt-floating-advisor__line .bt-line-mark {
    font-size: 15px;
  }

  .bt-floating-advisor__bubble {
    right: 100px;
  }
}
