/* ============================================================
   200 Ventures — Landing Page
   ============================================================ */

:root {
  --ink:        #0a1626;   /* deep navy/ink */
  --ink-2:      #0f1f33;
  --ink-soft:   #1a2c42;
  --cream:      #f7f4ec;   /* warm off-white */
  --cream-2:    #efe9dc;
  --gold:       #c2a15a;   /* warm gold accent */
  --gold-soft:  #d8c08a;
  --muted:      #6f7d8c;
  --line:       rgba(10, 22, 38, 0.12);
  --line-light: rgba(247, 244, 236, 0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- Shared layout ---------- */
.section { padding: clamp(5rem, 11vw, 9rem) 0; }
.section__inner,
.nav__inner,
.stats__inner,
.philosophy__inner,
.footer__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.grid-2--reverse .focus__media { order: 0; }

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.8rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.section__title em { color: var(--gold); font-weight: 500; }

.section__head { max-width: 640px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }

.section p { color: #44525f; max-width: 54ch; margin-bottom: 1.1rem; font-size: 1.02rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.5rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav.scrolled {
  background: rgba(10, 22, 38, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--cream);
  transition: color 0.3s;
}
.brand__mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.brand__word {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--cream);
}

.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,38,0.78) 0%, rgba(10,22,38,0.55) 45%, rgba(10,22,38,0.88) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(10,22,38,0.2), rgba(10,22,38,0.85));
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 1.8rem;
}
.hero__title em { color: var(--gold); }
.hero__lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  max-width: 46ch;
  color: rgba(247, 244, 236, 0.85);
  margin-bottom: 2.6rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.btn--solid {
  background: var(--gold);
  color: var(--ink);
}
.btn--solid:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost {
  border-color: rgba(247, 244, 236, 0.4);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

.hero__scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 1px; height: 54px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--cream);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { to { top: 100%; } }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--cream); }
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.stat {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line-light);
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.stat__label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.6);
}

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__media { position: relative; }
.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-image: url("../img/firm.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15) contrast(1.02);
}
.pull {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  max-width: 320px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.35;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--gold);
}

/* ---------- Approach / Cards ---------- */
.approach { background: var(--cream-2); }
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2.6rem 2.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -28px rgba(10, 22, 38, 0.35);
  border-color: var(--gold);
}
.card__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.card p { color: #4d5963; font-size: 0.98rem; margin: 0; }

/* ---------- Focus ---------- */
.focus { background: var(--cream); }
.focus__img {
  width: 100%;
  aspect-ratio: 5 / 6;
  background-image: url("../img/focus.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1);
}
.focus__lede { font-size: 1.1rem !important; color: #44525f; margin-bottom: 2rem; }
.focus__list { list-style: none; }
.focus__list li {
  display: flex;
  flex-direction: column;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}
.focus__list li:last-child { border-bottom: 1px solid var(--line); }
.focus__list span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.focus__list em {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ---------- Philosophy band ---------- */
.philosophy {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 12vw, 9rem) 0;
  text-align: center;
}
.philosophy__inner { max-width: 900px; }
.philosophy__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.philosophy__sign {
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Contact ---------- */
.contact { background: var(--cream-2); }
.contact__email {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s;
}
.contact__email:hover { color: var(--gold); }

.contact__card {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.4rem, 4vw, 3.4rem);
}
.contact__card-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem !important;
}
.contact__address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--cream);
}
.contact__divider {
  height: 1px;
  background: var(--line-light);
  margin: 2.2rem 0;
}
.contact__link {
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.contact__link:hover { color: var(--gold-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); color: var(--cream); padding: 3.5rem 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: baseline; gap: 0.5rem; }
.footer__legal {
  font-size: 0.78rem;
  color: rgba(247, 244, 236, 0.55);
  line-height: 1.7;
  text-align: center;
}
.footer__links { display: flex; gap: 1.6rem; }
.footer__links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.7);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 22, 38, 0.98);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    border-top: 1px solid var(--line-light);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 1rem clamp(1.5rem, 5vw, 4rem); width: 100%; }
  .nav__toggle { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-2--reverse .focus__media { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-light); padding-bottom: 2.5rem; }
  .pull { position: relative; bottom: 0; left: 0; margin-top: 1.2rem; max-width: none; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
