/* ============================================================
   The Liquidity Network - Shared site stylesheet
   Canonical source: index.html inline <style>
   Loaded BEFORE each page's inline <style> so inline overrides win.
   Concerns: design tokens, base reset, container, nav, buttons,
   type scale, footer, and shared nav/footer/type responsive rules.
   ============================================================ */

/* DESIGN TOKENS */
:root {
  --bg: #050505;
  --bg-2: #0d0d0d;
  --bg-3: #141414;
  --gold: #C4AD82;
  --gold-2: #DDD0B8;
  --gold-3: #D2C49E;
  --gold-dark: #A89060;
  --gold-peak: #DDD0B8;
  --gold-dim: rgba(196,173,130,0.18);
  --text: #f5f5f5;
  --text-dim: #c4c4c4;
  --text-mute: #888;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(196,173,130,0.4);
}

/* BASE RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-2); }

/* CONTAINER */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* NAV, floating glass pill */
nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  padding: 18px 24px 10px;
}
nav .container {
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
  max-width: 1360px;
  background: rgba(12,12,12,0.70);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(196,173,130,0.16);
  border-radius: 20px;
  padding: 10px 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
nav .container:hover { border-color: rgba(196,173,130,0.30); }
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #DDD0B8 0%, #D2C49E 15%, #DDD0B8 30%, #C4AD82 50%, #7A6840 70%, #C4AD82 85%, #D2C49E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-right { display: flex; gap: 4px; align-items: center; flex-wrap: nowrap; }
.nav-link {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 9px 14px;
  border-radius: 11px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link::after { display: none; }
.nav-link:hover { color: var(--text); background: rgba(196,173,130,0.10); }
.nav-link.active { color: var(--gold); background: rgba(196,173,130,0.09); }
.nav-phone { white-space: nowrap; font-size: 14px !important; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 252px; margin-top: 14px;
  background: rgba(14,14,14,0.97);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(196,173,130,0.22);
  border-radius: 14px; padding: 10px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 300;
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 20px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 9px;
  color: var(--text-dim); font-size: 14px; font-weight: 500; white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown-menu a:hover { background: rgba(196,173,130,0.12); color: var(--gold-2); }
nav .btn { padding: 11px 22px; font-size: 11px; letter-spacing: 1.2px; white-space: nowrap; border-radius: 12px; margin-left: 8px; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 6px 24px rgba(196,173,130,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold-2) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(196,173,130,0.4); }
.btn:hover::before { opacity: 1; }
.btn > span { position: relative; z-index: 1; }
.btn-lg { padding: 18px 44px; font-size: 15px; }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  box-shadow: none;
}
.btn-outline:hover { background: var(--gold-dim); color: var(--gold-2); }

/* TYPE SCALE */
.gold-text {
  font-family: 'Playfair Display', serif !important;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.85;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  margin-bottom: 28px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.2px;
}
.section-sub {
  color: var(--text-dim);
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.center .section-sub { margin-left: auto; margin-right: auto; }

/* FOOTER */
footer {
  background: #020202;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 13px;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-col h5 {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--text-mute);
  margin-bottom: 12px;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-tagline { color: var(--text-dim); margin-top: 20px; max-width: 320px; line-height: 1.6; }
.footer-contact { color: var(--text); font-size: 15px; margin-top: 20px; }
.disclosure-block {
  font-size: 12px;
  color: #999;
  line-height: 1.7;
  margin-top: 0;
}
.disclosure-block p { margin-bottom: 12px; }
.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  color: #888;
  font-size: 12px;
}

/* SHARED NAV / FOOTER / TYPE RESPONSIVE RULES */
@media (max-width: 968px) {
  .nav-right .nav-link { display: none; }
  .nav-dropdown { display: none; }
}
@media (max-width: 768px) {
  .logo-desktop { display: none !important; }
  .logo-mobile { display: block !important; }
  .nav-right { display: none !important; }
  nav .container { justify-content: center !important; }
  nav { padding: 16px 0; }
  .section-sub { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr !important; }
}

/* BREADCRUMBS
   Second <nav class="breadcrumbs"> per page, labelled aria-label="Breadcrumb".
   The class selector (.breadcrumbs) outranks the element selector (nav) on
   specificity, so position/z-index/padding below override the sticky glass-pill
   nav rule above. The glass-pill background lives on `nav .container`; the
   breadcrumb has no `.container` child, so it never inherits the pill. */
.breadcrumbs { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 18px 32px 0; font-size: 13px; color: var(--text-mute); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before { content: '/'; color: rgba(196,173,130,0.45); }
.breadcrumbs a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: var(--gold); }
.breadcrumbs a:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.breadcrumbs [aria-current="page"] { color: var(--gold-2); }
@media (max-width: 768px) { .breadcrumbs { padding: 14px 18px 0; font-size: 12px; } }

/* Consent block: short bold label, required disclosures as fine print */
.consent-lead { color: var(--text-dim); font-weight: 500; }
.consent-fine { font-size: 11px; line-height: 1.5; color: var(--text-mute); margin: -4px 0 16px 26px; }
.consent-fine a { color: var(--gold); text-decoration: underline; }
