:root {
  --bg: #faf9f7;
  --bg2: #f2f0ec;
  --ink: #1a1916;
  --ink2: #2e2c28;
  --muted: #857f74;
  --rule: #dedad4;
  --accent: #2a4a2e;
  --accent2: #3d6b42;
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.65; font-size: 16px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0; transition: background .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,249,247,.96);
  backdrop-filter: blur(12px);
  border-color: var(--rule);
}
.nav__inner {
  display: flex; align-items: center; height: 68px; gap: 36px;
}
.logo {
  display: inline-flex; align-items: baseline; gap: 6px;
  flex-shrink: 0; text-decoration: none;
}
.logo__la {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em; line-height: 1;
}
.logo__la .amp { color: var(--accent); }
.logo__ventures {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em; color: var(--muted);
  align-self: center;
}
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  letter-spacing: .01em; transition: color .15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  font-size: 13px; font-weight: 600; color: var(--accent);
  border: 1px solid var(--accent); padding: 8px 18px;
  border-radius: 2px; transition: all .15s; white-space: nowrap;
}
.nav__cta:hover { background: var(--accent); color: var(--white); }
@media (max-width: 860px) { .nav__links { display: none; } }

/* BUTTON */
.btn {
  display: inline-block; padding: 13px 28px;
  background: var(--accent); color: var(--white);
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background .15s; border-radius: 2px;
}
.btn:hover { background: var(--accent2); }

/* EYEBROW */
.eyebrow {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--accent); margin-bottom: 14px; display: block;
}

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding-top: 68px; position: relative;
  background: var(--ink2);
}
.hero__inner { padding: 96px 0 80px; }
.hero__label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .22em; color: rgba(255,255,255,.4);
  margin-bottom: 28px; display: block;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 500; line-height: 1; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,.55); }
.hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.6);
  max-width: 520px; margin-bottom: 40px; line-height: 1.75;
}
.hero__line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

/* NUMBERS */
.numbers {
  background: var(--ink); border-bottom: 1px solid #2a2825;
}
.numbers__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
@media (max-width: 700px) { .numbers__grid { grid-template-columns: repeat(2,1fr); } }
.number-item {
  padding: 28px 24px; border-right: 1px solid #2a2825;
  display: flex; flex-direction: column; gap: 5px;
}
.number-item:last-child { border-right: none; }
.n-val {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.n-lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.35); font-weight: 500;
}

/* SECTIONS */
.section { padding: 104px 0; }

/* APPROACH */
.approach { background: var(--bg); }
.approach__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 900px) { .approach__grid { grid-template-columns: 1fr; gap: 56px; } }
.approach__text h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500; line-height: 1.1; color: var(--ink);
  margin-bottom: 22px; letter-spacing: -.02em;
}
.approach__text p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: .97rem; }
.pillar {
  padding: 28px 0; border-top: 1px solid var(--rule);
}
.pillar:last-child { border-bottom: 1px solid var(--rule); }
.pillar__num {
  font-family: var(--serif); font-size: .95rem; font-weight: 500;
  color: var(--muted); margin-bottom: 8px; font-style: italic;
}
.pillar h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--ink); margin-bottom: 8px;
}
.pillar p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* SERVICES */
.services { background: var(--bg2); }
.section__head { margin-bottom: 52px; }
.section__head h2 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500; color: var(--ink); letter-spacing: -.02em;
}
.services__grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 0;
  border: 1px solid var(--rule);
}
@media (max-width: 780px) { .services__grid { grid-template-columns: 1fr; } }
.service {
  padding: 40px 36px; border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule); transition: background .18s;
}
.service:nth-child(2n) { border-right: none; }
@media (max-width: 780px) { .service { border-right: none; } }
.service:hover { background: var(--white); }
.service__rule { width: 32px; height: 2px; background: var(--accent); margin-bottom: 18px; }
.service h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--ink); margin-bottom: 12px; letter-spacing: -.01em;
}
.service p { color: var(--muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 16px; }
.service ul li {
  font-size: 13px; color: var(--muted); padding: 5px 0;
  border-top: 1px solid var(--rule); display: flex; align-items: center; gap: 10px;
}
.service ul li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* QUOTE */
.divider-quote {
  background: var(--accent); padding: 72px 0;
}
.divider-quote blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic; color: rgba(255,255,255,.9);
  line-height: 1.5; max-width: 780px; margin-bottom: 16px;
}
.divider-quote cite {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: rgba(255,255,255,.5);
}

/* ABOUT */
.about { background: var(--bg); }
.about__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }
.about h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500; color: var(--ink); margin-bottom: 22px;
  letter-spacing: -.02em; line-height: 1.1;
}
.about p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: .97rem; }
.about__card { border: 1px solid var(--rule); }
.about__row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--rule);
}
.about__row:last-child { border-bottom: none; }
.about__row > span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; white-space: nowrap; }
.about__row > strong { font-size: 14px; font-weight: 500; color: var(--ink); text-align: right; line-height: 1.5; }

/* CONTACT */
.contact { background: var(--bg2); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 56px; } }
.contact h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500; color: var(--ink); margin-bottom: 16px; letter-spacing: -.02em;
}
.contact > .wrap > .contact__grid > div > p {
  color: var(--muted); margin-bottom: 36px; line-height: 1.75; font-size: .97rem;
}
.contact__details { display: flex; flex-direction: column; }
.contact__row {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 0; border-top: 1px solid var(--rule);
}
.contact__row:last-child { border-bottom: 1px solid var(--rule); }
.contact__row > span:first-child {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted); font-weight: 600;
}
.contact__row a, .contact__row > span:last-child { font-size: 15px; font-weight: 500; color: var(--ink); }
.contact__row a:hover { color: var(--accent); }

.contact__form {
  background: var(--white); border: 1px solid var(--rule); padding: 40px;
}
.form__group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form__group label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--bg); border: 1px solid var(--rule);
  border-radius: 2px; padding: 11px 14px;
  font-size: 14px; font-family: var(--sans); color: var(--ink);
  transition: border-color .15s; resize: vertical;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { outline: none; border-color: var(--accent); }
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--muted); }
.form__success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: rgba(42,74,46,.07); border: 1px solid rgba(42,74,46,.2);
  color: var(--accent); font-size: 14px; font-weight: 500;
  border-radius: 2px;
}

/* FOOTER */
.footer {
  background: var(--ink); padding: 48px 0 32px;
  border-top: 1px solid #2a2825;
}
.footer__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
}
.footer .logo__la { color: var(--white); }
.footer .logo__ventures { color: rgba(255,255,255,.4); }
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  font-size: 12.5px; color: rgba(255,255,255,.4); font-weight: 500;
  transition: color .15s;
}
.footer__links a:hover { color: rgba(255,255,255,.8); }
.footer__copy {
  font-size: 12px; color: rgba(255,255,255,.25);
  letter-spacing: .02em;
}
