/* ─────────────────────────────────────────────────────────────
   Standard company link branding
   Links must never fall back to the browser-default bright blue.
   • Header / nav / CTA / logo / skip link → gold (brand chrome)
   • Inline content links → bronze
   Page-specific themes (home-lux, lead-kit) still win via higher
   specificity, so this only fills in where a page defines nothing.
   ───────────────────────────────────────────────────────────── */
:root {
  --brand-gold: #b8975e;
  --brand-gold-bright: #d4c4a0;
  --brand-link: #c88a4a;
  --brand-link-hover: #e0a566;
  --brand-nav-text: rgba(248, 246, 242, 0.82);
}

/* Inline content links — bronze default (low specificity: page themes win). */
body a:not(.btn) {
  color: var(--brand-link);
}

body a:not(.btn):hover,
body a:not(.btn):focus {
  color: var(--brand-link-hover);
}

/* Header chrome uses the lk-lux markup across the site. Theme it directly so
   pages that don't load the lead-kit stylesheet don't fall back to blue.
   !important keeps the chrome gold above the inline-link default. */
.skip-link {
  color: var(--brand-gold-bright) !important;
}

.lk-lux-logo {
  color: var(--brand-gold-bright) !important;
  text-decoration: none !important;
}

.lk-lux-logo span {
  color: rgba(248, 246, 242, 0.75) !important;
}

.lk-lux-nav a {
  color: var(--brand-nav-text) !important;
  text-decoration: none !important;
  transition: color 0.15s;
}

.lk-lux-nav a:hover,
.lk-lux-nav a:focus,
.lk-lux-nav a[aria-current="page"] {
  color: var(--brand-gold-bright) !important;
}

.lk-lux-nav-cta {
  color: var(--brand-gold-bright) !important;
  text-decoration: none !important;
}

.lk-lux-nav-cta:hover,
.lk-lux-nav-cta:focus {
  color: #fff !important;
}

/* Ghost buttons rendered as anchors shouldn't read as blue links either. */
a.btn-ghost {
  color: var(--brand-gold-bright);
}

/* Unified products nav dropdown + catalog grid */
.site-nav-bucket-label {
  margin: 0.65rem 0 0.25rem;
  padding: 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(184, 151, 94, 0.95);
}

.home-lux-nav-dropdown .site-nav-bucket-label:first-of-type {
  margin-top: 0.35rem;
}

.home-lux-nav-dropdown a .site-nav-item-price {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(235, 248, 245, 0.65);
}

.home-lux-nav-dropdown {
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.products-catalog-hub {
  padding: 2.5rem 1.25rem 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.products-catalog-hub-lead {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: rgba(235, 248, 245, 0.88);
  line-height: 1.65;
}

.products-catalog-bucket {
  margin-bottom: 2.5rem;
}

.products-catalog-bucket h2 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 0.35rem;
}

.products-catalog-bucket-lead {
  margin: 0 0 1rem;
  color: rgba(235, 248, 245, 0.78);
  font-size: 0.95rem;
}

.products-catalog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.products-catalog-card {
  border: 1px solid rgba(184, 151, 94, 0.28);
  border-radius: 12px;
  background: rgba(12, 40, 36, 0.55);
  padding: 1.1rem 1rem;
}

.products-catalog-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
}

.products-catalog-price {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #d4b06a;
  font-size: 0.9rem;
}

.products-catalog-card p:last-of-type {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(235, 248, 245, 0.85);
}

/* Gold product CTA — site-wide standard */
.btn-product-gold,
.products-catalog-link.btn-product-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 4px;
  background: linear-gradient(180deg, #d4c4a0 0%, #b8975e 50%, #8f7549 100%);
  color: #071a18 !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.btn-product-gold:hover,
.products-catalog-link.btn-product-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.btn-product-gold--current {
  box-shadow: 0 0 0 2px rgba(212, 196, 160, 0.7), 0 2px 10px rgba(0, 0, 0, 0.22);
}

.arp-product-gold-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.arp-product-gold-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(235, 248, 245, 0.55);
}

.products-catalog-soon {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.65rem;
  vertical-align: middle;
}

.home-lux-nav-start--expert {
  background: linear-gradient(135deg, #b8975e 0%, #d4b06a 100%);
  color: #071a18 !important;
  border-color: transparent;
  font-weight: 700;
}

.home-lux-nav-start--expert:hover {
  filter: brightness(1.05);
}

.home-specialist-band {
  padding: 2.75rem 1.25rem;
  background: linear-gradient(180deg, rgba(12, 40, 36, 0.9) 0%, rgba(7, 26, 24, 0.95) 100%);
  border-top: 1px solid rgba(184, 151, 94, 0.2);
  border-bottom: 1px solid rgba(184, 151, 94, 0.2);
}

.home-specialist-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.home-specialist-inner h2 {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 0.75rem;
}

.home-specialist-inner p {
  margin: 0 0 1.25rem;
  color: rgba(235, 248, 245, 0.9);
  line-height: 1.65;
}

.home-specialist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Progressive checklist gate */
body.sample-lead-locked #checklist-gate,
body.sample-lead-locked #sample-secondary-offers,
body.sample-lead-locked .sample-sticky-cta[href="#unlock-full-checklist"] {
  display: none !important;
}

body.sample-lead-unlocked #checklist-gate-locked-hint {
  display: none;
}

#checklist-gate-locked-hint {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px dashed rgba(184, 151, 94, 0.45);
  color: rgba(235, 248, 245, 0.88);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.lk-lux-hero-cta--ghost {
  background: transparent;
  border: 1px solid rgba(184, 151, 94, 0.5);
  color: #d4b06a;
}

body.home-lux-page .hero-inner.hero-layout--minimal {
  display: block;
  max-width: 44rem;
}

body.home-lux-page .hero-inner.hero-layout--minimal .hero-copy {
  max-width: none;
}

body.home-lux-page .home-lux-nav--minimal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

body.home-lux-page .home-lux-nav--minimal .home-lux-nav-item {
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
}

body.home-lux-page .home-lux-nav-item--portal {
  color: var(--home-gold, #d6bc82);
  font-weight: 600;
}

@media (min-width: 821px) {
  body.home-lux-page .home-lux-header-inner .home-lux-nav-panel {
    margin-left: auto;
  }

  body.home-lux-page .home-lux-header-inner .header-trust-badge {
    margin-left: auto;
    margin-right: 1.25rem;
  }
}

body.home-lux-page .home-hero-cta-dominant--minimal {
  margin-top: 1.5rem;
}

body.home-lux-page .home-hero-cta-dominant--minimal .btn-dominant {
  min-width: 14rem;
}

/* Homepage: hide RevOptix co-brand badges if injected elsewhere */
body.home-lux-page .home-lux-header-badge,
body.home-lux-page .home-lux-header .tc-brand-badge--powered,
body.arp-hub-page .home-lux-header-badge,
body.arp-hub-page .home-lux-header .tc-brand-badge--powered,
body.home-lux-page .tc-brand-bridge,
body.home-lux-page .home-lux-header-cta,
body.home-lux-page .hero-preview,
body.home-lux-page .home-press-cta {
  display: none !important;
}

@media (max-width: 900px) {
  .lk-lux-header-inner {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .lk-lux-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .lk-lux-nav-cta {
    margin-left: auto;
  }
}
