/* ============================================================
   SwiftLock — Emergency Locksmith Directory Theme
   Fully isolated CSS. Prefix: sl-
   Design: "Precision Security" — Dark Navy + Electric Gold
   Fonts: Space Grotesk (headings) + Inter (body)
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --sl-navy:        #0D1B2A;
  --sl-navy-2:      #1A2E44;
  --sl-navy-3:      #243B55;
  --sl-gold:        #FFD60A;
  --sl-gold-dim:    rgba(255,214,10,.12);
  --sl-green:       #10B981;
  --sl-green-dim:   rgba(16,185,129,.12);
  --sl-white:       #FFFFFF;
  --sl-gray-50:     #F8FAFC;
  --sl-gray-100:    #F1F5F9;
  --sl-gray-200:    #E2E8F0;
  --sl-gray-300:    #CBD5E1;
  --sl-gray-400:    #94A3B8;
  --sl-gray-500:    #64748B;
  --sl-gray-600:    #475569;
  --sl-gray-700:    #334155;
  --sl-gray-800:    #1E293B;
  --sl-gray-900:    #0F172A;
  --sl-radius-sm:   6px;
  --sl-radius-md:   10px;
  --sl-radius-lg:   16px;
  --sl-radius-xl:   24px;
  --sl-shadow-sm:   0 1px 3px rgba(0,0,0,.07);
  --sl-shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --sl-shadow-lg:   0 12px 40px rgba(0,0,0,.18);
  --sl-shadow-card: 0 2px 8px rgba(0,0,0,.08);
  --sl-font-head:   'Space Grotesk', system-ui, -apple-system, sans-serif;
  --sl-font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --sl-transition:  180ms ease;
}

/* ===== ANIMATIONS ===== */
@keyframes sl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}
@keyframes sl-fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== BASE RESET ===== */
body {
  font-family: var(--sl-font-body);
  color: var(--sl-gray-800);
  background: var(--sl-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sl-font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--sl-gray-900);
  margin: 0 0 16px;
}
p { margin: 0 0 16px; }
a { color: var(--sl-navy-2); text-decoration: none; transition: color var(--sl-transition); }
a:hover { color: var(--sl-navy); }
img { max-width: 100%; height: auto; display: block; }
*, *::before, *::after { box-sizing: border-box; }

/* ===== LAYOUT ===== */
.sl-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sl-wrap--narrow { max-width: 860px; }
.sl-wrap--wide   { max-width: 1400px; }

@media (min-width: 768px) {
  .sl-wrap { padding: 0 32px; }
}

/* ============================================================
   TOPBAR
   ============================================================ */
.sl-topbar {
  background: var(--sl-navy);
  color: var(--sl-gold);
  text-align: center;
  padding: 9px 24px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--sl-font-body);
  letter-spacing: .02em;
}
.sl-topbar a { color: var(--sl-white); text-decoration: underline; }
.sl-topbar a:hover { color: var(--sl-gold); }

/* ============================================================
   NAV
   ============================================================ */
.sl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sl-white);
  border-bottom: 1px solid var(--sl-gray-200);
  box-shadow: var(--sl-shadow-sm);
}
.sl-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  height: 62px;
  max-width: 1200px;
  margin: 0 auto;
}
.sl-nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sl-nav__logo {
  height: 36px;
  width: auto;
}
.sl-nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .sl-nav__links { display: flex; }
}
.sl-nav__links a {
  color: var(--sl-gray-700);
  font-size: 14.5px;
  font-weight: 500;
  font-family: var(--sl-font-body);
  text-decoration: none;
  transition: color var(--sl-transition);
  white-space: nowrap;
}
.sl-nav__links a:hover,
.sl-nav__links a.is-active {
  color: var(--sl-navy);
}
.sl-nav__links a.is-active {
  font-weight: 600;
}
.sl-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sl-nav__search {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--sl-gray-100);
  border: 1px solid var(--sl-gray-200);
  border-radius: 20px;
  padding: 6px 14px;
  position: relative;
}
@media (min-width: 900px) {
  .sl-nav__search { display: flex; }
}
.sl-nav__search-icon {
  width: 14px;
  height: 14px;
  opacity: .45;
  flex-shrink: 0;
}
.sl-nav__search input {
  border: none;
  background: transparent;
  font-size: 13.5px;
  font-family: var(--sl-font-body);
  color: var(--sl-gray-800);
  outline: none;
  width: 160px;
}
.sl-nav__search input::placeholder { color: var(--sl-gray-400); }
.sl-nav__cta {
  display: none;
  background: var(--sl-gold);
  color: var(--sl-navy) !important;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--sl-font-body);
  padding: 8px 18px;
  border-radius: var(--sl-radius-sm);
  text-decoration: none;
  transition: background var(--sl-transition), transform var(--sl-transition);
  white-space: nowrap;
}
.sl-nav__cta:hover {
  background: #e6c000;
  transform: translateY(-1px);
}
@media (min-width: 640px) {
  .sl-nav__cta { display: inline-flex; align-items: center; }
}
.sl-nav__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  padding: 7px 12px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--sl-font-body);
  color: var(--sl-gray-700);
}
@media (min-width: 900px) {
  .sl-nav__toggle { display: none; }
}
.sl-nav__toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sl-nav__toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sl-gray-700);
  border-radius: 2px;
  transition: background var(--sl-transition);
}

/* ===== MOBILE NAV ===== */
.sl-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.sl-mobile-nav[data-open] { display: block; }
.sl-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.55);
  backdrop-filter: blur(3px);
}
.sl-mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--sl-white);
  box-shadow: var(--sl-shadow-lg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: sl-fadein .18s ease;
}
.sl-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--sl-gray-100);
}
.sl-mobile-nav__head p {
  font-family: var(--sl-font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--sl-navy);
  margin: 0;
}
.sl-mobile-nav__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--sl-gray-500);
  line-height: 1;
  padding: 2px 6px;
}
.sl-mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.sl-mobile-nav__links a {
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--sl-gray-700);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all var(--sl-transition);
}
.sl-mobile-nav__links a:hover,
.sl-mobile-nav__links a.is-active {
  color: var(--sl-navy);
  background: var(--sl-gold-dim);
  border-left-color: var(--sl-gold);
}
.sl-mobile-nav__search {
  margin: 12px 20px;
  position: relative;
}
.sl-mobile-nav__search input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  font-size: 14px;
  font-family: var(--sl-font-body);
  outline: none;
  color: var(--sl-gray-800);
}
.sl-mobile-nav__search input:focus { border-color: var(--sl-navy-2); }

/* ============================================================
   BUTTONS
   ============================================================ */
.sl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sl-font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--sl-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sl-transition);
  line-height: 1.3;
  white-space: nowrap;
}
.sl-btn--primary {
  background: var(--sl-gold);
  color: var(--sl-navy);
  border-color: var(--sl-gold);
}
.sl-btn--primary:hover {
  background: #e6c000;
  border-color: #e6c000;
  color: var(--sl-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,214,10,.3);
}
.sl-btn--emergency {
  background: var(--sl-green);
  color: var(--sl-white);
  border-color: var(--sl-green);
}
.sl-btn--emergency:hover {
  background: #0ca678;
  border-color: #0ca678;
  color: var(--sl-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
}
.sl-btn--outline {
  background: transparent;
  color: var(--sl-navy);
  border-color: var(--sl-gray-300);
}
.sl-btn--outline:hover {
  border-color: var(--sl-navy);
  color: var(--sl-navy);
  background: var(--sl-gray-50);
}
.sl-btn--outline-light {
  background: rgba(255,255,255,.1);
  color: var(--sl-white);
  border-color: rgba(255,255,255,.3);
}
.sl-btn--outline-light:hover {
  background: rgba(255,255,255,.2);
  color: var(--sl-white);
  border-color: rgba(255,255,255,.6);
}
.sl-btn--lg {
  font-size: 15.5px;
  padding: 13px 28px;
}
.sl-btn--sm {
  font-size: 13px;
  padding: 7px 14px;
}
.sl-btn--block {
  width: 100%;
  justify-content: center;
}

/* ===== TAGS ===== */
.sl-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--sl-font-body);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.sl-tag--gold {
  background: var(--sl-gold-dim);
  color: #a07e00;
  border: 1px solid rgba(255,214,10,.3);
}
.sl-tag--green {
  background: var(--sl-green-dim);
  color: #065f46;
  border: 1px solid rgba(16,185,129,.25);
}
.sl-tag--pulse {
  background: var(--sl-green-dim);
  color: #065f46;
  border: 1px solid rgba(16,185,129,.25);
  gap: 6px;
}
.sl-tag--pulse::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--sl-green);
  border-radius: 50%;
  animation: sl-pulse 1.6s ease-in-out infinite;
}
.sl-tag--orange {
  background: rgba(234,88,12,.1);
  color: #c2410c;
  border: 1px solid rgba(234,88,12,.2);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.sl-section {
  padding: 64px 0;
}
.sl-section--gray {
  background: var(--sl-gray-50);
}
.sl-section--navy {
  background: var(--sl-navy);
  color: var(--sl-white);
}
.sl-section--navy h2,
.sl-section--navy h3 {
  color: var(--sl-white);
}
.sl-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sl-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--sl-font-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl-gold);
  margin: 0 0 8px;
  /* For dark backgrounds */
}
.sl-section--navy .sl-section__eyebrow { color: var(--sl-gold); }
.sl-section__desc {
  color: var(--sl-gray-500);
  font-size: 15px;
  margin: 6px 0 0;
  max-width: 540px;
}
.sl-section--navy .sl-section__desc { color: rgba(255,255,255,.65); }
.sl-section__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--sl-navy-2);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 6px;
  transition: color var(--sl-transition);
}
.sl-section__link:hover { color: var(--sl-navy); }
.sl-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.sl-hero {
  background: var(--sl-navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.sl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,214,10,.06) 0%, transparent 65%);
  pointer-events: none;
}
.sl-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sl-gold), #ffae00, var(--sl-gold));
}
.sl-hero__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .sl-hero__inner {
    grid-template-columns: 1fr auto;
  }
}
.sl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sl-gold-dim);
  border: 1px solid rgba(255,214,10,.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sl-gold);
  font-family: var(--sl-font-body);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sl-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--sl-green);
  border-radius: 50%;
  animation: sl-pulse 1.6s ease-in-out infinite;
}
.sl-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--sl-white);
  line-height: 1.12;
  margin: 0 0 18px;
  font-family: var(--sl-font-head);
  letter-spacing: -.02em;
}
.sl-hero__title em {
  color: var(--sl-gold);
  font-style: normal;
}
.sl-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 520px;
}
.sl-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.sl-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--sl-radius-lg);
  padding: 28px 32px;
  min-width: 200px;
}
@media (max-width: 767px) {
  .sl-hero__stats {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    gap: 16px;
  }
}
.sl-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sl-hero__stat-value {
  font-family: var(--sl-font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--sl-gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.sl-hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--sl-font-body);
}

/* ============================================================
   SEARCH BAR (floating)
   ============================================================ */
.sl-search-bar {
  background: var(--sl-white);
  border-radius: var(--sl-radius-lg);
  box-shadow: var(--sl-shadow-lg);
  border: 1px solid var(--sl-gray-200);
  padding: 20px 24px;
  margin-top: -28px;
  position: relative;
  z-index: 10;
}
.sl-search-bar__form {
  display: grid;
  gap: 12px;
  align-items: end;
}
@media (min-width: 768px) {
  .sl-search-bar__form {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}
.sl-search-bar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sl-search-bar__field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sl-gray-500);
  font-family: var(--sl-font-body);
}
.sl-search-bar__field input,
.sl-search-bar__field select {
  height: 42px;
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  padding: 0 12px;
  font-size: 14px;
  font-family: var(--sl-font-body);
  color: var(--sl-gray-800);
  background: var(--sl-gray-50);
  outline: none;
  transition: border-color var(--sl-transition);
  width: 100%;
}
.sl-search-bar__field input:focus,
.sl-search-bar__field select:focus {
  border-color: var(--sl-navy-2);
  background: var(--sl-white);
}
.sl-search-bar__submit {
  display: flex;
  align-items: flex-end;
}
.sl-search-bar__submit .sl-btn {
  height: 42px;
  white-space: nowrap;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.sl-steps {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .sl-steps { grid-template-columns: repeat(3, 1fr); }
}
.sl-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  box-shadow: var(--sl-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--sl-transition), transform var(--sl-transition);
}
.sl-step:hover {
  box-shadow: var(--sl-shadow-md);
  transform: translateY(-2px);
}
.sl-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sl-gold);
}
.sl-step__num {
  font-family: var(--sl-font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--sl-gold);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  opacity: .9;
}
.sl-step__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0 0 6px;
}
.sl-step__content p {
  font-size: 14px;
  color: var(--sl-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   STATE LINKS GRID
   ============================================================ */
.sl-state-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.sl-state-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  text-decoration: none;
  transition: all var(--sl-transition);
  border-left: 3px solid transparent;
}
.sl-state-link:hover {
  border-color: var(--sl-gray-200);
  border-left-color: var(--sl-gold);
  background: var(--sl-gold-dim);
  transform: translateX(2px);
}
.sl-state-link__name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sl-gray-700);
}
.sl-state-link:hover .sl-state-link__name { color: var(--sl-navy); }
.sl-state-link__count {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sl-gray-400);
  background: var(--sl-gray-100);
  padding: 1px 7px;
  border-radius: 20px;
}

/* ============================================================
   FEATURED LOCK CARDS (homepage premium)
   ============================================================ */
.sl-featured-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .sl-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sl-featured-grid { grid-template-columns: repeat(3, 1fr); }
}
.sl-lock-card {
  display: flex;
  flex-direction: column;
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-left: 3px solid var(--sl-gold);
  border-radius: var(--sl-radius-md);
  box-shadow: var(--sl-shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--sl-transition), box-shadow var(--sl-transition);
}
.sl-lock-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sl-shadow-md);
  color: inherit;
}
.sl-lock-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sl-gray-100);
  flex-shrink: 0;
}
.sl-lock-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.sl-lock-card:hover .sl-lock-card__img { transform: scale(1.04); }
.sl-lock-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sl-lock-card__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--sl-font-body);
}
.sl-lock-card__badge--rating {
  background: var(--sl-navy);
  color: var(--sl-gold);
}
.sl-lock-card__badge--tag {
  background: rgba(255,255,255,.92);
  color: var(--sl-gray-700);
}
.sl-lock-card__body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sl-lock-card__location {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sl-gray-400);
  margin: 0 0 5px;
}
.sl-lock-card__name {
  font-family: var(--sl-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0 0 4px;
  line-height: 1.3;
}
.sl-lock-card__meta {
  font-size: 12.5px;
  color: var(--sl-gray-400);
  margin: 0 0 10px;
}
.sl-lock-card__summary {
  font-size: 13.5px;
  color: var(--sl-gray-500);
  line-height: 1.55;
  margin: 0 0 12px;
  flex: 1;
}
.sl-lock-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.sl-lock-card__chip {
  font-size: 11.5px;
  background: var(--sl-gray-100);
  color: var(--sl-gray-600);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--sl-font-body);
  font-weight: 500;
}
.sl-lock-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--sl-gray-100);
}
.sl-lock-card__phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-navy-2);
}
.sl-lock-card__cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--sl-gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sl-lock-card:hover .sl-lock-card__cta { color: var(--sl-navy); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.sl-cta-banner {
  background: var(--sl-navy);
  border-radius: var(--sl-radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sl-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,214,10,.07) 0%, transparent 70%);
  pointer-events: none;
}
.sl-cta-banner h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--sl-white);
  margin: 0 0 12px;
  font-family: var(--sl-font-head);
}
.sl-cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin: 0 0 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   JOURNAL GRID + CARDS
   ============================================================ */
.sl-journal-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .sl-journal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sl-journal-grid { grid-template-columns: repeat(3, 1fr); }
}
.sl-journal-card {
  display: flex;
  flex-direction: column;
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--sl-shadow-sm);
  transition: transform var(--sl-transition), box-shadow var(--sl-transition);
}
.sl-journal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sl-shadow-md);
}
.sl-journal-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--sl-gray-100);
  display: block;
  transition: transform .3s ease;
}
.sl-journal-card:hover .sl-journal-card__img { transform: scale(1.03); }
.sl-journal-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sl-journal-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sl-gold);
  margin: 0 0 6px;
}
.sl-journal-card__title {
  font-family: var(--sl-font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0 0 8px;
  line-height: 1.35;
}
.sl-journal-card__excerpt {
  font-size: 13.5px;
  color: var(--sl-gray-500);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* ============================================================
   LISTING HERO
   ============================================================ */
.sl-listing-hero {
  background: var(--sl-navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.sl-listing-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sl-gold), #ffae00, var(--sl-gold));
}
.sl-listing-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--sl-font-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl-gold);
  margin: 0 0 10px;
}
.sl-listing-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--sl-white);
  margin: 0 0 10px;
  font-family: var(--sl-font-head);
  letter-spacing: -.02em;
}
.sl-listing-hero p {
  font-size: 15.5px;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 560px;
}
.sl-listing-hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.sl-listing-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sl-listing-hero__stat span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  font-family: var(--sl-font-body);
}
.sl-listing-hero__stat strong {
  font-family: var(--sl-font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--sl-gold);
}

/* ============================================================
   TOOLBAR
   ============================================================ */
.sl-toolbar {
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  padding: 20px;
  margin: 28px 0 24px;
  box-shadow: var(--sl-shadow-sm);
}
.sl-toolbar__grid {
  display: grid;
  gap: 12px;
  align-items: end;
}
@media (min-width: 768px) {
  .sl-toolbar__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  }
}
.sl-toolbar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sl-toolbar__field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sl-gray-500);
  font-family: var(--sl-font-body);
}
.sl-toolbar__field input,
.sl-toolbar__field select {
  height: 40px;
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  padding: 0 12px;
  font-size: 13.5px;
  font-family: var(--sl-font-body);
  color: var(--sl-gray-800);
  background: var(--sl-gray-50);
  outline: none;
  transition: border-color var(--sl-transition);
}
.sl-toolbar__field input:focus,
.sl-toolbar__field select:focus {
  border-color: var(--sl-navy-2);
  background: var(--sl-white);
}
.sl-toolbar__actions {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

/* ============================================================
   RESULTS
   ============================================================ */
.sl-results { margin-bottom: 48px; }
.sl-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.sl-results__head h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0;
}
.sl-results__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-gray-400);
  background: var(--sl-gray-100);
  padding: 3px 12px;
  border-radius: 20px;
}

/* ===== FILTER CHIPS ===== */
.sl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.sl-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--sl-navy);
  color: var(--sl-gold);
  text-decoration: none;
  transition: background var(--sl-transition);
  font-family: var(--sl-font-body);
}
.sl-chip:hover { background: var(--sl-navy-2); color: var(--sl-gold); }

/* ============================================================
   CARD GRID (listing results)
   ============================================================ */
.sl-card-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .sl-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sl-card-grid { grid-template-columns: repeat(3, 1fr); }
}
.sl-card {
  display: flex;
  flex-direction: column;
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-left: 3px solid transparent;
  border-radius: var(--sl-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--sl-shadow-sm);
  transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-left-color var(--sl-transition);
}
.sl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sl-shadow-md);
  border-left-color: var(--sl-gold);
  color: inherit;
}
.sl-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sl-gray-100);
}
.sl-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  display: block;
}
.sl-card:hover .sl-card__img img { transform: scale(1.04); }
.sl-card__tag {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  font-family: var(--sl-font-body);
}
.sl-card__tag--24h {
  top: 10px; left: 10px;
  background: var(--sl-green);
  color: var(--sl-white);
}
.sl-card__tag--rating {
  top: 10px; right: 10px;
  background: var(--sl-navy);
  color: var(--sl-gold);
}
.sl-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sl-card__location {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sl-gray-400);
  margin: 0 0 4px;
}
.sl-card__name {
  font-family: var(--sl-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0 0 8px;
  line-height: 1.3;
}
.sl-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.sl-card__chips span {
  font-size: 11px;
  background: var(--sl-gray-100);
  color: var(--sl-gray-600);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--sl-font-body);
  font-weight: 500;
}
.sl-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--sl-gray-100);
}
.sl-card__phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--sl-navy-2);
}
.sl-card__reviews {
  font-size: 12.5px;
  color: var(--sl-gray-500);
}
.sl-card__arrow {
  font-size: 14px;
  color: var(--sl-gray-400);
  transition: color var(--sl-transition), transform var(--sl-transition);
}
.sl-card:hover .sl-card__arrow {
  color: var(--sl-navy);
  transform: translateX(3px);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.sl-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.sl-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  color: var(--sl-gray-700);
  text-decoration: none;
  transition: all var(--sl-transition);
  font-family: var(--sl-font-body);
  background: var(--sl-white);
}
.sl-pagination a:hover { border-color: var(--sl-navy); color: var(--sl-navy); background: var(--sl-gold-dim); }
.sl-pagination a.is-active { background: var(--sl-navy); color: var(--sl-gold); border-color: var(--sl-navy); }
.sl-pagination a.is-disabled { opacity: .35; pointer-events: none; }

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.sl-detail-hero {
  background: var(--sl-navy);
  padding: 44px 0;
  position: relative;
}
.sl-detail-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sl-gold), #ffae00, var(--sl-gold));
}
.sl-detail-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sl-detail-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.sl-detail-hero__title {
  font-family: var(--sl-font-head);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--sl-white);
  margin: 0 0 10px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.sl-detail-hero__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0 0 12px;
}
.sl-detail-hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.sl-detail-hero__stars { display: flex; gap: 2px; }
.sl-detail-hero__rating strong { font-size: 16px; color: var(--sl-gold); }
.sl-detail-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.sl-detail-gallery {
  margin: 28px 0;
  border-radius: var(--sl-radius-lg);
  overflow: hidden;
  display: grid;
  gap: 4px;
  max-height: 420px;
  background: var(--sl-gray-100);
}
.sl-detail-gallery .gallery-main {
  overflow: hidden;
  height: 100%;
  max-height: none;
}
.sl-detail-gallery .gallery-side {
  display: grid;
  gap: 4px;
  height: 100%;
  max-height: none;
}
@media (min-width: 768px) {
  .sl-detail-gallery:not(.detail-gallery--single) {
    grid-template-columns: 2fr 1fr;
  }
}
.sl-detail-gallery .gallery-trigger {
  width: 100%; height: 100%;
  border: none; background: none; padding: 0;
  cursor: pointer; overflow: hidden; display: block;
}
.sl-detail-gallery .gallery-main img,
.sl-detail-gallery .gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 350ms ease;
}
.sl-detail-gallery .gallery-trigger:hover img { transform: scale(1.05); }
.sl-detail-gallery .gallery-card { position: relative; overflow: hidden; height: 100%; max-height: none; }
.sl-detail-gallery .gallery-card-photo-count figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(2px);
  color: var(--sl-white);
  font-weight: 700; font-size: 15px;
  letter-spacing: .06em; text-transform: uppercase;
  pointer-events: none;
  transition: background 250ms ease;
}
.sl-detail-gallery .gallery-card-photo-count:hover figcaption {
  background: rgba(0,0,0,.62);
}
.sl-detail__layout {
  display: grid;
  gap: 32px;
  margin: 0 0 60px;
}
@media (min-width: 900px) {
  .sl-detail__layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}
.sl-detail__main { min-width: 0; }
.sl-detail__aside {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sl-detail__section {
  padding: 28px 0;
  border-bottom: 1px solid var(--sl-gray-100);
}
.sl-detail__section--first { padding-top: 0; }
.sl-detail__lead {
  font-size: 16.5px;
  color: var(--sl-gray-700);
  line-height: 1.7;
  margin: 0 0 14px;
}
.sl-detail__subtext {
  font-size: 15px;
  color: var(--sl-gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ===== SECTION HEAD (detail) ===== */
.sl-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.sl-section-head h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0;
  flex: 1;
}
.sl-section-head__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--sl-gold-dim);
  border-radius: 8px;
  flex-shrink: 0;
}
.sl-section-head__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sl-navy-2);
  text-decoration: none;
}
.sl-section-head__link:hover { color: var(--sl-navy); }

/* ===== QUICK FACTS ===== */
.sl-quick-facts {
  display: flex;
  gap: 0;
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sl-quick-fact {
  flex: 1;
  min-width: 120px;
  padding: 16px 18px;
  border-right: 1px solid var(--sl-gray-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sl-quick-fact:last-child { border-right: none; }
.sl-quick-fact__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sl-gray-400);
  font-family: var(--sl-font-body);
}
.sl-quick-fact__value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sl-gray-900);
  font-family: var(--sl-font-head);
}

/* ===== HIGHLIGHTS ===== */
.sl-highlights {
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .sl-highlights { grid-template-columns: repeat(2, 1fr); }
}
.sl-highlight {
  background: var(--sl-gray-50);
  border: 1px solid var(--sl-gray-200);
  border-left: 3px solid var(--sl-gold);
  border-radius: var(--sl-radius-sm);
  padding: 16px 18px;
}
.sl-highlight__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sl-gray-400);
  margin: 0 0 4px;
  font-family: var(--sl-font-body);
}
.sl-highlight__value {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0 0 2px;
  font-family: var(--sl-font-head);
}
.sl-highlight__meta {
  font-size: 12.5px;
  color: var(--sl-gray-500);
  margin: 0;
}

/* ===== AMENITY CHIPS + GROUPS ===== */
.sl-amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.sl-amenity-chip {
  font-size: 12.5px;
  font-weight: 500;
  background: var(--sl-gold-dim);
  color: var(--sl-navy-2);
  border: 1px solid rgba(255,214,10,.25);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--sl-font-body);
}
.sl-amenity-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sl-amenity-group h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sl-gray-800);
  margin: 0 0 4px;
}
.sl-amenity-group p {
  font-size: 13.5px;
  color: var(--sl-gray-500);
  margin: 0;
}

/* ===== MAP ===== */
.sl-map {
  border-radius: var(--sl-radius-md);
  overflow: hidden;
  border: 1px solid var(--sl-gray-200);
}
.sl-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* ===== SNAPSHOT ===== */
.sl-snapshot {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  overflow: hidden;
}
.sl-snapshot__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 13px 18px;
  border-bottom: 1px solid var(--sl-gray-100);
}
.sl-snapshot__row:last-child { border-bottom: none; }
.sl-snapshot__row:nth-child(even) { background: var(--sl-gray-50); }
.sl-snapshot__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--sl-gray-400);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: var(--sl-font-body);
}
.sl-snapshot__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--sl-gray-900);
}
.sl-snapshot__meta {
  font-size: 12px;
  color: var(--sl-gray-400);
}

/* ===== BOOKING CHANNELS ===== */
.sl-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sl-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--sl-gray-50);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--sl-transition);
}
.sl-channel:hover {
  border-color: var(--sl-navy-2);
  background: var(--sl-white);
  box-shadow: var(--sl-shadow-sm);
}
.sl-channel__info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--sl-gray-900);
}
.sl-channel__info span {
  font-size: 12.5px;
  color: var(--sl-gray-400);
}
.sl-channel__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--sl-navy-2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== LINKED POST (detail page) ===== */
.sl-linked-post {
  display: flex;
  gap: 16px;
  background: var(--sl-gray-50);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--sl-transition);
}
.sl-linked-post:hover { box-shadow: var(--sl-shadow-md); color: inherit; }
.sl-linked-post__img {
  width: 140px;
  flex-shrink: 0;
  overflow: hidden;
}
.sl-linked-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sl-linked-post__body {
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sl-linked-post__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sl-gold);
}
.sl-linked-post__body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0;
  line-height: 1.35;
}
.sl-linked-post__body p {
  font-size: 13px;
  color: var(--sl-gray-500);
  margin: 0;
  line-height: 1.5;
}
.sl-linked-post__cta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sl-navy-2);
  margin-top: auto;
}

/* ===== SIDEBAR CTA ===== */
.sl-sidebar-cta {
  background: var(--sl-navy);
  border-radius: var(--sl-radius-lg);
  overflow: hidden;
  box-shadow: var(--sl-shadow-md);
}
.sl-sidebar-cta__head {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sl-sidebar-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sl-green);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: var(--sl-font-body);
  margin-bottom: 8px;
}
.sl-sidebar-cta__dot {
  width: 7px;
  height: 7px;
  background: var(--sl-green);
  border-radius: 50%;
  animation: sl-pulse 1.6s ease-in-out infinite;
}
.sl-sidebar-cta__head h2 {
  font-family: var(--sl-font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--sl-white);
  margin: 0;
}
.sl-sidebar-cta__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.sl-sidebar-cta__body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sl-sidebar-cta__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.sl-sidebar-cta__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.sl-sidebar-cta__row svg { flex-shrink: 0; opacity: .6; }

/* ===== SIDEBAR TIP ===== */
.sl-sidebar-tip {
  background: var(--sl-gold-dim);
  border: 1px solid rgba(255,214,10,.25);
  border-radius: var(--sl-radius-md);
  padding: 18px 20px;
}
.sl-sidebar-tip__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sl-gray-700);
  margin: 0 0 8px;
  font-family: var(--sl-font-body);
}
.sl-sidebar-tip p:last-child {
  font-size: 13.5px;
  color: var(--sl-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   RELATED SECTION (detail page)
   ============================================================ */
.sl-related {
  background: var(--sl-gray-50);
  padding: 56px 0;
  border-top: 1px solid var(--sl-gray-200);
}
.sl-related__eyebrow {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--sl-font-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl-gold);
  margin: 0 0 8px;
}
.sl-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sl-related__head h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 0;
}

/* ============================================================
   BLOG HERO
   ============================================================ */
.sl-blog-hero {
  background: var(--sl-navy);
  padding: 56px 0 48px;
  position: relative;
}
.sl-blog-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sl-gold), #ffae00, var(--sl-gold));
}
.sl-blog-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--sl-white);
  margin: 0 0 10px;
  font-family: var(--sl-font-head);
  letter-spacing: -.02em;
}
.sl-blog-hero p {
  font-size: 15.5px;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 560px;
}

/* ===== FEATURED FIRST (blog index) ===== */
.sl-featured-first {
  display: grid;
  gap: 0;
  background: var(--sl-gray-50);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.sl-featured-first__link {
  display: grid;
  gap: 0;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .sl-featured-first__link { grid-template-columns: 1fr 1fr; }
  .sl-featured-first__link img { aspect-ratio: auto; height: 100%; }
}
.sl-featured-first__link img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.sl-featured-first__body { padding: 28px; }
.sl-article-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sl-navy);
  background: var(--sl-gold-dim);
  border: 1px solid rgba(255,214,10,.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--sl-font-body);
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.sl-article { padding: 40px 0 60px; }
.sl-article__breadcrumb {
  font-size: 13px;
  color: var(--sl-gray-400);
  margin-bottom: 24px;
  line-height: 1.5;
}
.sl-article__breadcrumb a { color: var(--sl-gray-500); }
.sl-article__breadcrumb a:hover { color: var(--sl-navy); }
.sl-article__breadcrumb span { color: var(--sl-gray-700); }
.sl-article__hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--sl-radius-lg);
  display: block;
  margin-bottom: 36px;
  background: var(--sl-gray-100);
}
.sl-article__layout {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .sl-article__layout { grid-template-columns: 1fr 280px; }
}
.sl-article__main { min-width: 0; }
.sl-article__sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sl-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}
.sl-article__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sl-navy);
  background: var(--sl-gold-dim);
  border: 1px solid rgba(255,214,10,.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--sl-font-body);
}
.sl-article__title {
  font-family: var(--sl-font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--sl-gray-900);
  line-height: 1.18;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.sl-article__excerpt {
  font-size: 17px;
  color: var(--sl-gray-600);
  line-height: 1.7;
  margin: 0 0 20px;
}
.sl-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sl-article__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sl-navy);
  color: var(--sl-gold);
  font-family: var(--sl-font-head);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-article__author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--sl-gray-900);
}
.sl-article__author-role {
  font-size: 12.5px;
  color: var(--sl-gray-400);
}
.sl-testimonial {
  margin: 0;
  padding: 24px 28px;
  background: var(--sl-gray-50);
  border-left: 4px solid var(--sl-gold);
  border-radius: 0 var(--sl-radius-md) var(--sl-radius-md) 0;
  position: relative;
}
.sl-testimonial__icon {
  display: block;
  margin-bottom: 12px;
  opacity: .35;
}
.sl-testimonial__text {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--sl-gray-700);
  font-style: italic;
}
.sl-testimonial__source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sl-gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sl-testimonial__stars { display: flex; gap: 2px; }

.sl-article__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--sl-gray-700);
}
.sl-article__body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 36px 0 14px;
  font-family: var(--sl-font-head);
}
.sl-article__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 28px 0 10px;
  font-family: var(--sl-font-head);
}
.sl-article__body p { margin: 0 0 20px; }
.sl-article__body ul,
.sl-article__body ol {
  padding-left: 24px;
  margin: 0 0 20px;
}
.sl-article__body li { margin-bottom: 6px; }
.sl-article__body blockquote {
  border-left: 4px solid var(--sl-gold);
  padding: 14px 20px;
  background: var(--sl-gold-dim);
  border-radius: 0 var(--sl-radius-sm) var(--sl-radius-sm) 0;
  font-style: italic;
  color: var(--sl-gray-700);
  margin: 24px 0;
}
.sl-article__body a { color: var(--sl-navy-2); text-decoration: underline; }
.sl-article__body a:hover { color: var(--sl-navy); }
.sl-article__body strong { color: var(--sl-gray-900); }
.sl-article__nav {
  display: grid;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--sl-gray-200);
}
@media (min-width: 640px) { .sl-article__nav { grid-template-columns: 1fr 1fr; } }
.sl-article__nav a {
  padding: 16px 18px;
  background: var(--sl-gray-50);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--sl-transition);
}
.sl-article__nav a:hover { border-color: var(--sl-navy-2); box-shadow: var(--sl-shadow-sm); }
.sl-article__nav-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sl-gray-400);
  margin: 0 0 4px;
  font-family: var(--sl-font-body);
}
.sl-article__nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--sl-gray-800);
  margin: 0;
}

/* ===== TOC ===== */
.sl-toc {
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-left: 3px solid var(--sl-gold);
  border-radius: var(--sl-radius-md);
  padding: 18px 20px;
}
.sl-toc__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sl-gray-400);
  margin: 0 0 10px;
  font-family: var(--sl-font-body);
}
.sl-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sl-toc__nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--sl-gray-600);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1px solid var(--sl-gray-100);
  transition: color var(--sl-transition);
}
.sl-toc__nav a:last-child { border-bottom: none; }
.sl-toc__nav a:hover { color: var(--sl-navy); }
.sl-toc__nav a.level-3 { padding-left: 14px; font-size: 12.5px; }

/* ===== SIDEBAR CARD (article) ===== */
.sl-sidebar-card {
  background: var(--sl-navy);
  border-radius: var(--sl-radius-md);
  padding: 20px;
  color: var(--sl-white);
}
.sl-sidebar-card h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sl-white);
  margin: 0 0 8px;
}
.sl-sidebar-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.sl-about { padding: 56px 0; }
.sl-about__layout {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .sl-about__layout { grid-template-columns: 1fr 280px; }
}
.sl-about__main { min-width: 0; }
.sl-about__lead {
  font-size: 17px;
  color: var(--sl-gray-600);
  line-height: 1.7;
  margin: 0 0 32px;
}
.sl-about__body {
  font-size: 15.5px;
  color: var(--sl-gray-700);
  line-height: 1.75;
}
.sl-about__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sl-gray-900);
  margin: 36px 0 12px;
  font-family: var(--sl-font-head);
  padding-top: 20px;
  border-top: 1px solid var(--sl-gray-100);
}
.sl-about__body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.sl-about__body p { margin: 0 0 16px; }
.sl-about__body ul { padding-left: 20px; margin: 0 0 16px; }
.sl-about__body li { margin-bottom: 6px; }
.sl-about__body a { color: var(--sl-navy-2); text-decoration: underline; }
.sl-about__sidebar {
  position: sticky;
  top: 80px;
}
.sl-about__info-card {
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-md);
  overflow: hidden;
}
.sl-about__info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--sl-gray-100);
  align-items: baseline;
}
.sl-about__info-row:last-child { border-bottom: none; }
.sl-about__info-row span {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sl-gray-400);
  font-family: var(--sl-font-body);
  flex-shrink: 0;
}
.sl-about__info-row p {
  font-size: 14px;
  font-weight: 600;
  color: var(--sl-gray-800);
  margin: 0;
  text-align: right;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.sl-contact { padding: 56px 0; }
.sl-contact__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.sl-contact__header h1 { font-size: 36px; font-weight: 800; }
.sl-contact__header p { font-size: 16px; color: var(--sl-gray-500); margin: 0; }
.sl-contact__layout {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 768px) {
  .sl-contact__layout { grid-template-columns: 1fr 1.4fr; }
}
.sl-contact__info h2 { font-size: 20px; font-weight: 700; margin: 0 0 16px; }
.sl-contact__info-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--sl-gray-200); border-radius: var(--sl-radius-md); overflow: hidden; margin-bottom: 24px; }
.sl-contact__info-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--sl-gray-100);
  align-items: center;
}
.sl-contact__info-item:last-child { border-bottom: none; }
.sl-contact__info-item span { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sl-gray-400); font-family: var(--sl-font-body); }
.sl-contact__info-item a, .sl-contact__info-item strong { font-size: 14px; font-weight: 600; color: var(--sl-navy-2); }
.sl-contact__help-cards { display: flex; flex-direction: column; gap: 10px; }
.sl-contact__help-card {
  padding: 16px 18px;
  background: var(--sl-gold-dim);
  border: 1px solid rgba(255,214,10,.25);
  border-radius: var(--sl-radius-sm);
  border-left: 3px solid var(--sl-gold);
}
.sl-contact__help-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--sl-gray-900); margin-bottom: 3px; }
.sl-contact__help-card span { font-size: 13px; color: var(--sl-gray-500); line-height: 1.5; }
.sl-contact__form-card {
  background: var(--sl-white);
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-lg);
  padding: 32px;
  box-shadow: var(--sl-shadow-sm);
}
.sl-contact__form-card h2 { font-size: 22px; font-weight: 700; margin: 0 0 6px; }
.sl-contact__form {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .sl-contact__form { grid-template-columns: 1fr 1fr; }
}
.sl-contact__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sl-contact__field span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sl-gray-500);
  font-family: var(--sl-font-body);
}
.sl-contact__field input,
.sl-contact__field textarea {
  border: 1px solid var(--sl-gray-200);
  border-radius: var(--sl-radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--sl-font-body);
  color: var(--sl-gray-800);
  background: var(--sl-gray-50);
  outline: none;
  transition: border-color var(--sl-transition);
}
.sl-contact__field input:focus,
.sl-contact__field textarea:focus { border-color: var(--sl-navy-2); background: var(--sl-white); }
.sl-contact__field textarea { resize: vertical; min-height: 120px; }
.sl-contact__field small { font-size: 12px; color: #dc2626; }
.sl-contact__field--full { grid-column: 1 / -1; }

/* ============================================================
   404 PAGE
   ============================================================ */
.sl-404 {
  padding: 80px 0;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.sl-404 .sl-wrap { width: 100%; }
.sl-404__code {
  font-family: var(--sl-font-head);
  font-size: 96px;
  font-weight: 800;
  color: var(--sl-gold);
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -.04em;
}
.sl-404 h1 { font-size: 32px; font-weight: 700; margin: 0 0 12px; }
.sl-404 p { font-size: 16px; color: var(--sl-gray-500); margin: 0 0 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   POLICY PAGE
   ============================================================ */
.sl-policy { padding: 56px 0; }
.sl-policy__layout {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .sl-policy__layout { grid-template-columns: 1fr 240px; }
}
.sl-policy__main { min-width: 0; }
.sl-policy__lead { font-size: 16px; color: var(--sl-gray-500); margin: 0 0 32px; line-height: 1.7; }
.sl-policy__body {
  font-size: 15px;
  color: var(--sl-gray-700);
  line-height: 1.75;
}
.sl-policy__body section { margin-bottom: 32px; }
.sl-policy__body h2 { font-size: 19px; font-weight: 700; color: var(--sl-gray-900); margin: 0 0 10px; font-family: var(--sl-font-head); }
.sl-policy__body p { margin: 0 0 12px; }
.sl-policy__body ul { padding-left: 20px; margin: 0 0 12px; }
.sl-policy__body li { margin-bottom: 5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.sl-footer {
  background: var(--sl-navy-2);
  padding: 56px 0 0;
  margin-top: auto;
}
.sl-footer__inner {
  display: grid;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sl-footer__inner { grid-template-columns: 1fr auto; }
}
.sl-footer__brand h3 {
  font-family: var(--sl-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--sl-white);
  margin: 0 0 8px;
}
.sl-footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin: 0;
  max-width: 340px;
  line-height: 1.6;
}
.sl-footer__brand a { color: rgba(255,255,255,.6); text-decoration: underline; }
.sl-footer__brand a:hover { color: var(--sl-gold); }
.sl-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-content: flex-start;
}
.sl-footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-family: var(--sl-font-body);
  transition: color var(--sl-transition);
}
.sl-footer__links a:hover { color: var(--sl-gold); }
.sl-footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .sl-section { padding: 44px 0; }
  .sl-hero { padding: 56px 0 48px; }
  .sl-hero__stats { gap: 12px; }
  .sl-hero__stat-value { font-size: 30px; }
  .sl-search-bar { margin-top: -16px; padding: 16px; }
  .sl-detail__layout { grid-template-columns: 1fr; }
  .sl-detail__aside { position: static; }
  .sl-article__layout { grid-template-columns: 1fr; }
  .sl-article__sidebar { position: static; }
  .sl-about__layout { grid-template-columns: 1fr; }
  .sl-about__sidebar { position: static; }
  .sl-policy__layout { grid-template-columns: 1fr; }
  .sl-contact__layout { grid-template-columns: 1fr; }
  .sl-cta-banner { padding: 36px 24px; }
  .sl-cta-banner h2 { font-size: 24px; }
  .sl-detail-gallery { aspect-ratio: 4/3; }
  .sl-snapshot__row { grid-template-columns: 120px 1fr; }
  .sl-quick-fact { min-width: 50%; }
  .sl-footer__inner { grid-template-columns: 1fr; }
  .sl-404__code { font-size: 64px; }
  .sl-linked-post__img { width: 100px; }
  .sl-hero__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sl-wrap { padding: 0 16px; }
  .sl-hero__title { font-size: 28px; }
  .sl-hero__actions { flex-direction: column; align-items: flex-start; }
  .sl-btn--lg { width: 100%; justify-content: center; }
  .sl-contact__form-card { padding: 20px; }
  .sl-nav__inner { padding: 0 16px; }
  .sl-featured-grid { grid-template-columns: 1fr; }
  .sl-journal-grid { grid-template-columns: 1fr; }
  .sl-card-grid { grid-template-columns: 1fr; }
  .sl-steps { grid-template-columns: 1fr; }
  .sl-linked-post { flex-direction: column; }
  .sl-linked-post__img { width: 100%; height: 160px; }
}

/* ====================================================
   DISPATCH PANEL (Homepage Redesign)
   ==================================================== */

.sl-dispatch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--sl-navy);
}

.sl-dispatch__left {
  padding: 64px 48px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid rgba(255,214,10,.15);
}

.sl-dispatch__live {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--sl-gold);
  text-transform: uppercase;
}

.sl-dispatch__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e676;
  animation: sl-pulse 1.4s ease-in-out infinite;
}

@keyframes sl-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}

.sl-dispatch__title {
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.sl-dispatch__em {
  display: block;
  color: var(--sl-gold);
  font-style: normal;
}

.sl-dispatch__desc {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

.sl-dispatch__inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sl-dispatch__input,
.sl-dispatch__select {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,214,10,.25);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}

.sl-dispatch__input::placeholder { color: rgba(255,255,255,.4); }

.sl-dispatch__input:focus,
.sl-dispatch__select:focus {
  border-color: var(--sl-gold);
}

.sl-dispatch__select option { background: var(--sl-navy); color: #fff; }

.sl-btn--gold {
  background: var(--sl-gold);
  color: var(--sl-navy);
  font-weight: 800;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.sl-btn--gold:hover { opacity: .9; }

.sl-dispatch__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

.sl-dispatch__right {
  background: rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sl-dispatch__feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,214,10,.1);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

.sl-dispatch__feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sl-gold);
}

.sl-dispatch__feed {
  flex: 1;
  overflow-y: auto;
}

.sl-feed-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: background .15s;
}
.sl-feed-item:hover { background: rgba(255,214,10,.06); }

.sl-feed-item__img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.1);
}

.sl-feed-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sl-feed-item__loc {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sl-feed-item__name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sl-feed-item__rating {
  font-size: .75rem;
  color: var(--sl-gold);
}
.sl-feed-item__reviews { color: rgba(255,255,255,.4); }

.sl-feed-item__phone {
  font-size: .78rem;
  font-weight: 700;
  color: var(--sl-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.sl-dispatch__feed-more {
  padding: 16px 32px;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--sl-gold);
  text-decoration: none;
  border-top: 1px solid rgba(255,214,10,.1);
  letter-spacing: .05em;
  transition: opacity .2s;
}
.sl-dispatch__feed-more:hover { opacity: .8; }

/* Stats Bar */
.sl-stats-bar {
  background: var(--sl-gold);
  padding: 18px 0;
}
.sl-stats-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.sl-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 4px 24px;
}
.sl-stats-bar__item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sl-navy);
  line-height: 1;
}
.sl-stats-bar__item span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(13,27,42,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
}
.sl-stats-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(13,27,42,.2);
}

/* Service Grid */
.sl-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.sl-service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border-radius: 12px;
  background: var(--sl-navy);
  border: 1.5px solid rgba(13,27,42,.12);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}
.sl-service-tile:hover {
  border-color: var(--sl-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,27,42,.12);
}
.sl-service-tile--all {
  border-style: dashed;
}
.sl-service-tile__icon { font-size: 1.8rem; }
.sl-service-tile__label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-align: center;
  letter-spacing: .03em;
}

/* Section dark variant */
.sl-section--dark {
  background: var(--sl-navy);
  padding: 60px 0;
}

.sl-coverage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.sl-coverage-head h2,
.sl-section__eyebrow--light { color: rgba(255,255,255,.85); }

.sl-coverage-sub {
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  font-size: .95rem;
}

/* State tiles */
.sl-state-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
}

.sl-state-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.sl-state-tile:hover {
  background: rgba(255,214,10,.12);
  border-color: rgba(255,214,10,.3);
}
.sl-state-tile__name {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.sl-state-tile__count {
  font-size: .7rem;
  color: var(--sl-gold);
  font-weight: 700;
}

/* Ranked List Cards */
.sl-list-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid rgba(13,27,42,.1);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
}

.sl-list-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(13,27,42,.08);
  background: #fff;
  transition: background .15s;
}
.sl-list-card:last-child { border-bottom: none; }
.sl-list-card:hover { background: #f8f6ee; }

.sl-list-card__num {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(13,27,42,.12);
  flex-shrink: 0;
  width: 36px;
  text-align: right;
  line-height: 1;
}

.sl-list-card__img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(13,27,42,.08);
}

.sl-list-card__body {
  flex: 1;
  min-width: 0;
}

.sl-list-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.sl-list-card__loc {
  display: block;
  font-size: .72rem;
  color: rgba(13,27,42,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sl-list-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sl-navy);
  margin: 2px 0 0;
}

.sl-list-card__rating {
  text-align: right;
  font-size: .9rem;
  font-weight: 800;
  color: var(--sl-navy);
  flex-shrink: 0;
  line-height: 1.3;
}
.sl-list-card__rating small { font-weight: 400; font-size: .72rem; color: rgba(13,27,42,.5); }

.sl-list-card__summary {
  font-size: .85rem;
  color: rgba(13,27,42,.6);
  line-height: 1.5;
  margin: 0 0 8px;
}

.sl-list-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sl-list-card__chip {
  background: rgba(13,27,42,.06);
  color: rgba(13,27,42,.7);
  font-size: .72rem;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
}

.sl-list-card__phone {
  font-size: .85rem;
  font-weight: 800;
  color: var(--sl-gold-dark, #c9a800);
  flex-shrink: 0;
  white-space: nowrap;
}
.sl-list-card__phone--view { color: var(--sl-navy); font-weight: 700; }

/* Article list */
.sl-article-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.sl-article-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(13,27,42,.1);
  text-decoration: none;
  transition: opacity .2s;
}
.sl-article-item:first-child { border-top: 1px solid rgba(13,27,42,.1); }
.sl-article-item:hover { opacity: .8; }

.sl-article-item__img {
  width: 88px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.sl-article-item__body { flex: 1; min-width: 0; }

.sl-article-item__cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sl-gold-dark, #b8960a);
  margin-bottom: 4px;
}

.sl-article-item__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--sl-navy);
  margin: 0 0 4px;
  line-height: 1.35;
}

.sl-article-item__excerpt {
  font-size: .82rem;
  color: rgba(13,27,42,.55);
  margin: 0;
  line-height: 1.5;
}

.sl-article-item__arrow {
  font-size: 1.2rem;
  color: var(--sl-gold-dark, #b8960a);
  flex-shrink: 0;
  font-weight: 700;
}

/* Responsive */
@media (max-width:900px) {
  .sl-dispatch { grid-template-columns: 1fr; min-height: auto; }
  .sl-dispatch__right { min-height: 360px; }
  .sl-dispatch__left { padding: 40px 24px; }
  .sl-service-grid { grid-template-columns: repeat(3,1fr); }
  .sl-stats-bar__inner { gap: 0; }
}

@media (max-width:600px) {
  .sl-service-grid { grid-template-columns: repeat(2,1fr); }
  .sl-list-card { flex-wrap: wrap; }
  .sl-list-card__phone { width: 100%; }
}

/* ====================================================
   BUTTON HOVER FIXES
   ==================================================== */

/* Gold button — proper hover: darker gold bg + subtle lift */
.sl-btn--gold {
  transition: background .18s, transform .18s, box-shadow .18s;
}

.sl-btn--gold:hover {
  opacity: 1;
  background: #e6be00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,214,10,.35);
}

.sl-btn--gold:active {
  transform: translateY(0);
  background: #c9a800;
  box-shadow: none;
}

/* Primary button hover consistency */
.sl-btn--primary:hover {
  opacity: 1;
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Outline hover on dark bg */
.sl-btn--outline-light:hover {
  background: rgba(255,255,255,.12);
}

/* ====================================================
   LIST CARD FIXES
   ==================================================== */

/* Reduce left padding, tighten number width */
.sl-list-card {
  padding: 18px 20px;
  gap: 16px;
}

.sl-list-card__num {
  width: 24px;
  font-size: 1.1rem;
}

/* Vertically center the rating with name */
.sl-list-card__top {
  align-items: center;
}

.sl-list-card__rating {
  line-height: 1.4;
  text-align: right;
}

/* Mobile: stack cleanly */
@media (max-width: 640px) {
  .sl-list-card {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .sl-list-card__num {
    width: 20px;
    font-size: .9rem;
    align-self: center;
  }

  .sl-list-card__img {
    width: 60px;
    height: 60px;
    align-self: center;
  }

  /* Body fills remaining width on first row */
  .sl-list-card__body {
    flex: 1;
    min-width: 0;
  }

  .sl-list-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .sl-list-card__rating {
    text-align: left;
    font-size: .82rem;
  }

  /* Phone goes full row below */
  .sl-list-card__phone {
    flex: 0 0 100%;
    padding-top: 8px;
    border-top: 1px solid rgba(13,27,42,.07);
    font-size: .9rem;
  }
}

/* ====================================================
   RANKED LIST REDESIGN
   ==================================================== */

.sl-ranked-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.sl-ranked-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px 20px 20px;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid var(--sl-gold, #FFD60A);
  box-shadow: 0 2px 12px rgba(13,27,42,.07);
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-left-color .18s;
  position: relative;
}

.sl-ranked-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(13,27,42,.12);
  border-left-color: var(--sl-navy, #0D1B2A);
}

/* Rank badge */
.sl-ranked-card__rank {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sl-gold, #FFD60A);
  color: var(--sl-navy, #0D1B2A);
  font-size: .78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  align-self: flex-start;
  margin-top: 4px;
}

/* Image */
.sl-ranked-card__img {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(13,27,42,.08);
}

/* Body */
.sl-ranked-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sl-ranked-card__loc {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(13,27,42,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.sl-ranked-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sl-navy, #0D1B2A);
  margin: 0;
  line-height: 1.3;
}

.sl-ranked-card__summary {
  font-size: .83rem;
  color: rgba(13,27,42,.55);
  line-height: 1.55;
  margin: 0;
}

.sl-ranked-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.sl-ranked-card__tag {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(13,27,42,.6);
  background: rgba(13,27,42,.06);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: .02em;
}

/* Right aside */
.sl-ranked-card__aside {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 140px;
}

.sl-ranked-card__score-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.sl-ranked-card__score {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--sl-navy, #0D1B2A);
  line-height: 1;
}

.sl-ranked-card__stars {
  font-size: .9rem;
  letter-spacing: 1px;
  line-height: 1;
}

.sl-star--on  { color: var(--sl-gold, #FFD60A); }
.sl-star--off { color: rgba(13,27,42,.18); }

.sl-ranked-card__reviews {
  font-size: .72rem;
  color: rgba(13,27,42,.4);
  font-weight: 500;
}

.sl-ranked-card__call {
  display: inline-block;
  background: var(--sl-navy, #0D1B2A);
  color: var(--sl-gold, #FFD60A);
  font-size: .78rem;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: background .15s;
}

.sl-ranked-card:hover .sl-ranked-card__call {
  background: var(--sl-gold, #FFD60A);
  color: var(--sl-navy, #0D1B2A);
}

.sl-ranked-card__call--view {
  background: transparent;
  color: rgba(13,27,42,.5);
  border: 1px solid rgba(13,27,42,.15);
}

/* Mobile */
@media (max-width: 640px) {
  .sl-ranked-card {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px;
  }

  .sl-ranked-card__rank {
    width: 26px;
    height: 26px;
    font-size: .72rem;
  }

  .sl-ranked-card__img {
    width: 68px;
    height: 68px;
  }

  .sl-ranked-card__body {
    flex: 1;
    min-width: 0;
  }

  .sl-ranked-card__aside {
    flex: 0 0 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(13,27,42,.07);
    min-width: unset;
  }

  .sl-ranked-card__score-block {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .sl-ranked-card__score {
    font-size: 1rem;
  }
}

/* Ranked card — simplified, no left border, no translate hover */
.sl-ranked-card {
  border-left: none;
  border: 1px solid rgba(13,27,42,.1);
  box-shadow: 0 1px 4px rgba(13,27,42,.05);
}

.sl-ranked-card:hover {
  transform: none;
  box-shadow: 0 3px 12px rgba(13,27,42,.1);
  border-color: rgba(13,27,42,.2);
}
