/* Lhovon Ventures holding page — faithful to assets/design-reference.png.
   Palette and spacing measured from the design; serif display (Playfair
   Display) over Inter body, light lavender hero over white holdings. */

:root {
  --ink: #1b2440;
  --body: #3c4358;
  --muted: #6b7280;
  --hairline: #e3e5ec;
  --blue: #2f56d9;
  --violet: #6d4ce0;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body);
  /* One continuous wash for the whole page, keyed to the artwork's palette:
     a lavender-blue cast up top, near-white through the holdings, a faint
     teal lift at the foot — plus two soft radial glows echoing the art's
     violet and teal poles. */
  min-height: 100%;
  /* Sticky footer: main stretches, so the footer rides the bottom edge of
     the viewport even when the page content is short. */
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1000px 640px at 82% 6%, rgba(109, 76, 224, 0.09), transparent 62%),
    radial-gradient(900px 640px at 6% 96%, rgba(41, 176, 186, 0.09), transparent 62%),
    linear-gradient(168deg, #e9ecf8 0%, #f4f4fb 34%, #fdfdff 62%, #eef4f8 100%);
  /* Backstop for any canvas the gradient doesn't cover (windows taller than
     the page) — matches the gradient's final stop so nothing tiles. */
  background-color: #eef4f8;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ---------- Hero ---------- */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  /* No navbar — this is the page's breathing room at the top. */
  padding-top: 96px;
  padding-bottom: 40px;
}

.hero-copy h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 500;
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: 0.002em;
  /* One line on desktop; the 4vw clamp keeps it shrinking with the column
     so it never overflows before the mobile breakpoint lets it wrap. */
  white-space: nowrap;
}

.hero-copy .location {
  margin-top: 18px;
  font-size: 18px;
  color: var(--body);
}

.hero-copy .identity {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-copy .contact {
  margin-top: 28px;
  font-size: 17px;
  color: var(--ink);
}

.hero-copy .contact a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: min(100%, 490px);
  height: auto;
}

/* ---------- Holdings ---------- */

main {
  flex: 1;
}

.holdings {
  padding: 84px 0 72px;
}

.eyebrow {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.project-list {
  list-style: none;
  margin-top: 34px;
  max-width: 560px;
}

.project {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--hairline);
}

.project-mark {
  display: block;
  width: 56px;
  height: 56px;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.project-link {
  font-size: 15.5px;
  color: var(--blue);
  text-decoration: none;
}

.project-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.arrow {
  font-size: 13px;
  margin-left: 5px;
}

/* Empty ruled slot — the design leaves visible room for future holdings. */
.project-slot {
  height: 88px;
  border-bottom: 1px solid var(--hairline);
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 24px 48px;
  text-align: center;
}

.footer p {
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    width: min(100%, 420px);
  }

  .hero-copy h1 {
    white-space: normal;
  }

}
