/* ─── SageVestments Capital Fund — Shared Styles ─── */
:root {
  --bg-primary: #FAF7F1;
  --bg-soft: #F2EDE2;
  --bg-card: #FFFFFF;
  --bg-tint: #EDE7D9;
  --ink: #131F30;
  --ink-deep: #0A1320;
  --ink-soft: #4A5568;
  --ink-mute: #7A8290;
  --accent: #7A8B5A;
  --accent-deep: #5C6B40;
  --accent-warm: #B87355;
  --accent-warm-deep: #93573D;
  --gold-soft: #C9A86A;
  --border: rgba(19,31,48,0.10);
  --border-strong: rgba(19,31,48,0.18);
  --shadow-sm: 0 1px 3px rgba(19,31,48,0.06);
  --shadow-md: 0 8px 24px rgba(19,31,48,0.08);
  --shadow-lg: 0 16px 48px rgba(19,31,48,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── NAV (DARK) ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10,19,32,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled { padding: 0.85rem 4rem; box-shadow: 0 2px 16px rgba(0,0,0,0.2); }
.nav-brand { display: flex; align-items: center; gap: 0.8rem; }
.nav-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  border-radius: 6px;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.nav-name small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  font-weight: 400;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -8px; left: 0;
  width: 100%; height: 2px;
  background: var(--gold-soft);
}
.nav-cta {
  background: var(--gold-soft);
  color: var(--ink);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-cta:hover { background: white; transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.4rem; color: white; cursor: pointer;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--bg-primary); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-card); border-color: var(--ink); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-deep); }
.btn-arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ─── PAGE HEADER (DARK) ─── */
.page-header {
  padding: 9rem 4rem 5rem;
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--ink) 100%);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; top: 0; right: -10%; width: 50%; height: 100%;
  background: radial-gradient(circle, rgba(122,139,90,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-bg::after {
  content: '';
  position: absolute; bottom: 0; left: -5%; width: 30%; height: 60%;
  background: radial-gradient(circle, rgba(201,168,106,0.10) 0%, transparent 60%);
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  display: flex; gap: 0.5rem; align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb-sep { opacity: 0.4; }
.page-header .section-eyebrow { color: var(--gold-soft); }
.page-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1rem;
  max-width: 800px;
  color: white;
}
.page-title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.page-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.7;
}
.page-header .btn-secondary {
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.page-header .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}
.page-header .btn-primary {
  background: var(--gold-soft);
  color: var(--ink);
}
.page-header .btn-primary:hover { background: white; }

/* ─── SECTIONS ─── */
section { padding: 6rem 4rem; position: relative; }
.section-tight { padding: 4rem 4rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--accent-deep); font-weight: 400; }
.section-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.7;
}
.section-head-flex {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

/* ─── HERO (LANDING) ─── */
#hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 9rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--ink) 100%);
  color: white;
}
.hero-bg-shape {
  position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(122,139,90,0.18) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-bg-shape::after {
  content: '';
  position: absolute; bottom: -50%; left: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(201,168,106,0.12) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(10px);
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero-title {
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  line-height: 1.04;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: white;
}
.hero-title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
#hero .btn-primary {
  background: var(--gold-soft);
  color: var(--ink);
}
#hero .btn-primary:hover { background: white; }
#hero .btn-secondary {
  color: white;
  border-color: rgba(255,255,255,0.25);
}
#hero .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

.hero-visual { position: relative; z-index: 1; }
.hero-card-stack { position: relative; height: 540px; }
.hero-card {
  position: absolute;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  padding: 1.6rem;
  transition: transform 0.4s ease;
}
.hero-card-1 {
  top: 0; right: 0;
  width: 78%; padding: 2rem;
  background: linear-gradient(135deg, #1f2a3a 0%, #2A3F5C 100%);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-card-1:hover { transform: translateY(-6px) rotate(-1deg); }
.hero-card-1 h3 { color: white; font-size: 1.2rem; margin-bottom: 0.4rem; line-height: 1.3; }
.hc1-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.2rem; font-weight: 600;
}
.hc1-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hc1-stat-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; line-height: 1; color: white; font-weight: 500; }
.hc1-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.65); margin-top: 0.4rem; letter-spacing: 0.04em; }
.hero-card-2 {
  bottom: 0; left: 0; width: 70%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--ink);
}
.hero-card-2:hover { transform: translateY(-6px) rotate(1deg); }
.hc2-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 0.5rem; font-weight: 600; }
.hc2-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink); margin-bottom: 0.8rem; font-weight: 500; }
.hc2-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.hc2-row:last-child { border-bottom: none; }
.hc2-row span:first-child { color: var(--ink-mute); }
.hc2-row span:last-child { color: var(--ink); font-weight: 500; }
.hero-card-3 {
  top: 50%; right: -2rem;
  background: var(--accent); color: white;
  padding: 1rem 1.3rem; border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-card-3 .icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.hero-card-3 strong { display: block; font-size: 0.92rem; line-height: 1.2; }
.hero-card-3 span { font-size: 0.74rem; opacity: 0.85; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--bg-tint);
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-label {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600; line-height: 1.5; max-width: 200px;
}
.trust-items { display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; }
.trust-item {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--ink-soft); font-style: italic; opacity: 0.75;
  font-weight: 500;
}

/* ─── STATS BAND ─── */
.stats-band { background: var(--ink-deep); color: white; padding: 4rem; position: relative; overflow: hidden; }
.stats-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.5;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat-block { padding: 0.5rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  color: var(--gold-soft);
  line-height: 1; font-weight: 500;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 600;
}
.stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; }

/* ─── PREVIEW SECTIONS (LANDING) ─── */
.preview-flex {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.preview-text { padding-right: 2rem; }
.preview-text h2 { margin: 0.6rem 0 1.2rem; }
.preview-text p { color: var(--ink-soft); margin-bottom: 1.8rem; }
.preview-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.mini-asset {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink);
  transition: all 0.2s;
  position: relative;
}
.mini-asset:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.mini-asset-icon {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── COMING SOON BADGE ─── */
.coming-soon-badge {
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  display: inline-block;
}
.asset-card .coming-soon-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
}
.mini-asset .coming-soon-badge {
  margin-left: auto;
  font-size: 0.58rem;
}

/* ─── ABOUT (FULL & PREVIEW) ─── */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
}
.portrait-frame {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait-decoration {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 1.5px solid var(--accent); border-radius: 12px;
  z-index: -1; opacity: 0.5;
}
.signature-card {
  position: absolute; bottom: 1.5rem; left: -2rem;
  background: var(--bg-card);
  padding: 1rem 1.4rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 2;
}
.signature-card-num {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  color: var(--ink); line-height: 1; font-weight: 600;
}
.signature-card-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 0.3rem; font-weight: 600;
}
.about-content { padding-left: 2rem; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  font-size: 1.35rem; color: var(--ink); line-height: 1.55;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-body { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }
.about-body p + p { margin-top: 1.2rem; }
.about-meta {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.meta-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.meta-icon {
  width: 36px; height: 36px;
  background: var(--bg-card); border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.meta-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 0.2rem; font-weight: 600;
}
.meta-value { font-size: 0.92rem; color: var(--ink); font-weight: 500; }

/* ─── ASSET GRID ─── */
.assets-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.assets-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.asset-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2.2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.asset-card.linkable { cursor: pointer; }
.asset-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.asset-card.featured {
  border: 1.5px solid rgba(122,139,90,0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(122,139,90,0.05) 100%);
}
.asset-icon {
  width: 56px; height: 56px;
  background: var(--bg-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.4rem;
  transition: background 0.3s;
}
.asset-card:hover .asset-icon { background: var(--accent); color: white; }
.asset-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.7rem; color: var(--ink); font-weight: 500; }
.asset-desc { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.4rem; flex-grow: 1; }
.asset-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.2rem;
}
.asset-tag {
  font-size: 0.7rem; color: var(--accent-deep);
  background: rgba(122,139,90,0.1);
  padding: 0.25rem 0.7rem; border-radius: 100px; font-weight: 600;
}
.asset-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent-deep);
  font-size: 0.88rem; font-weight: 600;
  transition: gap 0.2s;
}
.asset-link:hover { gap: 0.7rem; }

/* ─── PORTFOLIO ─── */
.portfolio-tabs {
  display: flex; gap: 0.4rem;
  background: var(--bg-card);
  padding: 0.4rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent; border: none;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem; color: var(--ink-soft);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-weight: 500; border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--ink); color: var(--bg-primary); }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.project-card {
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; color: var(--ink-mute);
}
.project-img.coming-soon-img {
  background: linear-gradient(135deg, var(--ink) 0%, #2A3F5C 100%);
  color: rgba(255,255,255,0.5);
}
.project-status {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.66rem; font-weight: 700;
  padding: 0.35rem 0.85rem; border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-active { background: rgba(122,139,90,0.18); color: var(--accent-deep); }
.status-complete { background: rgba(184,115,85,0.15); color: var(--accent-warm-deep); }
.status-pipeline { background: var(--gold-soft); color: var(--ink); }
.project-body { padding: 1.5rem; }
.project-type {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 0.5rem; font-weight: 600;
}
.project-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--ink); font-weight: 500; }
.project-loc { font-size: 0.85rem; color: var(--ink-mute); margin-bottom: 1.2rem; }
.project-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.pm-val { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--ink); font-weight: 500; line-height: 1; }
.pm-lbl { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-top: 0.3rem; font-weight: 600; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.2rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--accent-deep); margin-bottom: 1rem; font-weight: 500; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.7rem; color: var(--ink); font-weight: 500; }
.service-desc { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.4rem; }
.service-includes {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem;
}
.include-chip {
  font-size: 0.72rem; color: var(--ink-soft);
  background: var(--bg-soft);
  padding: 0.3rem 0.75rem; border-radius: 100px; font-weight: 500;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent-deep);
  font-size: 0.88rem; font-weight: 600;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; color: var(--accent-warm-deep); }

/* ─── TESTIMONIALS ─── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold-soft); font-size: 0.95rem; margin-bottom: 1.2rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  line-height: 1.6; color: var(--ink); font-weight: 400;
  flex-grow: 1; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600;
}
.author-info strong { display: block; font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.author-info span { font-size: 0.78rem; color: var(--ink-mute); }

/* ─── FAQ ─── */
.faq-grid { max-width: 820px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ink); font-weight: 500;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-deep); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink);
  transition: all 0.3s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-toggle { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--ink-soft);
  font-size: 0.96rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 360px; padding-bottom: 1.5rem; }

/* ─── CTA STRIPS / BANNERS ─── */
.cta-strip {
  background: var(--ink-deep);
  color: white;
  padding: 3rem 4rem;
  margin: 0;
}
.cta-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center;
}
.cta-strip h3 {
  color: white;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500; line-height: 1.2;
}
.cta-strip h3 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.cta-strip p { color: rgba(255,255,255,0.7); margin-top: 0.6rem; font-size: 0.95rem; }
.cta-strip-actions { display: flex; gap: 0.8rem; justify-content: flex-end; flex-wrap: wrap; }
.btn-on-dark { background: var(--gold-soft); color: var(--ink); }
.btn-on-dark:hover { background: white; }
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: white; }

.cta-strip-light {
  background: var(--bg-soft);
  color: var(--ink);
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-light h3 { color: var(--ink); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 500; line-height: 1.2; }
.cta-strip-light h3 em { font-style: italic; color: var(--accent-deep); }
.cta-strip-light p { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.95rem; }

/* ─── BOOK SECTION ─── */
.book-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 3rem;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.book-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(122,139,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.book-title { font-size: clamp(2rem, 4vw, 2.8rem); margin: 1rem 0; line-height: 1.15; }
.book-sub { color: var(--ink-soft); font-size: 1rem; max-width: 540px; margin: 0 auto 2.5rem; }
.book-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-bottom: 2.5rem; text-align: left;
}
.book-option {
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
}
.book-option:hover { background: var(--bg-card); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.book-option-icon {
  width: 36px; height: 36px;
  background: var(--bg-card); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 0.8rem;
}
.book-option-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.3rem; font-weight: 500; }
.book-option-meta { font-size: 0.78rem; color: var(--ink-mute); }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--ink-deep); color: white; padding: 4rem; }
.newsletter-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.newsletter h2 { color: white; font-size: 2.2rem; line-height: 1.2; }
.newsletter h2 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.newsletter p { color: rgba(255,255,255,0.7); margin-top: 0.8rem; line-height: 1.6; }
.newsletter-form {
  display: flex; gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  padding: 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 1rem;
  color: white;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  background: transparent;
  color: white;
  box-shadow: none;
  border-color: transparent;
}
.newsletter-form button {
  background: var(--gold-soft); color: var(--ink);
  border: none; padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-form button:hover { background: white; }
.newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.8rem; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem;
  margin-top: 3rem;
}
.contact-info-list { margin-top: 2rem; }
.ci-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.ci-icon {
  width: 42px; height: 42px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.2rem; font-weight: 600; }
.ci-value { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.form-field.full { grid-column: 1/-1; }
label { font-size: 0.78rem; color: var(--ink); font-weight: 500; }
input, select, textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all 0.2s;
  width: 100%;
  border-radius: 8px;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(122,139,90,0.1);
}
select { cursor: pointer; }
textarea { resize: vertical; min-height: 130px; font-family: 'DM Sans', sans-serif; }
::placeholder { color: var(--ink-mute); opacity: 0.6; }
.form-submit {
  background: var(--ink); color: var(--bg-primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  width: 100%; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--accent-deep); }
.form-confirm {
  display: none;
  background: rgba(122,139,90,0.1);
  color: var(--accent-deep);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem; font-weight: 500;
}

/* ─── ASSET DETAIL PAGE ─── */
.asset-detail-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  align-items: start;
}
.asset-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: sticky; top: 6rem;
  box-shadow: var(--shadow-sm);
}
.afc-icon {
  width: 64px; height: 64px;
  background: var(--accent); color: white;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.afc-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.afc-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.afc-stat span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 500;
  margin: 2rem 0 1rem;
}
.detail-content h3:first-child { margin-top: 0; }
.detail-content p { color: var(--ink-soft); margin-bottom: 1.2rem; line-height: 1.8; }
.detail-content ul { margin: 1rem 0 1.5rem 1rem; }
.detail-content li {
  color: var(--ink-soft);
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
  list-style: none;
}
.detail-content li::before {
  content: '→';
  color: var(--accent);
  position: absolute; left: 0; top: 0.4rem;
}
.detail-content li strong { color: var(--ink); }

.related-assets {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.related-asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s;
  position: relative;
}
.related-asset-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-asset-card .icon-sm {
  width: 36px; height: 36px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.related-asset-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.related-asset-card p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.5; }

/* ─── PROCESS / TIMELINE ─── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
}
.process-num {
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--accent); color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600;
}
.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  margin: 0.7rem 0 0.6rem;
}
.process-step p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

/* ─── MAP SECTION ─── */
.map-section {
  background: var(--bg-soft);
  padding: 6rem 4rem;
}
.map-container {
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
}
.us-map {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(19,31,48,0.08));
}
.us-map .state-base { fill: #e8e0d0; stroke: var(--bg-primary); stroke-width: 1.5; transition: fill 0.3s; }
.us-map .state-active { fill: var(--accent); stroke: var(--bg-primary); stroke-width: 1.5; transition: fill 0.3s; }
.us-map .state-active:hover { fill: var(--accent-deep); }
.map-pin-circle { fill: var(--ink-deep); stroke: var(--gold-soft); stroke-width: 2; }
.map-pin-dot { fill: var(--gold-soft); }
.map-pin-label {
  fill: var(--ink-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-anchor: middle;
}
.map-legend {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem; max-width: 880px; margin-left: auto; margin-right: auto;
}
.map-legend-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.map-legend-pin {
  width: 36px; height: 36px;
  background: var(--accent);
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.map-legend-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.map-legend-card span { font-size: 0.84rem; color: var(--ink-soft); }

/* ─── CALENDLY EMBED ─── */
.calendly-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}
.calendly-placeholder {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-tint) 100%);
  border: 2px dashed var(--border-strong);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}
.calendly-placeholder-icon {
  width: 60px; height: 60px;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.calendly-placeholder h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 500;
}
.calendly-placeholder p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 500px;
}
.calendly-placeholder code {
  background: var(--bg-card);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.84rem;
  color: var(--accent-deep);
  font-family: monospace;
  border: 1px solid var(--border);
}
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: 12px;
  overflow: hidden;
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  background: var(--ink-deep);
  color: var(--bg-primary);
  padding: 0.85rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid rgba(201,168,106,0.3);
}
.floating-cta:hover { background: var(--accent-deep); transform: translateY(-2px); }
.floating-cta .pulse {
  width: 8px; height: 8px;
  background: var(--gold-soft);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 4rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 0.8rem; font-weight: 500; }
.footer-tagline { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 280px; margin-bottom: 1.5rem; }
.footer-cta-mini {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold-soft);
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-cta-mini:hover { background: white; }
.footer-col h4 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }

/* Social icons */
.footer-social {
  display: flex; gap: 0.6rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ink-deep); flex-direction: column; padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  section, #hero { padding: 5rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  #hero { padding-top: 7rem; grid-template-columns: 1fr; gap: 3rem; }
  .hero-card-stack { height: 440px; }
  .stats-band, .newsletter, .cta-strip, .cta-strip-light, .trust-bar, .map-section { padding: 3rem 1.5rem; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-grid, .contact-grid, .newsletter-inner, .preview-flex, .cta-strip-inner, .asset-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-content { padding-left: 0; }
  .preview-text { padding-right: 0; }
  .assets-grid, .assets-grid.cols-2, .projects-grid, .testimonial-grid, .book-options, .related-assets, .process-grid, .map-legend { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .book-card { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .signature-card { left: 0; bottom: 0; }
  .section-head-flex { grid-template-columns: 1fr; }
  .cta-strip-actions { justify-content: flex-start; }
  .asset-feature-card { position: static; }
  footer { padding: 3rem 1.5rem 2rem; }
  .floating-cta { bottom: 1rem; right: 1rem; padding: 0.7rem 1.1rem; font-size: 0.82rem; }
  .preview-grid-mini { grid-template-columns: 1fr; }
}

/* ─── DEAL CAROUSEL (index.html) ─── */
.carousel-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
}
.carousel-track-wrap:active { cursor: grabbing; }
.carousel-track-wrap::before,
.carousel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.carousel-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.carousel-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg-primary), transparent); }
.carousel-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: carouselScroll 38s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.deal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.deal-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}
.deal-card-type {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.deal-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}
.deal-card-loc {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-bottom: 1.1rem;
}
.deal-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.dcm-val {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.dcm-lbl {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.25rem;
  font-weight: 600;
}
.deal-card .project-status {
  position: absolute;
  top: 1rem; right: 1rem;
}

/* ─── INVESTOR PILLARS ─── */
.investor-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon {
  width: 52px; height: 52px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.pillar-body {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}
.pillar-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.pillar-tag {
  font-size: 0.68rem;
  color: var(--accent-deep);
  background: rgba(122,139,90,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
}

/* ─── RETURNS TRIO ─── */
.returns-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.return-card {
  background: var(--ink-deep);
  border-radius: 16px;
  padding: 2.2rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.return-card::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,106,0.15) 0%, transparent 65%);
}
.return-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.return-type {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.return-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* ─── DEAL CRITERIA CHECKLIST ─── */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.3rem 1.4rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.criteria-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.criteria-check {
  width: 28px; height: 28px;
  background: rgba(122,139,90,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.criteria-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.criteria-desc {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── KNOWLEDGE BASE PAGE ─── */
.kb-coming-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.kb-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.kb-coming-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.kb-coming-title em { font-style: italic; color: var(--accent-deep); }
.kb-coming-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 3rem;
}
.kb-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
  margin-bottom: 3rem;
}
.kb-preview-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.kb-preview-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold-soft));
  opacity: 0.6;
}
.kb-preview-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.kb-preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.kb-preview-desc { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.6; }
.kb-notify-form {
  display: flex; gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-sm);
}
.kb-notify-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}
.kb-notify-form button {
  background: var(--ink);
  color: var(--bg-primary);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.kb-notify-form button:hover { background: var(--accent-deep); }
.kb-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.kb-topic-row {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
}
.kb-topic-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--accent-deep);
  font-weight: 500;
  min-width: 28px;
}
.kb-topic-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.kb-topic-lock { margin-left: auto; font-size: 0.8rem; color: var(--ink-mute); }

/* responsive additions */
@media (max-width: 980px) {
  .investor-pillars, .returns-trio { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .kb-preview-grid { grid-template-columns: 1fr; }
  .kb-topics-grid { grid-template-columns: 1fr; }
  .deal-card { min-width: 240px; max-width: 240px; }
}
