@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg-dark:        #1a1a1a;
  --bg-warm-white:  #f8f6f2;
  --bg-light-grey:  #f0ede8;
  --crimson:        #8b1a2e;
  --crimson-hover:  #a32035;
  --gold:           #c9a84c;
  --text-light:     #f8f6f2;
  --text-dark:      #2a2a2a;
  --text-muted:     #5a5a5a;
  --border-light:   #e5e0d8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--bg-warm-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--gold);
  padding: 0 6%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  width: auto;
  max-width: 140px;
  max-height: 52px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO (HOME) ────────────────────────────────── */
.hero {
  background: var(--bg-dark);
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 8%;
}

.hero-logo {
  margin-bottom: 2.8rem;
}

.hero-logo img {
  width: 200px;
  height: auto;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  color: var(--text-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.6rem;
}

.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 3.2rem;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn-crimson {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-crimson:hover {
  background: var(--crimson-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 46, 0.35);
}

/* ─── PAGE SECTIONS ──────────────────────────────── */
.sec-white { background: var(--bg-warm-white); padding: 8rem 10%; }
.sec-grey  { background: var(--bg-light-grey);  padding: 8rem 10%; }
.sec-dark  { background: var(--bg-dark);         padding: 8rem 10%; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.6rem;
}

.section-heading-light { color: var(--text-light); }

.section-body {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.9;
}

.section-body-light {
  color: rgba(248, 246, 242, 0.68);
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.9;
}

/* ─── GOLD DIVIDER ───────────────────────────────── */
.gold-rule {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}

.gold-rule-center {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 2rem;
}

/* ─── HOME: FOCUS CARDS ──────────────────────────── */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  margin-top: 4rem;
}

.focus-card {
  background: var(--bg-warm-white);
  border: 1px solid var(--border-light);
  padding: 3rem 2.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
}

.focus-card .card-bar {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.focus-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.focus-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.focus-card .card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--crimson);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.focus-card .card-link:hover { color: var(--gold); }

/* ─── PAGE HERO (non-home) ───────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding: 8rem 10% 6rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--text-light);
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.page-hero .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--gold);
  margin-top: 0.2rem;
}

/* ─── INVESTMENTS: INV CARDS ─────────────────────── */
.inv-section { padding: 6rem 10%; }
.inv-section.bg-white { background: var(--bg-warm-white); }
.inv-section.bg-grey  { background: var(--bg-light-grey); }

.inv-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.9;
  margin-bottom: 0.5rem;
}

.inv-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.inv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.inv-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 2.4rem 2.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.inv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

/* On grey background, cards use warm white */
.inv-section.bg-grey .inv-card {
  background: var(--bg-warm-white);
}

.inv-card-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  height: 40px;
}

.inv-card-logo img {
  max-height: 36px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.inv-card .badge {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  margin-bottom: 1.3rem;
}

.inv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.inv-card .inv-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.inv-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.inv-card .visit-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease, letter-spacing 0.2s ease;
}

.inv-card .visit-link:hover {
  color: var(--crimson);
  letter-spacing: 0.12em;
}

/* ─── INVESTMENTS: CTA ───────────────────────────── */
.inv-cta {
  background: var(--bg-dark);
  padding: 6rem 10%;
  text-align: center;
}

.inv-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(248, 246, 242, 0.65);
  margin-bottom: 2.5rem;
}

/* ─── TEAM PAGE ──────────────────────────────────── */
.team-section { padding: 6rem 10%; }
.team-section.bg-white { background: var(--bg-warm-white); }
.team-section.bg-grey  { background: var(--bg-light-grey); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-section.bg-grey .team-card {
  background: var(--bg-warm-white);
}

.team-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  border: 2px solid rgba(201, 168, 76, 0.25);
  transition: border-color 0.3s ease;
  letter-spacing: 0.05em;
}

.team-card:hover .team-avatar {
  border-color: rgba(201, 168, 76, 0.7);
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.team-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.team-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.2s ease;
}

.linkedin-link:hover {
  color: var(--crimson);
  gap: 0.65rem;
}

.linkedin-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Team CTA */
.team-cta {
  background: var(--bg-dark);
  padding: 6rem 10%;
  text-align: center;
}

.team-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(248, 246, 242, 0.65);
  margin-bottom: 2.5rem;
}

/* ─── CONTACT ────────────────────────────────────── */
.contact-wrap {
  background: var(--bg-warm-white);
  padding: 7rem 10%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-emails a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.contact-emails a:hover { color: var(--crimson); }

/* ─── FORM ───────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.75rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  padding: 4.5rem 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: rgba(248, 246, 242, 0.55);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-nav a:hover { color: var(--gold); }

.footer-divider {
  width: 1px;
  height: 20px;
  background: rgba(201, 168, 76, 0.3);
}

.footer-emails {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-emails a {
  color: rgba(248, 246, 242, 0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.25s ease;
}

.footer-emails a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(248, 246, 242, 0.2);
  letter-spacing: 0.06em;
}

/* ─── FADE-IN ANIMATIONS ─────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 5rem 8%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  header nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-dark);
    padding: 2rem 6%;
    gap: 1.75rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    z-index: 998;
  }

  header nav.open {
    display: flex;
  }

  .nav-toggle { display: flex; }

  header { position: relative; }

  .sec-white, .sec-grey, .sec-dark { padding: 5.5rem 7%; }
  .inv-section  { padding: 4.5rem 7%; }
  .inv-cta      { padding: 5rem 7%; }
  .team-section { padding: 4.5rem 7%; }
  .team-cta     { padding: 5rem 7%; }
  .page-hero    { padding: 6rem 7% 4.5rem; }
  footer        { padding: 4rem 7%; }
  .footer-nav   { gap: 1.5rem; }
  .footer-emails { gap: 1.5rem; }
}

@media (max-width: 540px) {
  header { padding: 0 5%; }
  .header-logo img { width: 96px; }
  .hero-logo img { width: 160px; }
  .hero { padding: 4rem 7%; }
  .sec-white, .sec-grey, .sec-dark { padding: 4.5rem 6%; }
  .focus-grid { margin-top: 2.8rem; }
  .inv-cards { grid-template-columns: 1fr; }
  .contact-wrap { padding: 4rem 6%; }
  footer { padding: 3.5rem 6%; gap: 1.4rem; }
  .footer-nav { flex-direction: column; gap: 1rem; }
  .footer-emails { flex-direction: column; gap: 0.8rem; }
  .team-section { padding: 4rem 6%; }
  .team-cta { padding: 4.5rem 6%; }
  .team-avatar { width: 160px; height: 160px; font-size: 2.4rem; }
}
