:root {
  --ink: #171717;
  --muted: #74716b;
  --line: #d9d5cc;
  --paper: #f5f3ee;
  --white: #fbfaf7;
  --gold: #a18b64;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(var(--max), calc(100% - 72px));
  height: 110px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 105px; display: block; }
nav {
  display: flex;
  gap: 38px;
  font-size: 10px;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: #4d4a45;
}
nav a { transition: opacity .2s ease; }
nav a:hover { opacity: .45; }

.hero {
  width: min(var(--max), calc(100% - 72px));
  min-height: 680px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 80px;
}
.hero-copy { padding: 90px 0; }
.eyebrow, .section-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 30px; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: .98;
}
h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(64px, 8vw, 112px);
  letter-spacing: -.045em;
}
.lead {
  max-width: 600px;
  margin: 38px 0 0;
  color: #66625b;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}
.button {
  min-height: 50px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #343434; }
.text-link {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.text-link span { margin-left: 10px; }
.hero-mark {
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(190px, 24vw, 360px);
  line-height: .5;
  letter-spacing: -.2em;
  color: #1d1d1d;
}
.hero-mark span:last-child { transform: translateY(48px); }

.section {
  width: min(var(--max), calc(100% - 72px));
  margin: auto;
  padding: 125px 0;
  display: grid;
  grid-template-columns: .72fr 1.85fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}
.section-label { padding-top: 8px; }
.section h2 {
  max-width: 780px;
  margin: 0 0 34px;
  font-size: clamp(52px, 5.5vw, 80px);
  letter-spacing: -.035em;
}
.section p {
  max-width: 760px;
  color: #67635d;
  font-size: 15px;
}
.philosophy p + p { margin-top: 24px; }

.investment-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}
.investment-row:first-child { padding-top: 0; border-top: 0; }
.investment-title { display: flex; gap: 26px; align-items: flex-start; }
.investment-title span {
  padding-top: 9px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .12em;
}
.investment-title h3 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  letter-spacing: -.02em;
}
.investment-row p { margin: 0; max-width: 540px; }


.advisory-intro {
  max-width: 720px;
  margin: 0 0 48px;
  font-size: 17px !important;
  color: #5f5b54 !important;
}
.advisory-list {
  border-top: 1px solid var(--line);
}
.advisory-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}
.advisory-number {
  padding-top: 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .12em;
}
.advisory-item h3 {
  margin: 0 0 8px;
  font-size: clamp(32px, 3.2vw, 46px);
  letter-spacing: -.02em;
}
.advisory-item p {
  margin: 0;
  max-width: 650px;
}
.advisory-closing {
  margin-top: 34px;
  font-size: 13px !important;
  color: #77736b !important;
}

.statement {
  background: #1a1a1a;
  color: #f4f1ea;
  padding: 135px 24px;
}
.statement-inner {
  max-width: 980px;
  margin: auto;
  text-align: center;
}
.statement p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -.025em;
}
.statement span {
  display: block;
  margin-top: 38px;
  color: #aaa59b;
  font-size: 9px;
  letter-spacing: .3em;
}

.contact-simple {
  max-width: 800px;
}
.contact-simple h2 {
  margin-bottom: 28px;
}
.contact-simple p {
  max-width: 650px;
  margin-bottom: 48px;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.015em;
}
.email-link span {
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  color: var(--gold);
}
.email-link:hover {
  opacity: .62;
}

footer {
  width: min(var(--max), calc(100% - 72px));
  margin: auto;
  padding: 29px 0 45px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #79756d;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
footer a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .site-header, .hero, .section, footer {
    width: min(calc(100% - 36px), var(--max));
  }
  .site-header { height: 88px; }
  nav { gap: 15px; font-size: 9px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }
  .hero-copy { padding: 90px 0 25px; }
  .hero-mark {
    height: 230px;
    font-size: 190px;
    padding-bottom: 60px;
  }
  .section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 85px 0;
  }
  .investment-row { grid-template-columns: 1fr; gap: 18px; }
  .advisory-item { grid-template-columns: 42px 1fr; gap: 12px; }
  .investment-row { padding: 30px 0; }
  footer { flex-direction: column; }
}
