/* =====================================================
   PrimaVedra Botanicals - Global Stylesheet
   Premium B2B / Export Website
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --ink:       #0c1e1a;
  --deep:      #094455;   /* logo teal - unified across all pages */
  --forest:    #0d5a70;
  --mid:       #1a7a96;
  --sage:      #3a9ab8;
  --cream:     #f5f0e8;
  --parchment: #ece6d9;
  --gold:      #c9a84c;
  --gold-lt:   #e8d49a;
  --charcoal:  #1e3040;
  --muted:     #4a6070;
  --border:    rgba(9,68,85,.12);
  --border-lt: rgba(9,68,85,.06);
  --shadow-sm: 0 2px 8px rgba(9,68,85,.06);
  --shadow-md: 0 8px 24px rgba(9,68,85,.10);
  --shadow-lg: 0 20px 48px rgba(9,68,85,.14);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #fafaf7;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1, h2, h3 { line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

.eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Layout ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── Navigation ────────────────────────────────────── */
.pv-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,68,85,.97);   /* logo teal */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,212,154,.18);
}

.pv-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 0;
}

.pv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.pv-logo-img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

/* Fallback when logo image not found - show styled text shield */
.pv-logo-fallback {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--deep);
  flex-shrink: 0;
}

.pv-logo-text .company { font-size: .9rem; font-weight: 700; color: var(--cream); letter-spacing: .01em; white-space: nowrap; }
.pv-logo-text .tagline { font-size: .6rem; color: rgba(232,212,154,.65); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }

.pv-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
}

.pv-nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(245,240,232,.8);
  transition: color .2s;
  white-space: nowrap;
}

.pv-nav-links a:hover,
.pv-nav-links a.active { color: var(--cream); }

.pv-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  padding: 10px 20px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--deep);
}
.btn-gold:hover { background: #b89640; }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(245,240,232,.35);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(245,240,232,.06); }

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--charcoal);
}
.btn-outline-dark:hover { border-color: var(--mid); color: var(--mid); }

.btn-sm { padding: 8px 16px; font-size: .8rem; }
.btn-lg { padding: 14px 28px; font-size: .95rem; }

/* ── Cards ────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-inset {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
}

/* ── Trust badges ─────────────────────────────────── */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 20px 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.trust-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--deep);
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── Credential grid ─────────────────────────────── */
.cred-block {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 20px 22px;
}

.cred-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.cred-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: 'DM Mono', monospace;
  font-family: monospace;
}

.cred-note {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Process flow ────────────────────────────────── */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.process-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-connector {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, var(--mid), var(--sage));
  align-self: center;
  margin-top: -22px;
}

/* ── Section headers ─────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

.section-header.centered { text-align: center; }

.section-header .eyebrow { margin-bottom: 10px; }

.section-header h2 { color: var(--deep); }

.section-header p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 580px;
}

.section-header.centered p { margin: 12px auto 0; }

/* ── Tag / pill ───────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  background: rgba(9,68,85,.08);
  color: var(--forest);
  border: 1px solid rgba(9,68,85,.12);
}

/* ── Alert / note strip ───────────────────────────── */
.compliance-note {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: .8rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.compliance-note strong { color: var(--deep); }

/* ── Footer ───────────────────────────────────────── */
.pv-footer {
  background: var(--deep);
  color: rgba(245,240,232,.75);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(201,168,76,.14);
}

.footer-logo .company { font-size: 1rem; font-weight: 700; color: var(--cream); }
.footer-logo .tagline { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; opacity: .6; }

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(245,240,232,.65);
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,.08);
  margin-top: 40px;
  padding-top: 24px;
  font-size: .75rem;
  color: rgba(245,240,232,.4);
}

.footer-legal {
  font-size: .72rem;
  color: rgba(245,240,232,.4);
  line-height: 1.7;
  margin-top: 10px;
}

/* ── Dark CTA section ────────────────────────────── */
.cta-dark {
  background: var(--deep);
  padding: 72px 0;
  text-align: center;
}

.cta-dark h2 { color: var(--cream); }
.cta-dark p { color: rgba(245,240,232,.7); margin: 14px auto 28px; max-width: 560px; }

/* ── Mobile hamburger ─────────────────────────────── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; position: relative; z-index: 1201; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .pv-nav-links { gap: 16px; }
  .pv-nav-links a { font-size: .78rem; }
}
@media (max-width: 768px) {
  .pv-nav-links,
  .pv-nav-actions .nav-partner-link { display: none; }
  .nav-toggle { display: block; }
  .pv-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(9,68,85,.995);
    padding: 20px 24px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(232,212,154,.18);
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
    z-index: 1200;
  }
  .pv-nav-links.open li { width: 100%; }
  .pv-nav-links.open a { display: block; width: 100%; }
  body.nav-open { overflow: hidden; }
  .section { padding: 48px 0; }
  .hero { min-height: 420px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* ── Utility ──────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.text-deep { color: var(--deep); }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ── Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp .5s ease both;
}

/* ── Prose block (legal pages) ───────────────────── */
.prose-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin: 2rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-lt);
}
.prose-block h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.prose-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin: 1.25rem 0 0.5rem;
}
.prose-block p {
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.prose-block ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--charcoal);
  line-height: 1.9;
}
.prose-block ul li {
  margin-bottom: 0.25rem;
}
.prose-block a {
  color: var(--mid);
  text-decoration: underline;
}
.prose-block address {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}

/* ── Hero small variant ───────────────────────────── */
.hero--sm {
  min-height: 260px;
  padding: 80px 24px 60px;
}
.hero--sm .hero-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

/* ── Logo-matched aliases ──────────────────────── */
:root {
  /* --deep already equals logo teal #094455 */
  --teal:      #094455;   /* alias for --deep */
  --teal-mid:  #0d5a70;   /* alias for --forest */
  --teal-lt:   #1a7a96;   /* alias for --mid */
  --pv-tan:    #e8d49a;   /* logo cream/tan letterforms */
  --pv-tan-lt: #f2e8c4;
  --leaf:      #2d7a2d;   /* logo leaf green */
}

/* ── NAV PARTNER LINK ───────────────────────────── */
.nav-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--cream);
  border: 1.5px solid rgba(232,212,154,.3);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background .15s, color .15s, border-color .15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-partner-link:hover {
  background: rgba(232,212,154,.12);
  color: var(--gold-lt);
  border-color: rgba(232,212,154,.55);
}
.nav-partner-link svg {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.nav-sanctum-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--gold-lt);
  text-decoration: none;
  padding: 6px 2px;
  transition: color .15s;
}
.nav-sanctum-link::before {
  content: '◈';
  font-size: .75rem;
  opacity: .75;
}
.nav-sanctum-link:hover { color: #fff; }

/* ── HOMEPAGE NEW SECTIONS ──────────────────────── */

/* Atmospheric hero */
.hero-v2 {
  background: var(--teal);
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-banner.jpg') center/cover no-repeat;
  opacity: .14;
}
.hero-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(9,68,85,.85) 0%, rgba(9,68,85,.5) 55%, transparent 100%);
}
.hero-v2-inner {
  position: relative;
  z-index: 2;
}
.hero-v2 .pv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pv-tan);
  margin-bottom: 24px;
}
.hero-v2 .pv-kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--pv-tan);
  opacity: .5;
}
.hero-v2 h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-v2 h1 em {
  font-style: italic;
  color: var(--pv-tan);
}
.hero-v2 .hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-v2 .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }

.btn-teal {
  background: var(--teal);
  color: #fff;
  border: 1.5px solid var(--teal);
  padding: .8rem 1.75rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-teal:hover { background: var(--teal-mid); }

.btn-tan {
  background: var(--pv-tan);
  color: var(--teal);
  border: 1.5px solid var(--pv-tan);
  padding: .8rem 1.75rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-tan:hover { background: var(--pv-tan-lt); transform: translateY(-1px); }

/* Hero footer bar */
.hero-footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
}
.hfb-item {
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hfb-item:first-child { padding-left: 0; }
.hfb-item:last-child { border-right: none; }
.hfb-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--pv-tan);
  line-height: 1;
}
.hfb-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
  margin-top: 4px;
}
@media(max-width:600px) {
  .hero-footer-bar { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hfb-item { border-right: none; padding: 0; }
}

/* Partnership intro - editorial 2-col */
.partnership-section {
  background: #fff;
  padding: 80px 0;
}
.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media(max-width:900px){ .partnership-grid { grid-template-columns: 1fr; gap: 40px; } }
.partnership-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.partnership-eyebrow::before { content:''; width:24px; height:1px; background:var(--teal); }
.partnership-grid h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.partnership-grid h2 em { font-style: italic; color: var(--gold); }
.partnership-body {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
}
.partnership-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 12px;
}
.p-principle {
  border-left: 2px solid var(--pv-tan);
  padding: 2px 0 2px 18px;
}
.p-principle-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
}
.p-principle-body {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Verticals - new style */
.verticals-new {
  background: var(--cream);
  padding: 80px 0;
}
.verticals-new-header { margin-bottom: 48px; }
.v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(9,68,85,.12);
  border: 1.5px solid rgba(9,68,85,.12);
  border-radius: 14px;
  overflow: hidden;
}
@media(max-width:800px){ .v3-grid { grid-template-columns: 1fr; } }
.v3-card {
  background: #fff;
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .2s;
  position: relative;
}
.v3-card:hover { background: #fefef9; }
.v3-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(9,68,85,.06);
  border: 1px solid rgba(9,68,85,.12);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}
.v3-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}
.v3-card .v3-desc {
  font-size: .855rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  font-weight: 300;
}
.v3-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 22px; }
.v3-tag {
  font-size: .68rem;
  color: var(--teal);
  border: 1px solid rgba(9,68,85,.2);
  padding: 3px 9px;
  border-radius: 100px;
  font-weight: 400;
}
.v3-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1.5px solid rgba(9,68,85,.2);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color .15s, color .15s;
}
.v3-link:hover { color: var(--gold); border-color: var(--gold); }

/* Quiet credentials */
.docs-quiet {
  background: var(--teal);
  padding: 64px 0;
}
.docs-quiet-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media(max-width:900px){ .docs-quiet-inner { flex-direction: column; gap: 32px; } }
.docs-quiet-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
}
.docs-quiet-left p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 380px;
}
.docs-quiet-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.doc-chip {
  font-size: .72rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  transition: background .15s, color .15s;
}
.doc-chip:hover { background: rgba(255,255,255,.1); color: #fff; }
.doc-chip.highlight {
  background: var(--pv-tan);
  color: var(--teal);
  border-color: var(--pv-tan);
  font-weight: 600;
}

/* WFB tagline section */
.wfb-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.wfb-section .wfb-eyebrow {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.wfb-section .wfb-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.wfb-section .wfb-headline em { font-style: italic; color: var(--gold); }
.wfb-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.wfb-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sanctum teaser strip */
.sanctum-strip {
  background: #0d1a14;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.sanctum-strip::before {
  content: 'SANCTUM';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255,255,255,.02);
  letter-spacing: .1em;
  white-space: nowrap;
  pointer-events: none;
}
.sanctum-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media(max-width:700px){ .sanctum-strip-inner { flex-direction: column; text-align: center; } }
.sanctum-strip-left {}
.sanctum-strip-eyebrow {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.sanctum-strip-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.sanctum-strip-sub {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
}
.btn-sanctum {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .9rem 2rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.btn-sanctum:hover {
  background: rgba(201,168,76,.08);
  border-color: var(--gold);
}

/* Partner Dashboard CTA strip */
.partner-cta-strip {
  background: var(--cream);
  border-top: 1px solid rgba(9,68,85,.1);
  border-bottom: 1px solid rgba(9,68,85,.1);
  padding: 32px 0;
}
.partner-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media(max-width:700px){ .partner-cta-inner { flex-direction: column; text-align: center; } }
.partner-cta-text { }
.partner-cta-text h4 { font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: 4px; }
.partner-cta-text p  { font-size: .82rem; color: var(--muted); font-weight: 300; }


/* ── Footer unified layout ───────────────────────── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,240,232,.08);
  margin-bottom: 28px;
}
@media(max-width:900px){
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:500px){
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

.footer-col--brand { }

.footer-heading {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
  display: block;
}

.footer-col a {
  display: block;
  font-size: .82rem;
  color: rgba(245,240,232,.55);
  margin-bottom: 7px;
  transition: color .2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  font-size: .72rem;
  color: rgba(245,240,232,.38);
  line-height: 1.65;
  padding-top: 4px;
}

