/* =============================================
   CVW CAPITAL PARTNERS — DESIGN TOKENS
   Palette: near-white bg, deep charcoal text, 
   antique gold accent (#B8912A), dark section (#0F0F0F)
   Type: Cormorant Garamond display + Inter body
   ============================================= */

:root {
  --gold:      #B8912A;
  --gold-light: #D4A94A;
  --black:     #0C0C0C;
  --dark:      #111111;
  --charcoal:  #1E1E1E;
  --mid:       #5A5A5A;
  --light:     #9A9A9A;
  --rule:      #E0DAD0;
  --bg:        #FAFAF8;
  --bg-alt:    #F4F2ED;
  --white:     #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --max-w: 1120px;
  --section-py: 100px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 104px;
}

.logo {
  height: 88px;
  width: auto;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 104px; /* offset for fixed header */
  background: var(--bg);
}

.hero-inner {
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 36px;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 60px;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

/* =============================================
   SECTIONS — SHARED
   ============================================= */
.section {
  padding: var(--section-py) 0;
}

.section-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 32px;
}

.section-title.light {
  color: var(--white);
}

.body-text {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 660px;
}

.body-text.light {
  color: rgba(255,255,255,0.65);
}

.body-text + .body-text {
  margin-top: 20px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.about-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.about-content .section-title {
  max-width: 520px;
}

/* =============================================
   INVESTMENT FOCUS
   ============================================= */
.focus {
  background: var(--bg);
}

.focus-intro {
  margin-bottom: 56px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.focus-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.focus-card:hover {
  background: var(--bg-alt);
}

.focus-icon {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.focus-card h3 {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.focus-card p {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

/* =============================================
   APPROACH
   ============================================= */
.approach {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}

.approach-item {
  padding: 40px 0 40px;
  border-bottom: 1px solid var(--rule);
  padding-right: 60px;
}

.approach-item:nth-child(even) {
  padding-left: 60px;
  padding-right: 0;
  border-left: 1px solid var(--rule);
}

.approach-item h4 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.approach-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 420px;
}

/* =============================================
   INTERNATIONAL
   ============================================= */
.international {
  background: var(--dark);
  padding: 120px 0;
}

.international-inner {
  max-width: 720px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  padding: 72px 0 60px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 28px;
  opacity: 0.9;
}

.footer-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.footer-sub {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-note {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  :root { --section-py: 72px; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-item {
    padding-right: 0;
  }

  .approach-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  :root { --section-py: 56px; }

  .hero-inner {
    padding-top: 80px;
    padding-bottom: 72px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    padding: 32px 24px;
  }

  .logo { height: 64px; }
}
