/* ==========================================================
   Woodbridge Ventures — shared editorial stylesheet
   Preserves typographic palette of single-page predecessor.
   ========================================================== */

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

:root {
  --gold: #b5a078;
  --gold-soft: #c9b993;
  --ink: #1a1a18;
  --parchment: #f7f5f0;
  --parchment-deep: #f1ede4;
  --mid: #6b6558;
  --light: #e8e4dc;
  --hairline: #ddd6c8;
  --max: 72ch;
  --shell: 1180px;
  --shell-narrow: 920px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--gold); color: var(--parchment); }

/* ── HEADER ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: var(--header-h);
  max-width: 1440px;
  margin: 0 auto;
}

.wordmark {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.wordmark-top {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.18rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.wordmark-bottom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.wordmark-bottom span {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.wordmark-rule {
  width: 18px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.site-nav {
  display: flex;
  gap: 1.85rem;
  align-items: center;
}

.site-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--ink); }

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}

/* ── HAMBURGER ───────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--parchment);
  border-bottom: 1px solid var(--hairline);
  z-index: 99;
  padding: 1.75rem 2rem 2.25rem;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
}

.mobile-menu a[aria-current="page"] { color: var(--ink); }

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 860px) {
  .site-header__inner { padding: 0 1.5rem; }
}

/* ── LAYOUT PRIMITIVES ───────────────────────────────── */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 3rem;
}

.shell--narrow {
  max-width: var(--shell-narrow);
  margin: 0 auto;
  padding: 0 3rem;
}

.section {
  padding: 7rem 0;
}

.section--tight { padding: 5rem 0; }

.section + .section { border-top: 1px solid var(--light); }

.rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* page intro hairline + label, sits at top of every page */
.page-intro {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding-top: 2.75rem;
  padding-bottom: 0;
  border-bottom: none;
}

.page-intro__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
}

.page-intro__index {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-left: auto;
}

/* ── TYPE ────────────────────────────────────────────── */
h1, h2, h3 { color: var(--ink); }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin-bottom: 2rem;
  text-wrap: balance;
}

h1 em { font-style: italic; font-weight: 400; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -0.003em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

h2 em { font-style: italic; font-weight: 400; }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.1rem;
}

p.lead {
  font-size: 0.95rem;
  color: #57513f;
  max-width: var(--max);
  margin-bottom: 1.5rem;
}

p.body {
  font-size: 0.92rem;
  color: #57513f;
  max-width: var(--max);
  margin-bottom: 1.5rem;
}

.text-link {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 1px;
  transition: color 0.2s, background-size 0.3s;
}

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

/* ── HERO (HOMEPAGE) — full-bleed image with overlay ── */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 78vh, 820px);
  background: #1a1a18;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,20,18,0.32) 0%, rgba(20,20,18,0.10) 32%, rgba(20,20,18,0.55) 100%);
}

.hero__inner {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 4.5rem 3rem 4rem;
  color: #f7f5f0;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.85);
  margin-bottom: 1.75rem;
}

.hero__meta-rule {
  flex: 0 0 36px;
  height: 1px;
  background: var(--gold-soft);
}

.hero h1 {
  color: #ffffff;
  max-width: 20ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  text-shadow: 0 1px 24px rgba(0,0,0,0.18);
}

.hero h1 em { color: #ffffff; }

@media (max-width: 720px) {
  .hero {
    min-height: 0;
    height: clamp(560px, 82vh, 720px);
    align-items: flex-end;
  }
  .hero__inner { padding: 3rem 1.5rem 2.75rem; }
  .hero__image img { object-position: center center; }
  .hero h1 { max-width: 16ch; }
}

/* ── ABOUT / FIRM ────────────────────────────────────── */
.firm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
  max-width: var(--max);
  border-top: 1px solid var(--light);
  padding-top: 2.25rem;
  margin-top: 2.5rem;
}

.firm-grid .discipline {
  border-left: 1px solid var(--gold);
  padding-left: 1.25rem;
}

.discipline-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.discipline-name a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--gold-soft), var(--gold-soft));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: color 0.2s, background-size 0.3s;
}

.discipline-name a:hover { color: var(--gold); }

.discipline-desc {
  font-size: 0.88rem;
  color: #57513f;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .firm-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ── LEADERSHIP ──────────────────────────────────────── */
.leadership {
  padding: 6rem 0 7rem;
}

.leadership__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: end;
}

.leadership__copy { max-width: 46ch; }

.leadership__copy p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
}

.leadership__portrait {
  align-self: end;
}

.portrait-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--parchment-deep);
  margin-left: auto;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05);
}

.portrait-caption {
  max-width: 360px;
  margin: 1.25rem 0 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gold);
}

.portrait-caption .name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
}

.portrait-caption .title {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.35rem;
}

@media (max-width: 860px) {
  .leadership { padding: 4.5rem 0 5rem; }
  .leadership__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait-frame { max-width: 280px; margin-left: 0; }
  .portrait-caption { margin-left: 0; max-width: 280px; }
}

/* ── LAND ACQUISITIONS / PARTNERS BODY ───────────────── */
.long-read {
  max-width: var(--max);
}

.long-read p {
  font-size: 0.97rem;
  color: #57513f;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.long-read p:last-child { margin-bottom: 0; }

.long-read h2 + p { margin-top: 0.5rem; }

.deck-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--gold);
}

.deck-list__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--light);
}

.deck-list__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}

.deck-list__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.deck-list__desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 60ch;
}

.deck-list__desc em { font-style: italic; }

@media (max-width: 640px) {
  .deck-list__item { grid-template-columns: 60px 1fr; gap: 1.25rem; }
}

/* ── WIP block — Partners ────────────────────────────── */
.wip-block {
  border: 1px solid var(--gold);
  padding: 2.75rem 3rem;
  max-width: 62ch;
  margin-top: 3rem;
  background: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-deep) 100%);
}

.wip-block p {
  font-size: 0.95rem;
  color: #57513f;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.wip-block p:last-child { margin-bottom: 0; }

.wip-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .wip-block { padding: 1.75rem; }
}

/* ── FOCUS — editorial row list ──────────────────────── */
.focus-list {
  margin-top: 3.5rem;
  border-top: 1px solid var(--hairline);
}

.focus-row {
  display: grid;
  grid-template-columns: 80px 1.15fr 1fr;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline);
}

.focus-row__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.focus-row__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.22;
  color: var(--ink);
  text-wrap: balance;
}

.focus-row__desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #4a4538;
  max-width: 38ch;
}

.focus-row__desc em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 860px) {
  .focus-row {
    grid-template-columns: 48px 1fr;
    gap: 1rem 1.5rem;
    padding: 1.75rem 0;
  }
  .focus-row__desc {
    grid-column: 2 / -1;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
}

.market-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3rem;
  row-gap: 0;
  margin-top: 2.75rem;
  list-style: none;
  padding: 0;
}

.market-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
  padding: 1rem 0 0.95rem;
  border-bottom: 1px solid var(--hairline);
}

@media (max-width: 720px) {
  .market-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .market-list { grid-template-columns: 1fr; }
}

/* ── INQUIRIES ───────────────────────────────────────── */
.inquiries {
  background: var(--parchment-deep);
  border-top: 1px solid var(--hairline);
}

.inquiries .shell {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.inquiry-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 2.25rem;
  max-width: 38ch;
}

.contact-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s, padding-bottom 0.2s;
}

.contact-link:hover { color: var(--gold); padding-bottom: 5px; }

@media (max-width: 640px) {
  .inquiries .shell { padding-top: 4rem; padding-bottom: 4rem; }
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--parchment);
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer p {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0.6rem;
  }
}

/* ── RESPONSIVE PADDINGS ─────────────────────────────── */
@media (max-width: 640px) {
  .shell, .shell--narrow { padding: 0 1.5rem; }
  .section { padding: 4.5rem 0; }
  .section--tight { padding: 3.5rem 0; }
  .hero-image__caption { padding: 1rem 1.5rem; }
}
