/* ============================================================
   DESIGN SYSTEM — รับซื้อกล้องมือสอง
   Palette: #E11D48 red · #050505 black · #FFFFFF white
   ============================================================ */

:root {
  /* ── Primary brand colors ── */
  --primary:       #E11D48;
  --primary-hover: #BE1035;
  --primary-dark:  #7F102A;

  /* ── Background surfaces ── */
  --bg:         #050505;
  --surface:    #0B0B0D;
  --card:       #151518;
  --card-hover: #1E1E22;

  /* ── Text ── */
  --text:       #FFFFFF;
  --text-muted: #D4D4D8;
  --text-soft:  #A1A1AA;

  /* ── Borders ── */
  --border:       rgba(255,255,255,0.10);
  --border-strong:rgba(255,255,255,0.18);

  /* ── LINE brand ── */
  --line-green: #06c755;
  --line-dark:  #048a3a;

  /* ── Layout ── */
  --max-w:    1200px;
  --px:       1.25rem;
  --radius:   0.75rem;
  --radius-lg:1.25rem;

  /* ── Typography ── */
  --font-sans: 'Leelawadee UI','Noto Sans Thai',Thonburi,'Segoe UI',system-ui,-apple-system,sans-serif;

  /* ── Legacy aliases (used by WP Kadence blocks & older CSS) ── */
  --color-primary:       #E11D48;
  --color-primary-dark:  #7F102A;
  --color-line:          #06c755;
  --color-line-btn:      #048a3a;
  --color-line-btn-dark: #035a28;
  --color-maroon:        #7F102A;
  --color-maroon-dark:   #3D0815;
  --color-maroon-mid:    #5B0F1F;
  --color-black:         #050505;
  --color-black-soft:    #0B0B0D;
  --color-black-card:    #151518;
  --color-text:          #FFFFFF;
  --color-text-body:     #D4D4D8;
  --color-muted:         #A1A1AA;
  --color-border:        rgba(255,255,255,0.10);
  --color-border-light:  rgba(255,255,255,0.15);
  --color-bg:            #050505;
  --color-surface:       #0B0B0D;
  --color-surface-raised:#151518;
  --color-on-dark:       #FFFFFF;

  /* ── Kadence block vars (remapped for dark theme) ── */
  --global-palette1:             #E11D48;
  --global-palette2:             #BE1035;
  --global-palette3:             #FFFFFF;
  --global-palette4:             #151518;
  --global-palette5:             #D4D4D8;
  --global-palette6:             #A1A1AA;
  --global-palette7:             #1E1E22;
  --global-palette8:             #0B0B0D;
  --global-palette9:             #FFFFFF;
  --global-palette10:            #FCA5A5;
  --global-palette11:            #4ADE80;
  --global-palette12:            #60A5FA;
  --global-palette13:            #FB7185;
  --global-palette14:            #FB923C;
  --global-palette15:            #FBBF24;

  /* WordPress preset colors — remap for dark bg */
  --wp--preset--color--black:              #FFFFFF;
  --wp--preset--color--white:              #FFFFFF;
  --wp--preset--color--cyan-bluish-gray:   #A1A1AA;
  --global-content-edge-padding: 1.25rem;
  --global-content-width:        1290px;
  --global-kb-gap-sm:            1rem;
  --global-kb-gap-md:            2rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

a { color: inherit; }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 3px; }

ul { list-style: none; padding: 0; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.skip-link {
  position: absolute;
  left: -9999px;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }

.btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn--line {
  background: var(--line-dark);
  color: #fff;
  border-color: var(--line-dark);
}
.btn--line:hover { background: #036230; border-color: #036230; }

.btn--phone {
  background: var(--card);
  color: #fff;
  border-color: var(--border-strong);
}
.btn--phone:hover { border-color: var(--primary); color: var(--primary); }

.btn--outline-red {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-red:hover { background: var(--primary); color: #fff; }

.btn--block { width: 100%; justify-content: center; }

.btn--lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.btn--header {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
}

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,5,0.97);
  border-bottom: 2px solid var(--primary-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Logo */
.brand { flex-shrink: 0; display: flex; align-items: center; }
.brand__logo { height: 40px; width: auto; object-fit: contain; }

/* Desktop nav */
.main-nav { flex: 1; display: none; }
@media (min-width: 1024px) { .main-nav { display: block; } }

.main-nav ul {
  display: flex;
  gap: 0.1rem;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.main-nav a[aria-current="page"] {
  color: var(--primary);
  background: rgba(225,29,72,0.12);
}

/* Header actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
@media (min-width: 768px) { .header-actions { display: flex; } }

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.header-phone-link:hover { border-color: var(--primary); color: var(--primary); }

/* Hamburger */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  color: #fff;
  padding: 0.45rem;
  cursor: pointer;
  margin-left: auto;
  transition: border-color 0.15s;
}
.menu-toggle:hover { border-color: var(--primary); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile nav dropdown */
.mobile-nav {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem var(--px);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.mobile-nav a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-nav a[aria-current="page"] { color: var(--primary); background: rgba(225,29,72,0.1); }
.mobile-nav__actions { display: flex; gap: 0.75rem; }
.mobile-nav__actions .btn { flex: 1; font-size: 0.9rem; }

/* ============================================================
   LINE STICKY BAR (mobile)
   ============================================================ */

.line-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.6rem var(--px);
  gap: 0.6rem;
}
@media (max-width: 767px) { .line-sticky-bar { display: flex; } }

.line-sticky-bar__line,
.line-sticky-bar__phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.line-sticky-bar__line:active,
.line-sticky-bar__phone:active { opacity: 0.85; }

.line-sticky-bar__line {
  background: var(--line-dark);
  color: #fff;
}
.line-sticky-bar__phone {
  background: var(--primary);
  color: #fff;
}

/* Pad body for sticky bar */
@media (max-width: 767px) {
  .has-line-bar { padding-bottom: 68px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem var(--px) 1.5rem;
}

.site-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3rem;
}
@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr 1fr; }
}

.site-footer h2 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; }

.site-footer a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.site-footer a:hover { color: var(--primary); }

.site-footer__brand img { height: 64px; width: auto; margin-bottom: 1rem; }
.site-footer__tagline {
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.6;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.site-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }

.site-footer__bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section { padding: 5rem var(--px); }
.section--sm { padding: 3rem var(--px); }
.section--lg { padding: 6rem var(--px); }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section__desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   CARD BASE
   ============================================================ */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover { background: var(--card-hover); border-color: var(--border-strong); }

/* ============================================================
   HOME — HERO SECTION
   ============================================================ */

.hero {
  background: var(--bg);
  padding: 5rem var(--px) 4rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(225,29,72,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 420px; gap: 4rem; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(225,29,72,0.12);
  border: 1px solid rgba(225,29,72,0.3);
  color: #fca5a5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--primary); }

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
}
.hero__links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.hero__links a:hover { text-decoration: underline; }
.hero__links span { color: var(--text-muted); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-badge::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
}
.hero__img-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__img-badge {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.hero__img-badge strong {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hero__img-badge span {
  font-size: 0.72rem;
  color: var(--text-soft);
}

/* ============================================================
   HOME — QUICK CONTACT SECTION
   ============================================================ */

.quick-contact {
  padding: 1rem var(--px) 4rem;
}
.quick-contact__inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(225,29,72,0.06);
}

.quick-contact__header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.quick-contact__qr-wrap {
  flex-shrink: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.5rem;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-contact__qr-wrap img { width: 80px; height: 80px; border-radius: 4px; }

.quick-contact__copy { flex: 1; min-width: 200px; }
.quick-contact__copy h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.quick-contact__copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quick-contact__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.quick-contact__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.quick-contact__form-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.estimate-form { display: grid; gap: 0.75rem; }
@media (min-width: 640px) {
  .estimate-form { grid-template-columns: 1fr 1fr; }
  .estimate-form__submit { grid-column: 1 / -1; }
}

.estimate-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.estimate-form__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}
.estimate-form__field input {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.6rem 0.85rem;
  transition: border-color 0.15s;
  outline: none;
}
.estimate-form__field input::placeholder { color: var(--text-soft); }
.estimate-form__field input:focus { border-color: var(--primary); }

/* ============================================================
   HOME — BRAND CARDS SECTION
   ============================================================ */

.brands-section {
  background: var(--surface);
  padding: 5rem var(--px);
}

.brands-section__inner { max-width: var(--max-w); margin: 0 auto; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .brands-grid { grid-template-columns: repeat(4,1fr); } }

.brand-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.brand-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.brand-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0d0d0f;
}
.brand-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.brand-card:hover .brand-card__img img { transform: scale(1.04); }

.brand-card__body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.brand-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.brand-card__models {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 0.5rem;
}
.brand-card__models li::before { content: '· '; color: var(--primary); }

.brand-card__cta {
  width: 100%;
  text-align: center;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
}

/* ============================================================
   HOME — STEPS SECTION
   ============================================================ */

.steps-section {
  padding: 5rem var(--px);
}
.steps-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(33.333% - 0px);
    right: calc(33.333% - 0px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    z-index: 0;
  }
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: rgba(225,29,72,0.35); }

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 24px rgba(225,29,72,0.35);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   HOME — GALLERY SECTION
   ============================================================ */

.gallery-section {
  background: var(--surface);
  padding: 5rem var(--px);
}
.gallery-section__inner { max-width: var(--max-w); margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  loading: lazy;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(5,5,5,0.88));
  padding: 1.5rem 0.75rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   HOME — REVIEWS SECTION
   ============================================================ */

.reviews-section {
  padding: 5rem var(--px);
}
.reviews-section__inner { max-width: var(--max-w); margin: 0 auto; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(225,29,72,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.review-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}
.review-card__location {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ============================================================
   HOME — WHY US SECTION
   ============================================================ */

.why-section {
  background: var(--surface);
  padding: 5rem var(--px);
}
.why-section__inner { max-width: var(--max-w); margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(4,1fr); }
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: rgba(225,29,72,0.3); }

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.why-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============================================================
   HOME — BLOG SECTION
   ============================================================ */

.home-blog-section {
  padding: 5rem var(--px);
}
.home-blog-section__inner { max-width: var(--max-w); margin: 0 auto; }

.home-blog-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.home-blog-section__header h2 {
  font-size: clamp(1.4rem,2.5vw,1.8rem);
  font-weight: 800;
}
.home-blog-section__header a {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.home-blog-section__header a:hover { text-decoration: underline; }

/* ============================================================
   HOME — FINAL CTA
   ============================================================ */

.final-cta {
  background: linear-gradient(135deg, #3D0815 0%, #150308 50%, #050505 100%);
  border-top: 1px solid rgba(225,29,72,0.2);
  border-bottom: 1px solid rgba(225,29,72,0.15);
  padding: 5rem var(--px);
  text-align: center;
}
.final-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}
.final-cta__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 1rem;
}
.final-cta h2 {
  font-size: clamp(1.5rem,3vw,2.1rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.final-cta__sub {
  color: #fca5a5;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   BLOG LISTING (blog archive)
   ============================================================ */

.blog-archive { max-width: var(--max-w); margin: 0 auto; padding: 3rem var(--px); }

.blog-archive__hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}
.blog-archive__title {
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
}
.blog-archive__intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   BLOG POST CARD
   ============================================================ */

.blog-post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-post-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.blog-post-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface);
}
.blog-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-post-card:hover .blog-post-card__img img { transform: scale(1.04); }

.blog-post-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-post-card__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(225,29,72,0.1);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.6rem;
}

.blog-post-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-post-card__excerpt {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.blog-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.blog-post-card__date { font-size: 0.75rem; color: var(--text-soft); }
.blog-post-card__more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.pagination a:hover { background: rgba(255,255,255,0.07); border-color: var(--border-strong); color: #fff; }
.pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pagination .disabled { opacity: 0.35; pointer-events: none; }

/* ============================================================
   ARTICLE / INNER PAGES — LANDING WRAPPER
   ============================================================ */

.article-landing { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.article-landing__top { padding-top: 2rem; padding-bottom: 1rem; }
.article-landing__bottom { padding-bottom: 4rem; }

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 1.25rem; }
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-soft);
}
.breadcrumbs__item:not(:last-child)::after {
  content: '›';
  color: var(--text-soft);
}
.breadcrumbs__link { color: var(--text-soft); text-decoration: none; transition: color 0.15s; }
.breadcrumbs__link:hover { color: var(--primary); }
.breadcrumbs__current { color: var(--text-muted); }

/* Location hero */
.location-hero {
  background: linear-gradient(135deg, rgba(127,16,42,0.15) 0%, transparent 70%);
  border: 1px solid rgba(225,29,72,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.location-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.location-hero__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.location-hero__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* TrustBar */
.trust-bar { margin-bottom: 1.5rem; }
.trust-bar__list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .trust-bar__list { grid-template-columns: repeat(4,1fr); } }

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
}
.trust-bar__icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1; }
.trust-bar__copy { display: flex; flex-direction: column; gap: 0.15rem; }
.trust-bar__title { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.trust-bar__desc { font-size: 0.75rem; color: var(--text-soft); line-height: 1.4; }

/* ContactCta */
.contact-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.contact-cta--compact { padding: 1.25rem 1.5rem; }
.contact-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.contact-cta__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.contact-cta__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.contact-cta__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-cta--compact .contact-cta__title { font-size: 0.95rem; }
.contact-cta__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; flex-shrink: 0; }

/* Sell steps strip */
.sell-steps {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sell-steps__inner { max-width: 100%; }
.sell-steps__heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-align: center;
}
.sell-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 600px) {
  .sell-steps__list { flex-direction: row; gap: 1rem; }
}
.sell-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  flex: 1;
}
.sell-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  flex-shrink: 0;
}
.sell-steps__copy { display: flex; flex-direction: column; gap: 0.15rem; }
.sell-steps__copy strong { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.sell-steps__copy span { font-size: 0.78rem; color: var(--text-soft); }
.sell-steps__cta { display: block; text-align: center; }

/* Related posts */
.related-posts { margin-top: 2rem; }
.related-posts__inner { }
.related-posts__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .related-posts__grid { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   WP CONTENT ARTICLE STYLES
   ============================================================ */

.entry--home { }
.entry--article { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px) 3rem; }
.content-wrap { max-width: var(--max-w); margin: 0 auto; padding: 2rem var(--px); }

.wp-content,
.content-article {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.wp-content h1,.wp-content h2,.wp-content h3,.wp-content h4 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.3;
  margin: 1.75em 0 0.6em;
}
.wp-content h1 { font-size: 1.8rem; }
.wp-content h2 { font-size: 1.4rem; }
.wp-content h3 { font-size: 1.15rem; }
.wp-content h4 { font-size: 1rem; }

.wp-content p { margin: 0 0 1.1em; }

.wp-content ul,.wp-content ol {
  padding-left: 1.5em;
  margin: 0 0 1.1em;
}
.wp-content li { margin-bottom: 0.4em; }

.wp-content a { color: var(--primary); text-decoration: underline; }
.wp-content a:hover { color: #fca5a5; }

.wp-content img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
}

.wp-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 0.75rem 1.25rem;
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5em 0;
  color: var(--text-muted);
}

.wp-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.5em 0;
}
.wp-content th,.wp-content td {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.wp-content th {
  background: var(--card);
  color: var(--text);
  font-weight: 700;
}
.wp-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Kadence block overrides */
.kb-row-layout-wrap { max-width: 100% !important; }
.kt-inside-inner-col { color: var(--text-muted) !important; }
.kt-inside-inner-col h1,.kt-inside-inner-col h2,.kt-inside-inner-col h3 { color: var(--text) !important; }

/* ============================================================
   BLOG ARCHIVE PAGE
   ============================================================ */

.page-blog .site-main,
.page-location .site-main,
.page-article .site-main { background: var(--bg); }

/* ============================================================
   DEDICATED INNER PAGES (models, process, review, about)
   ============================================================ */

.inner-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* Models page */
.models-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}
.models-hero h1 {
  font-size: clamp(1.8rem,4vw,2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.models-hero p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto 2rem; }

.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.brand-tab {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.brand-tab:hover,
.brand-tab:focus { border-color: var(--primary); color: var(--primary); background: rgba(225,29,72,0.06); }

.brand-section {
  margin-bottom: 4rem;
  scroll-margin-top: 80px;
}
.brand-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.brand-section__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}
.brand-section__badge {
  font-size: 0.75rem;
  background: rgba(225,29,72,0.12);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-weight: 700;
}

.brand-section__body {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .brand-section__body { grid-template-columns: 1fr 2fr; align-items: start; }
}

.brand-section__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.brand-section__img img { width: 100%; height: 100%; object-fit: cover; }

.brand-section__models h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.brand-section__models ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0.3rem 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .brand-section__models ul { grid-template-columns: repeat(3,1fr); } }
.brand-section__models li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}
.brand-section__models li::before { content: '• '; color: var(--primary); }

/* Process page */
.process-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}
.process-hero h1 {
  font-size: clamp(1.8rem,4vw,2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.process-hero p { color: var(--text-muted); max-width: 540px; margin: 0 auto 2rem; }

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .process-steps-grid { grid-template-columns: repeat(3,1fr); } }

.process-checklists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .process-checklists { grid-template-columns: repeat(2,1fr); } }

.checklist-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.checklist-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.checklist-card ul { display: flex; flex-direction: column; gap: 0.55rem; }
.checklist-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checklist-card li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.price-guide {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 4rem;
}
.price-guide h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.price-table th,.price-table td {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.price-table th {
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-table td { color: var(--text-muted); }
.price-table tr:hover td { background: rgba(255,255,255,0.02); }

.faq-list { margin-bottom: 4rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--card);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* Review page */
.review-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}
.review-hero h1 {
  font-size: clamp(1.8rem,4vw,2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.review-hero p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.review-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .review-page-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .review-page-grid { grid-template-columns: repeat(3,1fr); } }

.review-cta-banner {
  background: linear-gradient(135deg, rgba(127,16,42,0.2) 0%, rgba(5,5,5,0) 80%);
  border: 1px solid rgba(225,29,72,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.review-cta-banner h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.review-cta-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* About page */
.about-hero {
  padding: 4rem 0 3rem;
}
.about-hero h1 {
  font-size: clamp(1.8rem,4vw,2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.about-hero p { color: var(--text-muted); max-width: 580px; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) { .about-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

.about-map {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-map iframe { width: 100%; height: 100%; border: none; display: block; }

.about-info h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.about-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.about-info-item svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.about-info-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}
.about-info-item__value {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.about-info-item__value a { color: var(--primary); text-decoration: none; }
.about-info-item__value a:hover { text-decoration: underline; }

.about-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 3rem 0;
}
@media (min-width: 768px) { .about-trust-grid { grid-template-columns: repeat(4,1fr); } }

.about-trust-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.about-trust-item__icon { font-size: 1.75rem; margin-bottom: 0.5rem; display: block; }
.about-trust-item h3 { font-size: 0.85rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; }
.about-trust-item p { font-size: 0.75rem; color: var(--text-soft); }

/* ============================================================
   HOME SECTIONS — WP BLOCKS override for homepage
   ============================================================ */

.page-home .site-main { background: var(--bg); }

/* Splide dark theme */
.splide__arrow {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
}
.splide__arrow svg { fill: #fff !important; }
.splide__pagination__page {
  background: var(--border-strong) !important;
}
.splide__pagination__page.is-active {
  background: var(--primary) !important;
  transform: scale(1.2);
}

/* Kadence counters */
.kb-count-up-number,
.kb-count-up-process {
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   HERO — REVISED (no pill badge, stats bar instead)
   ============================================================ */

.hero__location {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero__stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__stat strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.75rem;
  color: var(--text-soft);
}
.hero__stat-divider {
  width: 1px;
  height: 2rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   BRANDS — revised header (left-aligned, no eyebrow)
   ============================================================ */

.brands-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.brands-section__head h2 {
  font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 900;
}
.brands-section__all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
.brands-section__all:hover { text-decoration: underline; }

/* ============================================================
   PROCESS STEPS (horizontal numbered, not cards)
   ============================================================ */

.process-section {
  padding: 5rem var(--px);
}
.process-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.process-section__inner > h2 {
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 900;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0 1.5rem;
  }
}

.process-step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.process-step:hover { border-color: rgba(225,29,72,0.3); }

.process-step__n {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  opacity: 0.5;
}

.process-step__body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.process-step__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-step__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  padding-top: 1.75rem;
}
@media (min-width: 768px) { .process-step__arrow { display: flex; } }

/* Mobile: vertical connector */
@media (max-width: 767px) {
  .process-step {
    position: relative;
  }
  .process-step:not(:last-of-type)::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 2.5rem;
    width: 1px;
    height: 1rem;
    background: var(--border);
  }
  .process-steps { gap: 1rem; }
}

.process-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(225,29,72,0.35);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.process-section__cta:hover { color: var(--primary-hover); border-color: var(--primary-hover); }

/* ============================================================
   MOSAIC GALLERY (organic sizes, no uniform captions)
   ============================================================ */

.mosaic-section {
  background: var(--surface);
  padding: 4rem var(--px);
}
.mosaic-section__inner { max-width: var(--max-w); margin: 0 auto; }

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
}

.mosaic-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mosaic-item:hover img { transform: scale(1.04); }

@media (min-width: 768px) {
  .mosaic-item--wide {
    grid-column: span 2;
  }
}

.mosaic-section__caption {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
}

/* ============================================================
   QUOTE REVIEWS (editorial, no avatar circles)
   ============================================================ */

.quotes-section {
  padding: 5rem var(--px);
}
.quotes-section__inner { max-width: var(--max-w); margin: 0 auto; }

.quotes-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.quotes-header h2 {
  font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 900;
}
.quotes-header__more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
.quotes-header__more:hover { text-decoration: underline; }

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .quotes-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .quotes-grid { grid-template-columns: repeat(4,1fr); } }

.quote-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  transition: border-color 0.2s;
}
.quote-block:hover { border-color: rgba(225,29,72,0.2); }

.quote-block__mark {
  color: var(--primary);
  opacity: 0.25;
  flex-shrink: 0;
  width: 28px;
  height: auto;
}

.quote-block__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.quote-block__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.quote-block__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}
.quote-block__meta {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ============================================================
   FEATURES / WHY US (numbered list, no emoji)
   ============================================================ */

.features-section {
  background: var(--surface);
  padding: 5rem var(--px);
}
.features-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .features-section__inner { grid-template-columns: 280px 1fr; gap: 5rem; align-items: start; }
}

.features-left h2 {
  font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.features-left__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.features-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.feature-row:first-child { border-top: 1px solid var(--border); }

.feature-row__n {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.25rem;
  opacity: 0.7;
}

.feature-row h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.feature-row p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   RESPONSIVE — GLOBAL OVERRIDES
   ============================================================ */

@media (max-width: 640px) {
  .section { padding: 3.5rem var(--px); }
  .section--lg { padding: 4rem var(--px); }
  .hero { padding: 3.5rem var(--px) 3rem; }
  .final-cta { padding: 3.5rem var(--px); }
  .brands-section { padding: 3.5rem var(--px); }
  .process-section { padding: 3.5rem var(--px); }
  .mosaic-section { padding: 3rem var(--px); }
  .quotes-section { padding: 3.5rem var(--px); }
  .features-section { padding: 3.5rem var(--px); }
  .home-blog-section { padding: 3.5rem var(--px); }
  .quick-contact { padding: 0 var(--px) 3rem; }
  .quick-contact__inner { padding: 1.5rem; }
  .hero__stats { gap: 1rem; }
  .hero__stat-divider { display: none; }
}

@media (min-width: 641px) and (max-width: 767px) {
  .hero__inner { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   DARK THEME — contrast fixes (WP/Kadence legacy content)
   wp-theme.css sets p{color:palette4} and h1–h6{color:palette3}
   which were near-black on our near-black background.
   ============================================================ */

.site-body p,
.site-body .entry-content p,
.site-body .wp-content p,
.site-body .kt-inside-inner-col p {
  color: var(--text-muted);
}

.site-body h1,
.site-body h2,
.site-body h3,
.site-body h4,
.site-body h5,
.site-body h6,
.site-body .entry-content h1,
.site-body .entry-content h2,
.site-body .entry-content h3,
.site-body .entry-content h4,
.site-body .entry-content h5,
.site-body .entry-content h6,
.site-body .wp-content h1,
.site-body .wp-content h2,
.site-body .wp-content h3,
.site-body .wp-content h4,
.site-body .wp-content h5,
.site-body .wp-content h6 {
  color: var(--text);
}

.site-body li,
.site-body td,
.site-body th,
.site-body figcaption,
.site-body label,
.site-body .entry-content li,
.site-body .wp-content li {
  color: var(--text-muted);
}

.site-body .content-bg,
.site-body .entry-content-wrap,
.site-body .entry:not(.loop-entry) > .entry-content-wrap {
  background: transparent !important;
}

.site-body .content-bg,
.site-body.content-style-unboxed .site {
  background: var(--bg) !important;
}

/* Kadence palette text classes */
.site-body .has-theme-palette-3-color,
.site-body .has-theme-palette3-color,
.site-body .has-theme-palette-4-color,
.site-body .has-theme-palette4-color,
.site-body .has-theme-palette-5-color,
.site-body .has-theme-palette5-color {
  color: var(--text-muted) !important;
}

.site-body .has-theme-palette-9-color,
.site-body .has-theme-palette9-color {
  color: var(--text) !important;
}

.site-body .has-theme-palette-1-color,
.site-body .has-theme-palette1-color,
.site-body .has-theme-palette-2-color,
.site-body .has-theme-palette2-color {
  color: var(--primary) !important;
}

/* Inline dark text migrated from WordPress */
.site-body [style*="color: #000"],
.site-body [style*="color:#000"],
.site-body [style*="color: #000000"],
.site-body [style*="color:#000000"],
.site-body [style*="color: #333"],
.site-body [style*="color:#333"],
.site-body [style*="color: #444"],
.site-body [style*="color:#444"],
.site-body [style*="color: #555"],
.site-body [style*="color:#555"] {
  color: var(--text-muted) !important;
}

/* CTA accent colors — brighten for dark bg */
.site-body [style*="color: #ff0000"],
.site-body [style*="color:#ff0000"],
.site-body [style*="color: #ff6600"],
.site-body [style*="color:#ff6600"],
.site-body [style*="color: #800000"],
.site-body [style*="color:#800000"] {
  color: #ff7070 !important;
}

/* White/light backgrounds from WP → dark card */
.site-body .has-theme-palette-8-background-color,
.site-body .has-theme-palette8-background-color,
.site-body .has-theme-palette-9-background-color,
.site-body .has-theme-palette9-background-color,
.site-body [style*="background-color: #fff"],
.site-body [style*="background-color:#fff"],
.site-body [style*="background-color: #ffffff"],
.site-body [style*="background-color:#ffffff"],
.site-body [style*="background-color: #f3f4f8"],
.site-body [style*="background-color:#f3f4f8"],
.site-body [style*="background-color: #F3F4F8"],
.site-body [style*="background-color:#F3F4F8"] {
  background-color: var(--card) !important;
}

.site-body blockquote,
.site-body blockquote cite,
.site-body .entry-content blockquote cite {
  color: var(--text-muted) !important;
}

.site-body pre,
.site-body code {
  background: var(--card) !important;
  color: var(--text-muted) !important;
}

/* Footer social icons — explicit color on dark card buttons */
.site-footer__brand > div a {
  color: var(--text-muted);
}
.site-footer__brand > div a:hover {
  color: var(--primary);
  border-color: var(--primary) !important;
}

/* ============================================================
   MONEY PAGES — Province / Article / Brand Hub
   ============================================================ */

.money-page { margin-bottom: 2rem; }
.money-page--province .province-hero { margin-bottom: 1rem; }

.province-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  margin-bottom: 1rem;
}
.province-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.province-hero__title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.province-hero__desc { font-size: 0.9rem; color: var(--text-soft); }

.money-page__intro {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.money-page__intro p { font-size: 0.95rem; line-height: 1.7; color: var(--text); }

.quick-answer {
  background: linear-gradient(135deg, rgba(220,38,38,0.08), rgba(220,38,38,0.02));
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.quick-answer__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.quick-answer__text { font-size: 1rem; font-weight: 600; line-height: 1.6; color: var(--text); }

.money-section { margin: 2rem 0; }
.money-section__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.money-section__note { font-size: 0.85rem; color: var(--text-soft); margin-top: 0.75rem; }

.brand-model-grid__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.brand-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.brand-chip:hover { border-color: var(--primary); color: var(--primary); }

.brand-model-grid__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .brand-model-grid__cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .brand-model-grid__cards { grid-template-columns: repeat(3, 1fr); } }

.brand-model-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}
.brand-model-card__name { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.6rem; }
.brand-model-card__name a { color: var(--text); text-decoration: none; }
.brand-model-card__name a:hover { color: var(--primary); }
.brand-model-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
}
.brand-model-card__list li {
  font-size: 0.78rem;
  color: var(--text-soft);
  background: var(--bg);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.selling-steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) { .selling-steps__list { flex-direction: row; } }
.selling-steps__item {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.selling-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.selling-steps__copy strong { display: block; font-size: 0.88rem; margin-bottom: 0.25rem; color: var(--text); }
.selling-steps__copy p { font-size: 0.8rem; color: var(--text-soft); margin: 0; line-height: 1.5; }

.local-areas__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.local-areas__list li {
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
}

.price-factors__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .price-factors__list { grid-template-columns: repeat(2, 1fr); } }
.price-factors__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.price-factors__item strong { display: block; font-size: 0.88rem; margin-bottom: 0.35rem; color: var(--text); }
.price-factors__item p { font-size: 0.8rem; color: var(--text-soft); margin: 0; line-height: 1.5; }

.faq-section__list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__q {
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__a {
  padding: 0 1rem 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.line-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}
.line-cta--compact { padding: 1rem 1.25rem; }
.line-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.line-cta__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.line-cta__title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.2rem; }
.line-cta__desc { font-size: 0.82rem; color: var(--text-soft); }
.line-cta--compact .line-cta__title { font-size: 0.92rem; }

.related-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-links__list a {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
}
.related-links__list a:hover { border-color: var(--primary); color: var(--primary); }

.entry--money .entry-content--legacy {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.entry--money .entry-content--legacy::before {
  content: 'เนื้อหาเพิ่มเติม';
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.shutter-brand-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .shutter-brand-steps { grid-template-columns: repeat(2, 1fr); } }
.shutter-brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.shutter-brand-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.6rem; color: var(--text); }
.shutter-brand-card ol { padding-left: 1.2rem; margin: 0; }
.shutter-brand-card li { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 0.35rem; }

.shutter-levels-table-wrap { overflow-x: auto; }
.shutter-levels-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.shutter-levels-table th,
.shutter-levels-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
  color: var(--text);
}
.shutter-levels-table th { background: var(--surface); font-weight: 700; }
.shutter-levels-table td { background: var(--bg); }

.shutter-sell-cta {
  background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(220,38,38,0.03));
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.shutter-sell-cta h2 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text); }
.shutter-sell-cta p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 0.5rem; }

.brand-section--hub { margin-bottom: 3rem; }
.brand-section__extras { margin-top: 1.5rem; }
.brand-easy-sell,
.brand-photo-checklist {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.brand-easy-sell li,
.brand-photo-checklist li { margin-bottom: 0.25rem; }

.article-money-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.article-money-list li { margin-bottom: 0.35rem; }

.category-hub-hero { margin-bottom: 1rem; }
.category-hub-hero__intro {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.category-hub-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) { .category-hub-grid__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .category-hub-grid__list { grid-template-columns: repeat(3, 1fr); } }

.category-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s;
}
.category-hub-card:hover { border-color: var(--primary); }
.category-hub-card strong { font-size: 0.9rem; font-weight: 700; }
.category-hub-card span { font-size: 0.78rem; color: var(--text-soft); }

.category-hub-archive { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }

.home-provinces {
  padding: 3rem var(--px);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-provinces__inner { max-width: var(--max-w); margin: 0 auto; }
.home-provinces__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.home-provinces__head h2 { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.home-provinces__head a { font-size: 0.85rem; color: var(--primary); text-decoration: none; }
.home-provinces__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) { .home-provinces__grid { grid-template-columns: repeat(5, 1fr); } }
.home-provinces__card {
  display: block;
  text-align: center;
  padding: 0.65rem 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.home-provinces__card:hover { border-color: var(--primary); color: var(--primary); }

